'i cannot disable or hide CRUD Operations column in DxDataGrid DevExtreme
I use the DxDataGrid DevExtreme and Angular components. I wanted to completely delete the main operation buttons (CRUD Operations) of the table by clicking on a button. I have defined a variable for this but when the button is clicked it changes its value but does no operations !!
How can I disable or hide CRUD Operations column in DxDataGrid DevExtreme?
Solution 1:[1]
If you can access the column of edit and delete then you can hide using *ngIf="false" . Or you can directly remove that column from the code
Solution 2:[2]
I had the same challenge. I resolved it by setting the mode="cell", this also gives me control at granular level.
mode="cell"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Hitech Hitesh |
| Solution 2 | adeyinkaroyal |
