Categories | Question details Back To List | ||
DHTMLXTree: style='cursor:pointer;' I need my cursor to be of the pointer style when hovered over the tree items because I trigger events on DblClick and that style seems to look more natural when doing that; Thx. Answer posted by Support on Apr 08, 2008 06:44 Can be adjusted in dhtmlxtree.css .standartTreeRow{ cursor: SOME; } .selectedTreeRow{ cursor: SOME; } If you need to have changed cursor only over text part of item you can use next css classes .standartTreeRow span { .selectedTreeRow span { |