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

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

How to provide cursor icon for selecting rows in tree grid.?

AP_9587236
17-Peridot

How to provide cursor icon for selecting rows in tree grid.?

How to provide cursor icon for selecting rows in tree grid.? I provided css =" .pointer {cursor: pointer;} ". It doesnt worked.

1 ACCEPTED SOLUTION

Accepted Solutions
TonyZhang
13-Aquamarine
(To:AP_9587236)

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

View solution in original post

2 REPLIES 2

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

TonyZhang
13-Aquamarine
(To:AP_9587236)

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

Top Tags