views:

403

answers:

1

Hi,

I need to customize the combobox widget build from the jQuery UI Autocomplete http://jqueryui.com/demos/autocomplete/#combobox

Currently drop down options are predefined from the SELECT tag OPTIONS or from a JSON array.

//getter
var source = $( ".selector" ).autocomplete( "option", "source" );
//setter
$( ".selector" ).autocomplete( "option", "source", ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"] );

I want to populate the combobox options from a Ajax URL, how can i customize the widget?

+1  A: 

There is a demo on how to do this via AJAX, you should just make sure your array is JSON encoded before it is returned to the autocomplete component.

If you're using PHP, take a look at the json_encode function.

Does this answer your question?

ILMV