Hello,
Is there a way to see if the cell or row is in edit mode at certain moment?
Thank you
Hi,
A Cell has an IsEditing property.
if(grid.Rows[0].Cells[0].IsEditing){ ... }
Hope this helps,
-SteveZ
Thank you. I was using CellBase and that was why I didn't see that property.