I'm currently working on a form for user searching and have found an interesting behavior for the radcombobox. When a user searches the value of the selected dropdown I can get the value no problem. If the user then hits the back button the correct value is selected in the dropdown but when they search again the selected value is then changed to the first value in the list. I pasted some simple code below that works as I described. Is this a bug in the control? This is not how dropdownbox performs on the back button its selected value is its selected value.
<
telerik:RadScriptManager ID="sadsad" runat="server"></telerik:RadScriptManager>
<telerik:RadComboBox ID="tst" runat="server">
<Items>
<telerik:RadComboBoxItem Text="TESTING" Value="" />
<telerik:RadComboBoxItem Text="TESTING2" Value="TESTING2" />
</Items>
</telerik:RadComboBox>
<asp:Button ID="tstButton" runat="server" Text="TEST" OnClick="tstButton_Click" />
protected
void Page_Load(object sender, EventArgs e)
{
}
protected void tstButton_Click(object sender, EventArgs e)
{
System.Diagnostics.
Debug.Write(tst.SelectedValue);
}