Hi!
I am unfortunately trying to load my user database into a radcombobox with autocomplete, I want to use the combobox only as a autocomplete textbox, not really as a Combobox with all its features.
Whenever it loads the data, it loads the entire table into the dataset and that is not something i want due to the lag, ive tried setting onLoadDemand and MinLength, to avoid the autocomplete, to load the entire dataset, without sucess. Ive also tried setting ItemsRequested="10" to make it load only 10 items at the time. Doesn't really seem to work that way.
Any idea? My control is currently looking like this:
I am unfortunately trying to load my user database into a radcombobox with autocomplete, I want to use the combobox only as a autocomplete textbox, not really as a Combobox with all its features.
Whenever it loads the data, it loads the entire table into the dataset and that is not something i want due to the lag, ive tried setting onLoadDemand and MinLength, to avoid the autocomplete, to load the entire dataset, without sucess. Ive also tried setting ItemsRequested="10" to make it load only 10 items at the time. Doesn't really seem to work that way.
Any idea? My control is currently looking like this:
<telerik:RadComboBox ID="UsersFromAD" runat="server" Width="256px"<br> Height="100px" ShowDropDownOnTextboxClick="false" MarkFirstMatch="True" OnItemsRequested="ComboUsersFromAD_ItemsRequested" EnableVirtualScrolling="True" ItemsPerRequest="10" ShowMoreResultsBox="true" EnableLoadOnDemand="True" Skin="Windows7"> </telerik:RadComboBox>