Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2165
Disable edition/deletion/addition in child grids
posted

I want to disable addition, deletion, and edition in a hierarchical grid. This works fine for the first level of the grid:

$("#MyGrid").igGridUpdating("option", "enableAddRow", false);
$("#MyGrid").igGridUpdating("option", "enableDeleteRow", false);
$("#MyGrid").igGridUpdating("option", "editMode", "none");

but child rows still can be edited. How to disable that options en the second level even if the parent rows are not expanded?