Learn more from guides & API docs
Catch up with the latest on the blog
Try our many live demos
View webinars
Find answers or ask questions
Docs & demos for Angular
Docs & demos for React
Docs & demos for Vue
Our blazing fast Grid component built with pure JavaScript
Post by surekajbhavi » Thu Feb 09, 2023 1:16 pm
Hi Team, Is it possible to copy the text from the grid like normal way of copying. With mouse double click and drag , ctrl+c. Not like right click and selecting copy from menu which is already available.
Thanks.
Post by tasnim » Thu Feb 09, 2023 1:48 pm
Hello,
In our Grid .b-gridbase.b-grid-notextselection .b-grid-cell has user-select: none. You could set user-select to text
.b-gridbase.b-grid-notextselection .b-grid-cell
user-select: none
user-select
text
.b-gridbase.b-grid-notextselection .b-grid-cell { user-select : text; }
Best of luck, Tasnim