Hello. I’m trying to do read only column and disable selection for the read only column. (I use event.stopImmediatePropagation() if the column is readonly inside beforeOnCellMouseDown)
It works perfectly fine. But I have one problem. When I double click on readonly cell, the selected cell that isn’t readonly go to editor mode. How to prevent that ?
Here’s jsfiddle (in the jsfiddle example, I assume column index 0 is read only column)
https://jsfiddle.net/cfawthL6/
Step to reproduce is, you select any cell that isn’t in first column(which it’s read only column) then double click readonly cell inside first column, the selected cell go to edit mode. What I expect is it shouldn’t go to edit mode except user double click the selected itself.
Thank you