Skip to main content
Best answer by TonyZhang

Hi @AP_9587236,

 

You can try below css code which worked for me. 

You can set cursor value to others to see if it's taking effect.

https://developer.mozilla.org/en-US/docs/Web/CSS/cursor

 

.selectedTreeRow {
    cursor: grab; 
}

2 replies

17-Peridot
July 5, 2022

You can use this css:

 

.<myrowclass>:hover {
 cursor: pointer !important;
}

 

where <myrowclass> is the name of the class on your tree rows... for instance, on one of the PTC tree grid examples, the class name is found here:

 

nmilleson_0-1657028935217.png

 

Hope that helps,

Nick

TonyZhangCommunity ManagerAnswer
Support
July 21, 2022

Hi @AP_9587236,

 

You can try below css code which worked for me. 

You can set cursor value to others to see if it's taking effect.

https://developer.mozilla.org/en-US/docs/Web/CSS/cursor

 

.selectedTreeRow {
    cursor: grab; 
}