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
How can I change the style of just single cell ?
The style would be based on value entered in the one of the cells of add new row
OK figured out Thanks for the help :)