I have a requirement that needs two separate autocomplete actions on a single textbox, the autocomplete in use is determined by a dropdownlist.
My initial thought was calling dispose on the previous autocomplete before loading the next one would work, however it doesn't. Has anyone gotten this to work?
The other alternative would be to replace the textbox on dropdownchange, but I believe that would require me to change the name of the textbox and i don't want to dirty up my Controller Action (ASP.NET MVC) with post variables that need to transpire into one possible field.
Thoughts?
Cory