How to convert an EntryPoint object into a Composite object.

2009-07-24 Thread Baskar
I am new to GWT RPC application. I have downloaded the GWT plugin for eclipse and did a sample GWT java product and defined a module which contains the following three screens: 1, Login Screen 2, Main Screen, which contains menu bar and tool bar options and 3, A master screen, ie., Item Master,

Re: How to convert an EntryPoint object into a Composite object.

2009-07-24 Thread Isac
You have to extend Composite instead of EntryPoint and initialize your widgets in the constructor. Simple example: public class SimpleButtons extends Composite{ public SimpleButtons(){ final VerticalPanel panel = new VerticalPanel(); initWidget(panel); final Button

Re: How to convert an EntryPoint object into a Composite object.

2009-07-24 Thread Nuno
you may give a look at this pagehttp://tcninja.blogspot.com/2009/07/composites-when-you-need-to-group.html to learn a little more about composites. On Fri, Jul 24, 2009 at 7:07 AM, Baskar baskarani...@gmail.com wrote: I am new to GWT RPC application. I have downloaded the GWT plugin for