Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
345
Cannot update cell in child row
posted

I'm in the process of upgrading our controls from 2007.1 to 2010.2.  I use an UltraWebGrid of type Hierarchical to display parent/child rows.  If I update one of the parent cells, everything works fine.  If I try to update a child cell, the process doesn't even enter my code for debugging.  DisplayLayout|AllowUpdateDefault is set to 'yes' and CellClickActionDefault is 'edit'.  Any thoughts?

Here's the code I'm unable to step into from the child rows:

 Protected Sub uwg_UpdateCell(ByVal sender As Object, ByVal e As Infragistics.WebUI.UltraWebGrid.CellEventArgs) Handles uwg.UpdateCell

 

 

 

If e.Cell.Row.Level = 1 Then
query_id = e.Cell.Row.Cells(0).Value
completed = IIf(e.Cell.Value =
Nothing, DBNull.Value, e.Cell.Value)
EndIf

EndSub

 

TIA,
KP