Our blazing fast Grid component built with pure JavaScript


Post by surekajbhavi »

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 »

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 : text;
}
Attachments
Screenshot 2023-02-09 174730.png
Screenshot 2023-02-09 174730.png (42.51 KiB) Viewed 182 times

Post Reply