Hi guys,
I am in a class derived from XamGrid and I want to obtain the AddNewRow instance, after which I want to access its cells. It is not in the Rows collection, please tell me, how can I obtain it?
Alin
Hi Alin,
If you're deriving from the XamGrid, you can use the RowsManager property off of it.
this.RowsManager.AddNewRowTop
Hope this helps,
-SteveZ
Forgot to mention, I don't want to obtain it in an event handler because I use it in another event handler (is a PropertyChanged event handler inside the grid for properties belonging to the model - I really need to do this way).
Thanks!