Reputation: 61
Can not find a way to disable data rows based on a property on the data for each row. In other words, make few rows of the grid read-only based of some property in the row data of the array.
Upvotes: 4
Views: 2974
Reputation: 449
Rather than setting editable: true
I'm setting editable
based on the data:
editable: params => params.data.active === true
Upvotes: 3