2009-03-19 23:02:20 -07:00
|
|
|
|
2010-03-17 15:51:35 -07:00
|
|
|
<?php echo $javascript->link('findcustomer'); ?>
|
2009-03-19 23:02:20 -07:00
|
|
|
<div class="customers form">
|
2010-02-18 21:38:43 -08:00
|
|
|
|
2010-03-29 18:05:16 -07:00
|
|
|
<?php echo $form->create('Customer', array('action'=>'find'));
|
|
|
|
|
echo '<h2>Find Customer';
|
|
|
|
|
echo $html->image('system-search.png');
|
|
|
|
|
echo '</h2>';
|
2010-02-18 21:38:43 -08:00
|
|
|
|
2010-03-29 18:05:16 -07:00
|
|
|
echo $form->input('Customer.name', array('Label'=>'Customer Name', 'id'=>'customerName'));
|
2010-03-17 15:51:35 -07:00
|
|
|
|
2010-03-29 18:05:16 -07:00
|
|
|
//echo $form->input('Customer.id', array('type'=>'hidden'));
|
|
|
|
|
|
|
|
|
|
//echo $form->end('Find');
|
|
|
|
|
|
|
|
|
|
?>
|
2010-03-29 16:55:12 -07:00
|
|
|
<div class ="ui-widget">
|
2010-03-29 18:05:16 -07:00
|
|
|
<button id="findButton">Find Customer</button>
|
2010-03-29 16:55:12 -07:00
|
|
|
</div>
|
2010-03-29 18:05:16 -07:00
|
|
|
|
2009-03-19 23:02:20 -07:00
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
2010-03-29 16:36:29 -07:00
|
|
|
<div id="dialog" title="Search Results">
|
2010-03-29 18:05:16 -07:00
|
|
|
<ul id="similarCustList">
|
|
|
|
|
</ul>
|
2010-03-29 16:36:29 -07:00
|
|
|
</div>
|