I have a combobox with over 100000 records, but it's unusable, it makes the browser very slow and unresponsive.
I'm using it like this:
I've also tried setting Autobind(false), but when I try to open the combobox it becomes unusable.
I've tried limiting the number of records returned, but once it's databoud, it seems it won't call the server method again no matter what I type in the box.
Any help on how to make the combobox usable with huge number of records?
I'm using it like this:
@(Html.Kendo().ComboBox()
.Name("ID_Poblacion")
.DataValueField("Item1")
.DataTextField("Item2")
.DataSource(dataSource => dataSource // Configure the grid data source
.Read(read => read.Action("Items", "Poblacion", new { Area = "DataAPI" }))
)
.Value(Model.ID_Poblacion.ToString())
)
I've tried limiting the number of records returned, but once it's databoud, it seems it won't call the server method again no matter what I type in the box.
Any help on how to make the combobox usable with huge number of records?