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?
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?
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
I am more than happy to hear that.
I will then close the thread as solved.