How to access the cell values from the Add new row in code ebehind
I want to change the cell style of the add new row dynamically
Hi,
To access the AddNewRow
Row row = ((RowsManager)grid.Rows[0].Manager).AddNewRowTop
To get its data;
object data = row.Data;
to set it's style:
grid.AddNewRowSettings.Style = "yourStyle"
-SteveZ