Is there some JavaScript property/flag of the grid object that I can access to know if there's a cell already being edited? So far, what I'm doing it so set a flag on in the grid_BeforeEnterEditModeHandler function and turning it off in it's counterpart grid_AFterExitEditModeHandler. I'm just wondering if there's something more elegant to do so.
Thanks.
Hello,
There is nothing that is publicly available in the API CSOM, from what I see here:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/WebGrid_cell_Object_CSOM.html
But, with some debugging tools like FireBug for FireFox you can get an instance of the cell, place it in the debugger and see if there is some internal property available for the cell that designates edit mode (still, I like your solution better than using internal properties)