Stringify JSON parsing data and finding data saved in JSON
I think you will need to include this library in your external resources - User defined resources.
http://code.jquery.com/ui/1.10.3/jque...
And at the simplest all you'd need to add an autocompete is this - in the success event of the list service you just need this JS code
code
var arrBrands = [];
$(data).each(function(){
arrBrands.push($(this)[0].Brand);
});
Appery("mobiletextinput_2" ).autocomplete({
source: arrBrands
});
/code
Perhaps to refine stuff you may want to disable the autocomplete in the Before send event and enable it onces data has been populated successfully. But at the least the above should work.