Is it possible to individually define properties for a cell. My use case is being able to set whether a specific cell can be modified or not (readonly property).
For example given the first column and two rows I’d like 0,0 editable and 1,0 not editable. I can use grid.setColumnProperty to change allowEdit to true/false but that is the entire column.
I can locate the rows (grid.getRow), iterate the cells and modify the properties manually. The table does not pick this up which I was expecting. I did try using the refresh method, but I need to dig deeper to see what it is refreshing off of – the original column properties I provided or not.
If this is possible what is the proper way to achieve this?
Thanks!