[quote="Jesse_swe"]I want to change cursor while hover over node...
the hoverstyle property doesn't seem to work with cursor, background-color and font-weight works ok...
My code...
.standardTreeNodeHover
{
cursor:hand;
font-weight:bold;
background-color:#e8f1f8;
filter:alpha(opacity=50);
opacity:0.5;
}
what have I done wrong?
Hi Jesse_swe,
with "cursor:pointer;" it should do, what you want.
.standardTreeNodeHover
{
cursor:pointer;
font-weight:bold;
background-color:#e8f1f8;
filter:alpha(opacity=50);
opacity:0.5;
}
regards,
martin