Re: CellTree with CellTable nodes

2011-05-02 Thread lamre
CellCartella cell = new AbstractCellCartella(click) { @Override public void render(Context context, Cartella value, SafeHtmlBuilder sb) {

Re: CellTree with CellTable nodes

2011-05-02 Thread lamre
CellCartella cell = new AbstractCellCartella(click) { @Override public void render(Context context, Cartella value, SafeHtmlBuilder sb) {

Re: handle event inside a Cell of a CellTree

2011-04-27 Thread lamre
extends AbstractCellCartella (dblclick) {} Any idea. Thanks private static class CartellaCell extends AbstractCellCartella On 14 Apr, 13:49, lamre erm...@gmail.com wrote: Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Adding image to a cell of CellTree

2011-04-26 Thread lamre
Hi, any idea of how to do this. Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Adding image to a cell of CellTree

2011-04-19 Thread lamre
Hi, i want to add an image to the cell's of a CellTree but i don't know how to do it. Thanks. CellCartella cell = new AbstractCellCartella(dblclick) { @Override public void render(Context context, Cartella value, SafeHtmlBuilder sb) {

Creating cellTree with different childs

2011-04-15 Thread lamre
Hi, i want to create a CellTree structure like this. Root Folder -Folder -Folder -File -File Folder Folder Folder File File Folder I want to render Files and Folders inside the same node with

handle event inside a Cell of a CellTree

2011-04-14 Thread lamre
Hi, i want a cell to handle an event(double click) but i am having problems on making it work. I was trying to insert to handle this event overriding onBrowserEvent and make different actions based on event type. I don't now what the problem but it doesn't work. Thanks. CellNode cell = new

Re: handle event inside a Cell of a CellTree

2011-04-14 Thread lamre
Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more

distinguish between click and double click

2011-04-14 Thread lamre
Hi, i overrided onBrowserEvent of AbstractCell to handle click and double click event, the problem is now that when doubleclicking i cature two click events and a double click event. I need to handle both of them in a cell but can't distinguish. Thanks. CellNode cell = new

create a hierarchical structure

2011-04-12 Thread lamre
Hi, i need to create a hierarchical structure of folders where each each folder can contain different folders and different files inside. I was thinking to use CellTree but i understood that cellTree need different node types so it can identify it and turn the NodeInfo for tha node type. To create

Creating cellTree with different datatypes in a leaf

2011-04-12 Thread lamre
Hi, i have to create a tree of folders where each folder can have other child folders and files. I want to organize this using a CellTree and the problem is that until now i could not organize in the same node different dataTypes, i could put only folders or files. Is there a way to do this.