We have a number of ComboBoxes in our project where EnableLoadOnDemand = True.
When I set the SelectedValue of a ComboBox from the code behind, the ComboBox Text does not update after asynchronous postback. If I then click the ComboBox, the right value is highlighted, but unless the ComboBox has focus and is expanded, it does not display the correct text.
I've been able to work around this by doing something like:
When I set the SelectedValue of a ComboBox from the code behind, the ComboBox Text does not update after asynchronous postback. If I then click the ComboBox, the right value is highlighted, but unless the ComboBox has focus and is expanded, it does not display the correct text.
I've been able to work around this by doing something like:
With RadComboBox1
.SelectedValue = 1
.Text =.SelectedItem.Text
End With
When I disable LoadOnDemand, everything works as expected.
Is this a bug, or am I missing something about how LoadOnDemand functions?
Thanks for any help/input.