Hello Everyone,
I am in a problem. I have taken a rad combobox and i have to bind items in combobox.
Items are arround 2500. when i am binding this, a warning is coming "script on this page is causing internet explorer to run slowly".
and when i select an item from this combobox it was opening and closing dropdowns very slowly.
i am binding data using the following method:
Does anyone knows what is the best way to bind items in combobox ?
I am holding these tables in javascript arrays. can we load items from this array on demand as like server side?
Please tell me ASAP....
I will be highly oblized to yours..>>>>>>>>>>>>>>>
Thanks & Regards
Brijendra pandey
I am in a problem. I have taken a rad combobox and i have to bind items in combobox.
Items are arround 2500. when i am binding this, a warning is coming "script on this page is causing internet explorer to run slowly".
and when i select an item from this combobox it was opening and closing dropdowns very slowly.
i am binding data using the following method:
for (var rowIndex = 0; rowIndex < table.rows.length; rowIndex++) {
var rows = table.rows[rowIndex];
comboItem = new Telerik.Web.UI.RadComboBoxItem();
comboItem.set_text(rows.crm_sug_country);
comboItem.set_value(rows.crm_sug_country);
countryControl.get_items().add(comboItem);
}
countryControl.commitChanges();
Does anyone knows what is the best way to bind items in combobox ?
I am holding these tables in javascript arrays. can we load items from this array on demand as like server side?
Please tell me ASAP....
I will be highly oblized to yours..>>>>>>>>>>>>>>>
Thanks & Regards
Brijendra pandey