26 lines
567 B
Plaintext
26 lines
567 B
Plaintext
|
|
<?php echo $javascript->link('search'); ?>
|
||
|
|
|
||
|
|
<div class="customers form">
|
||
|
|
|
||
|
|
<?php echo $form->create('Enquiry', array('default'=>false));
|
||
|
|
echo '<h2>Quick Search';
|
||
|
|
echo $html->image('system-search.png');
|
||
|
|
echo '</h2>';
|
||
|
|
|
||
|
|
echo $form->input('Enquiry.search_string', array('Label'=>'Search for:', 'id'=>'searchString'));
|
||
|
|
|
||
|
|
//echo $form->input('Customer.id', array('type'=>'hidden'));
|
||
|
|
|
||
|
|
//echo $form->end('Search');
|
||
|
|
|
||
|
|
?>
|
||
|
|
|
||
|
|
<div class ="ui-widget">
|
||
|
|
<button id="searchButton">Search</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
<div id="results"></div>
|