Skip to main content

Posts

Showing posts from February, 2011

Telerik Mvc Combobox large data loading issue on AutoCompleteFilterMode

Hi all Its been long break...Here i am back with little out of box solution which is not available on internet,i did the solution and felt to share it with you all so that you people do not face the issues which i faced while working with telerik mvc combobox As we know (People who use telerik mvc combobox) that when telerik mvc combobox is used and there is huge data to be loaded from controls action method, and if AutoCompleteFilterMode is on,the combo simply hangs in IE and traditional IE error will come up saying "SCRIPT IS RUNNING INFINITE,DO YOU WANT TO STOP THE SCRIPT", and will just kill the browser So, let us cut the story short and come up directly on solution,say you are having following combobox code <%: Html.Telerik().ComboBoxFor(model => modelfooId) .AutoFill(true) .BindTo(new SelectList(Model.fooList, "Value", "Text", Model.fooId)) .HtmlAttributes(new {style = "width:400px"}) .Filterable(filtering =>