views:

55

answers:

1

Does Telerik has a plan to make ASP.NET MVC's combobox have a feature of only fetching the data brought into view(as scrolled by user). The current ASP.NET MVC combobox fetch all rows even though they are not brought into view by the user. If they don't have that feature yet, I'm worried that ASP.NET MVC combobox would not scale in real-world usage.

contrast this ASP.NET MVC combobox: http://demos.telerik.com/aspnet-mvc/combobox

with this ASP.NET combobox: http://demos.telerik.com/aspnet-ajax/combobox/examples/populatingwithdata/autocompletesql/defaultcs.aspx

+2  A: 

This feature is not available yet in the MVC combobox. You can specify some minimum number of characters that should be entered before an ajax request is made. Then on the server side filter the data so you don't return it all to the end user.

korchev
thanks korchev :-)
Hao