Autocomplete it's working perfectly, as expected if using a normal statics html/php page.
But I'm working on a module that loads dynamically (AJAX) generate same HTML as above into a area. I cannot get the autocomplete to work.
Any idea of how can I solve this? I've searched everywhere and tried everything, but obviously not the right solution yet.
//
// this is the ajax code load dynamic contents in a #display_area
// from onclick=selected_purchase()
//
function selected_purchase() {
var fields = $(":input").serialize();
$.ajax({
url: "purchase4",
type: "POST",
dataType: "html",
data: fields ,
beforesend: function(a) {
// before send process here
showBusy();
},
success: function(html) {
// success process here ...
processForm(html);
}
});
}
//
// this is the autocomplete code
//
$( "#supplier" ).autocomplete({ //the recipient text field with id #supplier
source: function( request, response ) {
$.ajax({
url: "search_supplier",
dataType: "json",
data: request,
success: function(data){
if(data.response == 'true') {
response(data.message);
}
}
});
},
minLength: 2,
select: function( event, ui ) {
// Do something extra on select...
// add user id to hidden input
$('input[name="name"]').val(ui.item.value);
$('input[name="sl"]').val(ui.item.sl_id);
return false;
},
});