--
Sandy McArthur
"He who dares not offend cannot be honest."
- Thomas Paine
Let's check there what you would use (fun stuffs) :
http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.UserInterface.WidgetGallery.html
Then, try to find the different widget's options the google lexical :
http://code.google.com/webtoolkit/documentation/com.google.gwt.user.client.ui.html
First, I would tell you to begin by little widgets :
/****
Button myButton = new Button();
***/
And try to add options on it :
/*****
myButton.setText("toto");
****/
Then, try to add your listeners :
/***
myButton.addClickListener(new ClickListener() {
.....
});
/****
And show what happen when you click your button
When you've done all this, try to use the widget which interest
you.... and to look at the different widget reference...
Hope that 'll help you ;)
Alex Gorisse