I am populating a combobox in the Page_Init function and then retrieving the user's last selected value from db. I set this to the combobox like this:
((
RadComboBox)this.FindControl(controlName)).SelectedValue = controlValue;
In debug mode I can see that SelectedValue, SelectedItem and SelectedIndex are all set correctly and stay correctly set in the Page_Load method.
Despite this, always, the first item is displayed in the textbox area of the combobox.
Any idea what I am missing here?
Thanks,
Lina