I have created table with Ag-Grid component.
I would like to copy content by selecting few cells with mouse but selection is not possible.
Are there some options to enable selection.
Cheers
Hi, you can use the operating system copy and paste by setting a few grid options:
enableCellTextSelection=true
and ensureDomOrder=true
This is covered in the AG Grid docs here:
1 Like
Thank you.
Following code did the trick
builder.configure_grid_options(enableCellTextSelection=True)
builder.configure_grid_options(ensureDomOrder=True)
1 Like