Hi,
If I use Serverfiltering on the ASP.NET MVC dropdownlist control, my controller method is called with a string text parameter. (the text parameter contains the text that the user is typing on the dropdownlist)
If use serverfiltering on the HTML5/Javascript dropdownlist control, the text parameter is null.
If I look at it with developer tools in Chrome, there is a long querystring added that looks like this: Home/GetPurchasingOrganisations?filter%5Bfilters%5D%5B0%5D%5Bvalue%5D=test&filter%5Bfilters%5D%5B0%5D%5Bfield%5D=Value&filter%5Bfilters%5D%5B0%5D%5Boperator%5D=startswith&filter%5Bfilters%5D%5B0%5D%5BignoreCase%5D=true&filter%5Blogic%5D=and
How do I get the filter value out of this querystring in my controller?
Thanks,
Nicolas