reactgrid icon indicating copy to clipboard operation
reactgrid copied to clipboard

is it possible to disable the fill handle for a specific type of column only?

Open mohamed161001 opened this issue 1 year ago • 2 comments

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!

Image

mohamed161001 avatar Apr 02 '25 21:04 mohamed161001

Hi, you may add onPointerDown={(e) => e.stopPropagation()} to the CellWrapper. This is what I did for my own use case.

jvloo avatar Apr 04 '25 01:04 jvloo

Hi, you may add onPointerDown={(e) => e.stopPropagation()} to the CellWrapper. 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)

MateuszTrN avatar Jun 18 '25 11:06 MateuszTrN