I need a combobox (Open source preferred) with this functionality:
- Remote DataSource json format
- Filtrable/Searchable
- Data Value/Display Value
- Integrated with ASP.NET MVC client side validation (no ExtJs)
I’m searching and testing from many days but I not found anything…
See jQuery UI autocomplete combobox example
It uses an underlying html
<select>element, so I assume it should work with your client side validation.The example uses a pre-defined list of options, but you can modify it to use an AJAX call instead. See their other autocomplete examples.