Cell copy

Tags: #<Tag:0x00007efc6080e4a0> #<Tag:0x00007efc6080e360>

Hello,

I have a cell renderer for delete and edit, and I use data to supply the value for the cell renderer,
but when I click on any of the icons and do ctrl C the value gets copied. Is there a way to disable the copy just for these columns?
52

Hi @namihihii

If you would like to block a certain column data from being copied, then you should return false in the beforeCopy hook for given cell coordinates. Here https://jsfiddle.net/1Logqhau/1/ is a demo for blocking the first column in the table.

Hello,

Thank you for the sample. I was able to make it work :slight_smile:

I am more than happy to hear that.

I will then close the thread as solved.