I have a Radcombobox that is bind from the database.
i have put the following properties TRUE
ShowMoreResultsBox=true
EnableVirtualScrolling=true
EnableLoadOnDemand=true
ItemPerRequest=20
it works fine.
Suppose i add a Employee record. on the Employee add form there is a Radcombobox that have the Cities filled with it from the City table in database. when i click on the Radcombobox with each request next 20 cities are shown, its fine. Selected city suppose "California" is selected and inserted in database.
now when i come in edit mode i write down the code to select the california that was already added in database.
RadCombobox1.SelectedValue=20; //California State ID from the database.
but it is not shown by default unless we click on the radCombobox.
I want that Seleceted state should be displayed by default and as well as pagination should be worked with above mentioned properties.
i have put the following properties TRUE
ShowMoreResultsBox=true
EnableVirtualScrolling=true
EnableLoadOnDemand=true
ItemPerRequest=20
it works fine.
Suppose i add a Employee record. on the Employee add form there is a Radcombobox that have the Cities filled with it from the City table in database. when i click on the Radcombobox with each request next 20 cities are shown, its fine. Selected city suppose "California" is selected and inserted in database.
now when i come in edit mode i write down the code to select the california that was already added in database.
RadCombobox1.SelectedValue=20; //California State ID from the database.
but it is not shown by default unless we click on the radCombobox.
I want that Seleceted state should be displayed by default and as well as pagination should be worked with above mentioned properties.