Skip to main content
11-Garnet
April 18, 2024
Solved

Select and Copy text from Tree Grid advanced Widget

  • April 18, 2024
  • 1 reply
  • 945 views

Hi I am using thingworx version 9.2 and I want to select the text from Tree Grid advanced cloumns. So please let me know if it possible and How we can enable this functionality.

Best answer by Pi_Baettgen

You need to create a "Custom CSS" like this:

#root_YOURGRIDNAME tr td
{
 user-select: text;
}

 

Replace "YOURGRIDNAME" with the id of your Grid. For example my Grid ID is "gridadvanced-11"

Pi_Baettgen_0-1715698658317.png

 

And the Code would look like this:

#root_gridadvanced-11 tr td
{
 user-select: text;
}

 

1 reply

12-Amethyst
May 14, 2024

You need to create a "Custom CSS" like this:

#root_YOURGRIDNAME tr td
{
 user-select: text;
}

 

Replace "YOURGRIDNAME" with the id of your Grid. For example my Grid ID is "gridadvanced-11"

Pi_Baettgen_0-1715698658317.png

 

And the Code would look like this:

#root_gridadvanced-11 tr td
{
 user-select: text;
}

 

11-Garnet
May 17, 2024

Thank You.