cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X

Select and Copy text from Tree Grid advanced Widget

NJ_10144761
7-Bedrock

Select and Copy text from Tree Grid advanced Widget

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Pi_Baettgen
5-Regular Member
(To:NJ_10144761)

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;
}

 

View solution in original post

2 REPLIES 2
Pi_Baettgen
5-Regular Member
(To:NJ_10144761)

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;
}

 

Thank You.

Top Tags