Page 1 of 1

[REACT] How to copy text from grid.

Posted: Thu Feb 09, 2023 1:16 pm
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.


Re: [REACT] How to copy text from grid.

Posted: Thu Feb 09, 2023 1:48 pm
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;
}