https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23697 Bug ID: 23697 Summary: autocompletion search in patron module Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs@lists.koha-community.org Reporter: stephane.delaye@biblibre.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com, kyle.m.hall@gmail.com How add autocompletion search in patron module. with jquery it's possible like this $(document).ready(function(){ $( '#searchmember' ).autocomplete({ source: function(request, response) { $.ajax({ url: "/cgi-bin/koha/circ/ysearch.pl", dataType: "json", data: { term: request.term }, success: function(data) { response( $.map( data, function( item ) { return { label: item.surname + " , " + item.firstname + " .-Date of birth naissance: " + item.dateofbirth + " .-Address: " + item.address + " .-City:" + item.city, value: item.surname + " " + item.firstname } })); } }); }, minLength: 1, }); }); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.