On Thursday, June 14, 2012 5:45:01 PM UTC+2, Alfredo Quiroga-Villamil wrote: > > I would be interested in any advice/approaches I can get at this point > regarding the usage of CellTable in conjunction (if possible) with the > Editor Framework. More details below. > > ======== > Hierarchy > ======== > > - Suppose you have a Set of Objects of type A. > > - A contains a Set of objects of Type B. > > - B contains a Set of objects of Type C. > > Say you now wanted to represent the previously described relation via > Grids (CellTable). > > ==== > View > ==== > > - A Table in a center panel showing an editable list of objects A. >
I'm really not sure the Editor framework is the best fit here. To begin with, it doesn't play well with CellTable unless you're spending some time building a "queue of changes" (as in http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellSampler with an explicit "commit", which corresponds to the editor's flush()) > - An East Panel with two regions (North/South). Where the North Region > shows the list of editable B object. The South region shows the list > of editable C objects. > If all you have are editable lists of objects, you'd probably better manage them "by hand", and directly editing the objects, rather than with the Editor framework and its edit/flush flow. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/V7KIzUeTP34J. 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.
