The combobox in question http://plugins.jquery.com/project/ajaxComboBox
I forgot to note, I want to use it on ASP.NET MVC, i.e. sans the viewstates and the whole shebang
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Why not just use the
ajaxComboBoxthen? ASP.NET MVC doesn’t have “viewstates and the whole shebang” as you put it, it’s heavily reliant on you crafting the view (HTML) from the model that is presented through the controller (although you should optimially present something more like a modelview to the view, but that’s off-topic).First you would create a method on a controller which would return the items.
Then, in your view, you just have to write (in place) the url of the route to the method on your controller as the first parameter to
ajaxComboBoxand it should work.