> I'd like to use CompositeCell, but I'm having a hard time turning my > list of individual Headers into a List<HasCell<>> specifically because > Header's valueUpdater is private.
I ended up with a workable CompositeHeader: http://github.com/stephenh/gwt-mpv/blob/master/user/src/main/java/org/gwtmpv/widgets/cellview/CompositeHeader.java By hacking together an ExposedUpdaterHeader subclass: http://github.com/stephenh/gwt-mpv/blob/master/user/src/main/java/org/gwtmpv/widgets/cellview/ExposedUpdaterHeader.java I still find using cells within headers a little awkward because headers aren't really flyweights--there is just 1 header row. Especially when HasCell comes into play (because of CompositeCell), which assumes you have a FieldUpdater/row type. - Stephen -- 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.
