Tree - disable highlighting

Hi,

I have a question regarding the tree component.

If you select an tree item it will be highlighted (with a dark background color). It stays highlighted until another item is clicked. There are situations in which this could be confusing, particularly if you use other components like buttons after that.

So I wonder if there is a way to disable this
onClick
effect? Is there a style example anywhere?

Thanks, Thorsten

OK - solved with the help of Firebug.

Just overwrite this css rule in your own style:

.v-tree-node-selected span {
	background: white;
	color: black;
}

BR, Thorsten