Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
How to provide cursor icon for selecting rows in tree grid.? I provided css =" .pointer {cursor: pointer;} ". It doesnt worked.
Solved! Go to Solution.
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;
}
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:
Hope that helps,
Nick
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;
}