Posts Tagged ‘ GWT ’

Developing GWT-RPC application with a Database support

Jun 25th, 2010 | By admin | Category: GWT, Web Technologies

This post is a step-by-step guide to build an application using GWT-RPC . Just to make it more realistic , I have used a back-end database to store the records. I have used MySql as a database and Tomcat 6.0 as a deployment web server. If you are interested to have a look at the code and then the post , it can be downloaded from here. Let me start with a small but specific description of GWT-RPC.



GWT – How to create a HTML Label

Jun 14th, 2010 | By admin | Category: GWT

GWT provides a text-type label by default. You can set a text to a label but it is not possible to set a HTML to a Gwt label unless you do few changes.

Label myLabel = new Label();
myLabel.setText("This is my label");
myLabel.setHtml("This<br>is<br>my<br>label"); // compilation error

To achieve this , you can create your own customized label which [...]