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

Combo box take too much time

1 Answer 48 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Jagdish
Top achievements
Rank 1
Jagdish asked on 22 Jul 2010, 07:51 AM
any body help me.. the combobox takes too time while search items ... any solution ?

<

telerik:RadComboBox ID="ddlCustomer" runat="server" EnableVirtualScrolling="true"

 

 

ItemsPerRequest="10" Width="245px" TabIndex="1" EnableTextSelection="False"

 

 

AutoPostBack="true" Filter="StartsWith"

 

 

onselectedindexchanged="ddlCustomer_SelectedIndexChanged1">

 

 

</telerik:RadComboBox>

thanks,
Jagdish

1 Answer, 1 is accepted

Sort by
0
Cori
Top achievements
Rank 2
answered on 22 Jul 2010, 04:43 PM
I notice your just using the filtering capabilities of the RadComboBox, but have settings set for LoadOnDemand and you're not using the LoadOnDemand feature. So basically you're loading all the items and filtering them on the client-side, which is why it takes so long. I would suggest using the LoadOnDemand capability of RadComboBox.

This demo should help:

http://demos.telerik.com/aspnet-ajax/combobox/examples/loadondemand/automaticloadondemand/defaultcs.aspx

I hope that helps.
Tags
ComboBox
Asked by
Jagdish
Top achievements
Rank 1
Answers by
Cori
Top achievements
Rank 2
Share this question
or