hello,
how to get a boolean value if the edit row in activated in any row in the webdatagrid?
Hi,
You can use the method getEditingOn(). It returns:
undefined - there is no editing
1 - row-editing is on
2 - row-edit-template is on
3 - cell-editing is on
4 - row-adding is on
5 - filtering is on
Here is how can be called:
var grid = $find("<%= WebDataGrid1.ClientID %>"); var editngOn = grid.getEditingOn();