Hi,
Please help me with following problem, I am using RowAdding server event,
On the server-side in the event handler I get RowID (RowAddingEventArgs.RowID),
How knowing this RowID I can get corresponding GridRecord object?
If it is easier to do for RowAdded server event it is acceptable.
Thank you,
Alexander
Hi Alexander,
At the RowAdding event, the row has not actually been added to the DataSource or grid yet, which is why you get the id that WILL identify the row. If you need the actual row, handle RowAdded as you said.
regards,
David Young
Hi,David!
In the RowAdded event handler I get only RowID as well (RowAddedEventArgs.RowID). So I need way to get GridRecord by RowID. Or maybe there is some property of the grid, something like "AddedRows".