Correcting invalid markup in new YUI autocomplete search feature; Correcting and...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / cataloging-search.inc
1 <!-- Begin Cataloging Resident Search Box -->
2 <!-- TMPL_IF NAME="CircAutocompl" --><script type="text/javascript">
3 YAHOO.util.Event.onContentReady("header_search", function() {
4     new function() {
5         // Define a custom formatter function
6         this.fnCustomFormatter = function(oResultItem, sQuery) {
7             var name        = oResultItem[0];
8             var cardnumber  = oResultItem[1];
9             var address     = oResultItem[2];
10             var city        = oResultItem[3];
11             var zip         = oResultItem[4];
12             var aMarkup = [
13                 "<div class=\"sample-result\">",
14                 name,
15                 " (",
16                 cardnumber,
17                 ")<small> -- ",
18                 address,
19                 ", ",
20                 city,
21                 "</small>",
22                 "</div>"];
23             return (aMarkup.join(""));
24         };
25
26         // Instantiate one XHR DataSource and define schema as an array:
27         //     ["Record Delimiter",
28         //     "Field Delimiter"]
29         this.oACDS = new YAHOO.widget.DS_XHR("/cgi-bin/koha/circ/ysearch.pl", ["\n", "\t"]);
30         this.oACDS.responseType = YAHOO.widget.DS_XHR.TYPE_FLAT;
31         this.oACDS.maxCacheEntries = 60;
32         this.oACDS.queryMatchSubset = true;
33     
34         // Instantiate first AutoComplete
35         var myInput = document.getElementById('findborrower');
36         var myContainer = document.getElementById('yborrowercontainer');
37         this.oAutoComp = new YAHOO.widget.AutoComplete(myInput,myContainer,this.oACDS);
38         //this.oAutoComp.delimChar = ";";
39         //this.oAutoComp.queryDelay = 1;
40         this.oAutoComp.formatResult = this.fnCustomFormatter;
41 }
42 });    
43 </script><!-- /TMPL_IF -->
44 <div id="header_search">
45 <div id="addbooks_search" class="residentsearch">
46         <p class="tip">Search the catalog and the reservoir:</p>
47         <form name="search" action="addbooks.pl">
48         <input type="text" name="q"  size="40" class="focus" />
49         <input type="submit" value="Search" />
50         </form>
51 </div>
52         <div id="circ_search" class="residentsearch">
53         <p class="tip">Enter patron card number or partial name:</p>
54     <form action="/cgi-bin/koha/circ/circulation.pl" method="post">
55     <!-- TMPL_IF NAME="CircAutocompl" -->
56     <div class="autocomplete">
57             <div id="borrowerautocomplete" class="autocomplete">
58                 <input autocomplete="off" id="findborrower" name="findborrower" class="focus" type="text" />
59                 <div id="yborrowercontainer"></div>
60                 <input id="ysearchsubmit" type="submit" value="Submit" />
61                 <input name="branch" value="<!-- TMPL_VAR name="branch" -->" type="hidden" />
62                 <input name="printer" value="" type="hidden" />
63             </div>
64         </div>
65         <!-- TMPL_ELSE -->
66             <input id="findborrower" name="findborrower" size="40" class="focus" type="text" />
67             <input name="branch" value="<!-- TMPL_VAR name="branch" -->" type="hidden" />
68             <input name="printer" value="" type="hidden" />
69             <input value="Submit" type="submit" />
70         <!-- /TMPL_IF -->
71     </form>
72         </div>  
73                         <ul>
74                         <li><a href="/cgi-bin/koha/catalogue/search.pl#addbooks_search">Cataloguing Search</a></li>
75                         <li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check Out</a></li>
76                         </ul>   
77 </div>
78 <!-- End Cataloging Resident Search Box -->