Completed
Last Updated: 09 Sep 2015 11:55 by ADMIN
ADMIN
Dimitar
Created on: 04 Aug 2015 06:22
Category:
Type: Bug Report
0
FIX. RadDropDownList - the SelectedValue/SelectedIndex properties are not updated when a value that is not in the list is entered.
To reproduce: 
- Add a drop down list and bind it to some data.
- Select a value from the drop-down and then type another value manually.
- Select other control and check the  SelectedValue/SelectedIndex.

Workaround:
int index = this.radDropDownList1.DropDownListElement.SelectedIndex;
object value = this.radDropDownList1.DropDownListElement.SelectedValue;
0 comments