posted 15 years ago
So, one of the problems I think I was having was the fact that I was constantly creating new components by extending Composite. What I'm really finding is that I should just be extending various Panel classes, like VerticalPanel, Grid, or even just extending MenuBar. From there, I can just access the 'this' of the component, configure the component directly, and other Google Web Toolkit Widgets can interact seamlessly with those components.
So, it seems that I could have avoided many of these problems by just extending some of the delicious GWT classes, as opposed to constantly creating Component classes.
Hope that helps someone else with similar growing pains.
-Cameron McKenzie