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 Thenquery_id = e.Cell.Row.Cells(0).Valuecompleted = IIf(e.Cell.Value = Nothing, DBNull.Value, e.Cell.Value)EndIf
EndSub
TIA,KP