Hi Telerik Team,
I am stuck with one issue. I have a RadComboBox populated with some items stored on the DB. At a particular time on the screen when the user does a search. I need to set my RadComboBox back to their initial state (i.e.) Showing the first Item which is empty. This is being dont via code. C#
RadComboBox.SelectedIndex = 0;
But to my surprise the ComboBox still shows the last item selected on the screen even thought that the values it currently holds says that it is back to its initial state (When the page loads first time)
RadComboBox.SelectedValue = "-1"
RadComboBox.SelectedItem.Text = "";
So technically there is not issue as it behaves as per the specs. But the end user will see a selected item on the RadComboBox which is not what needs to be seen.
Can you please help me on this one?
I am stuck with one issue. I have a RadComboBox populated with some items stored on the DB. At a particular time on the screen when the user does a search. I need to set my RadComboBox back to their initial state (i.e.) Showing the first Item which is empty. This is being dont via code. C#
RadComboBox.SelectedIndex = 0;
But to my surprise the ComboBox still shows the last item selected on the screen even thought that the values it currently holds says that it is back to its initial state (When the page loads first time)
RadComboBox.SelectedValue = "-1"
RadComboBox.SelectedItem.Text = "";
So technically there is not issue as it behaves as per the specs. But the end user will see a selected item on the RadComboBox which is not what needs to be seen.
Can you please help me on this one?