ASPx GridView , combobox inside of detailed grid, all the time has null value on Updating

Posted by evgelen on Stack Overflow See other posts from Stack Overflow or by evgelen
Published on 2010-04-06T02:49:12Z Indexed on 2010/04/06 2:53 UTC
Read the original article Hit count: 776

Filed under:

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; }

© Stack Overflow or respective owner

Related posts about aspxgridview