Hi Team,
We are using RadDropDownList control version (2023.1.314)
We are getting 'System.StackOverflowException' exception while assigning value in the dropdownlist (its keep on recursion).
Could you please help on this?. Please find sample program below.
We are using visual Studio 2022 and Telerik.WinControls.UI.dll(2023.1.314)
Note: Its working fine in 2013.3.1.1127 version.
private void comboBox1_SelectedIndexChanged(object sender, Telerik.WinControls.UI.Data.PositionChangedEventArgs e)
{
setOldValue();
}
private void setOldValue()
{
comboBox1.SelectedValue = 2;
}
private void button1_Click(object sender, EventArgs e)
{
comboBox1.SelectedValue = 1;
}
Thanks
Rajkannan
Hi Team,
How to disable the ' OnNotifyPropertyChanged("SelectedValue");' call in RadDropDownList, when assigning the 'SelectedValue' its keep on triggered.
The above workaround unsubscribe/subscribe is working fine. But we are worrying to change/modify in more places.
Could you please help on this at earliest? We are not moving further. since its urgent.
Note: Its working fine in 2013.3.1.1127 version without modification.
We are using visual Studio 2022 and Telerik.WinControls.UI.dll(2023.1.314)
Thanks
Rajkannan