1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| $('input[type="text"][id*="AutocompleteTechnique"]').autocomplete({
source: 'ajax/index.php?fichier=1025',
delay: 350,
minLength: 2,
focus: function( event, ui ) {
$(this).val( ui.item.label );
return false;
},
select: function( event, ui ) {
$(this).val( ui.item.label );
$(this).prev().val( ui.item.value );
return false;
}
})
.data( "autocomplete" )._renderItem = function( ul, item ) {
return $( '<li>' )
.data( 'item.autocomplete', item )
.append( '<a style="min-height: 80px; max-width: 345px;"><span style="float: left"><img src="images/' + item.icon + '" alt="Icone de ' + item.label + '" title="' + item.label + '" style="max-width: 60px; max-height: 60px; padding: 5px;" /></span></span>' + item.label + '<br><span style="font-size: small;">' + item.desc + '</span></span></a>' )
.appendTo( ul );
}; |
Partager