How do I get a reference to the addnewrow? I'd like to set it active and enter edit mode on a particular cell on loading of the page but the addnewrow isn't in the Rows colleciton of the grid and I don't see another property I can use to get it.
Hi,
In order to get a hold of the AddNewRow you have get the RowsManager off of a row.
For example:
((RowsManager)grid.Rows[0]).Manager).AddNewRowTop
-SteveZ
The grid is empty when it is first loaded. Do I have to add a row and then remove it just to get the RowsManager? Rows[0] throws when empty as it doesn't include the addnew row.