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 CellTree.Style {
}

// mytweaks.css
.cellTreeItem .cellTreeImage { visibiility: hidden; }
.cellTreeItem:hover .cellTreeImage { visibility: visible; }

new CellTree(viewModel, rootValue, GWT.create(MyCellTreeResources.class));

On Thursday, February 20, 2014 4:09:05 AM UTC+1, Smiley wrote:
>
> 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 message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to