I got started by using antony.trupe's examples given in: http://stackoverflow.com/questions/2891803/how-to-use-gwt-2-1-data-presentation-widgets/2944454#2944454
It doesn't have a CellTree example, and since my project doesn't include a Tree I haven't delved into that yet. I needed something that was like a Table but with more flexibility, so I've ended up just using a CellList and then doing quite a bit of rendering in the render() override of the AbstractCell class. So basically I have a CellList that is a list of MyCustomCell, and in there I have learned all that I need by looking at other implementations of AbstractCell, such as TextCell, ButtonCell, etc. On May 21, 5:15 am, "[email protected]" <[email protected]> wrote: > Anyone know where to find the sources, examples, docs to the new Data > Presentation Widgets? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
