Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
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.
Solved! Go to Solution.
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"
And the Code would look like this:
#root_gridadvanced-11 tr td
{
user-select: text;
}
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"
And the Code would look like this:
#root_gridadvanced-11 tr td
{
user-select: text;
}
Thank You.