If you will need to disable a column in an H5 list, you can do this easily by removing the formatter property that is set on the column you would like to be read-only.
You can use getColumns()
to get all the columns in the grid. Then loop through these and set the formatter
property of the column you would like to update to null
. What’s great about this is that you need not worry about when scrolling down and new records were added. These should apply to new rows as well.