This is a migrated thread and some comments may be shown as answers.

Kendo dropdown too slow while datasource read...

2 Answers 911 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Suk
Top achievements
Rank 1
Suk asked on 25 Mar 2015, 09:09 AM
My kendo DropdownList is too slow while returning a list of 37,000 and more items...

   @(Html.Kendo().DropDownList()
                            .Name("NameList")
                            .DataTextField("Filter1")
                            .DataValueField("Filter1")
                            .HtmlAttributes(new { style = "font-family:Verdana; font-size:small" })
        
                            .AutoBind(false)
                            .DataSource(source =>
                            {
                                source.Read(read =>
                                {
                                    read.Action("GetFilterValues", "Home").Data("ParametersForNamesList");
                                })
                            .ServerFiltering(true);
                            })
                        )

functionParametersForNamesList() {
        return {
            text: "",
            selectedOption: "Name"
        };
    }

2 Answers, 1 is accepted

Sort by
0
Alexander Valchev
Telerik team
answered on 30 Mar 2015, 07:56 AM
Hi Suk,

Please download the latest internal build and configure the DropDownList to use serverPaging and virtualization. See the following demo page:
You may learn more about the virtualization here:

Regards,
Alexander Valchev
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Suk
Top achievements
Rank 1
answered on 30 Mar 2015, 11:50 AM
Thank you Alexander for your reply... Will try this out...
Tags
General Discussions
Asked by
Suk
Top achievements
Rank 1
Answers by
Alexander Valchev
Telerik team
Suk
Top achievements
Rank 1
Share this question
or