How to add MouseOverEvent for a node in CellTree

2014-02-20 Thread Smiley
Hi, I want to show the button on the MouseOverEvent of a node or cell in CellTree. Can someone give my some examples on how this can be achieved? Should i change my implementation from CellTree to Tree to achieve the same? Do let me know your inputs on this. Thanks -- You received this

Re: How to add MouseOverEvent for a node in CellTree

2014-02-20 Thread Thomas Broyer
If by button you mean the open/close image, then you should be able to do it by just tweaking the CSS: interface MyCellTreeResources extends CellTree.Resources { @Source({ CellTree.Style.DEFAULT_CSS, mytweaks.css }) MyCellTreeStyle cellTreeStyle(); } interface MyCellTreeStyle extends

Re: How to add MouseOverEvent for a node in CellTree

2014-02-20 Thread Smiley
Thanks for your response.Sorry I was not clear as this was my initial post. *Requirement:* There will be list of Server which will form the root nodes of the CellTree. Its child node will be list of Processes that is running on the Server. Eg Tree: Server1 Process1 ---Process2