hi ,
how to test if webdatagrid editcore cell are opened in the grid and get a boolean value
how to open the WebDialogWindow with double click event on column in webdatagrid only if the editmode is opened ?
Hi,
You can get if the edit mode is opened with:
var grid = $find("<%= WebDataGrid1.ClientID %>"); var editMode = grid.get_behaviors().get_editingCore().getEditingOn() != null;
For opening WebDialogWindow on double click you can look at this forum post:
https://es.infragistics.com/community/forums/f/ultimate-ui-for-asp-net/120003/webdatagrid-column-double-click-event/532042