ASPx GridView , combobox inside of detailed grid, all the time has null value on Updating
- by evgelen
I have a combobox inside of detailed Devexpress grid. In edit mode on Updating event the combobox always has e.OldValues and e.NewValues always null, even when you change it.. any ideas or work around ??? Please see my code below
<-PropertiesComboBox DataSourceID="DataSource" TextField="Name" ValueField="ID" ValueType="System.Int32"
protected void ASPxGridView2_RowUpdating(object sender, ASPxDataUpdatingEventArgs e)
{
object test1 = e.NewValues["Email"];
e.Cancel = true;
}