I've been experimenting with a few plugins - some that replace jQuery autocomplete and some that sit alongside it. However, i've found none suitable so far.
I have a complex form with quite a few fields - some of the fields have predicatable inputs e.g. UK county names. I don't wan't to use a dropdown because it gets unwieldly with 90 - 100 entries, so autocomplete would be good - and it looks like i'm going to have to use jQuery's version.
My page (form) is broken down into usercontrols - 1 for each input, with a base template for each type (e.g. input, select, date, period, integer etc.).
I want to be able to define the options for each autocomplete input within the usercontrol itself - this would be populated from a local array.
So, I just need to poplate the autocomplete plugin directly from the usercontrol - again I've looked at a numbe of options including json, webmethods etc., but it seems overcomplicated for what I need. Is there any simpler solution that can be thought of?