I'm working my way through a problem and am trying to understand the flow of creating or updating a row.
I have a test app with a RadGridView that displays hierarchical data based on 2 related datatables. The form has 3 buttons: Add Parent Row, Add Child Row, Modify Parent Row.
As near as I can tell, adding a parent row fires a CreateRowInfo event, followed by a RowValidated event. On the CreateRowInfo event, there is no data in the cells, their values are all null until I get to the RowValidatedEvent.
However, modifying the parent row causes a CreateRowInfo event, but not a ValidateRow. Checking inside the CreateRowInfo event, the cell values are still all null, so where/when are these values being loaded?
I have a test app with a RadGridView that displays hierarchical data based on 2 related datatables. The form has 3 buttons: Add Parent Row, Add Child Row, Modify Parent Row.
As near as I can tell, adding a parent row fires a CreateRowInfo event, followed by a RowValidated event. On the CreateRowInfo event, there is no data in the cells, their values are all null until I get to the RowValidatedEvent.
However, modifying the parent row causes a CreateRowInfo event, but not a ValidateRow. Checking inside the CreateRowInfo event, the cell values are still all null, so where/when are these values being loaded?