I'm looking for a way to disable an angular kendo-grid.
The user should not be able to add/edit/delete rows within the grid.
So, how to mark my kendo-gird as readonly, or disabled ?
I didn't find anything relevant in the official documentation.
I'm looking for a way to disable an angular kendo-grid.
The user should not be able to add/edit/delete rows within the grid.
So, how to mark my kendo-gird as readonly, or disabled ?
I didn't find anything relevant in the official documentation.
In order to use binding you could bind to "att.disabled". Since it doesn't accept boolean values if you don't want it disabled you should return "null".
See the example bellow: <kendo-grid [attr.disabled]="isDisabled == true ? true : null">
© 2022 - 2024 — McMap. All rights reserved.