is it possible to disable the fill handle for a specific type of column only?
Hey there, I'm using ReactGrid, and I want to disable the fill handle for a specific column. In this case, I want to disable it for the image cell type (which is a custom cell). Please let me know if this is possible. Thanks!
Hi, you may add onPointerDown={(e) => e.stopPropagation()} to the CellWrapper. This is what I did for my own use case.
Hi, you may add
onPointerDown={(e) => e.stopPropagation()}to theCellWrapper. This is what I did for my own use case.
is CellWrapper specific to v5? is there a possibility to achieve that in v4? Also - does anyone know if we could enable fill only in specific direction? (like only vertically)