Somebody asked me, how I did the DropDown box on puntalunta.com for selecting categories and if I’m willing to share the code. Well, of course I am!
Here is a different approach how to create a customizable drop down box using GWT and CSS. I must admit, CSS is a PITA (pain in the a**) and therefore the most time consuming part for me. Please don’t ask me to many questions about this topic since I’m not the CSSĀ guy.
The image I’m using for the arrow inside the TextBox on the right side is something you can create yourself, but in case you want to use the one I made, feel free to use it. You’ll see the image on the bottom. Continue Reading »
Posted in CSS, GWT, Uncategorized, java | 1 Comment »
Jan 27th, 2011 by Dariusz
I had a pleasure to receive a book about Ext GWT 2.0 for reviewing it. At the first look, the book looks promissing, but I didn’t have time yet to take a closer look.
If you want to take a look into a sample chapter, please feel free to do so:
Ext GWT 2.0 Beginner’s Guide
The book covers mostly basic stuff and is good not only for Ext GWT, but also for pure GWT developers. Continue Reading »
Posted in Book, ExtJS, GWT, JSON, Uncategorized, gwt-ext, java, servlet | 2 Comments »
Sep 11th, 2010 by Dariusz
First of all, my apologies to everybody for not being very active on my blog in the past, but I have a good reason for it. The reason is:

I spent a lot of time working on this site for two reason! First of all, I wanted to get the idea done (explain later what it is about) and secondly, I was fascinated by GWT and inspired by Sanjiv Jivan SmartGWT. Continue Reading »
Posted in Database, GWT, Uncategorized, hibernate, java | 9 Comments »
Mar 24th, 2009 by Dariusz
To think a bit about the right JSON output before starting to develop saves you a lot of headache afterwards. To get my data as JSON without any manual object conversion, I decided to use the Spring Framework. My controller allows me to define the view by just calling the name of the bean (defined in views.xml) together with the model (java.util.Map).
At the beginning, I was using the spring-json library, which was good enough for my first tests. After a while I realized that my performance was going down, because I haven’t had any control of what should be populated or not. On the spring-json page under feature it is mentioned that FlexJSON will be included shortly…
Continue Reading »
Posted in Database, JSON, Spring, Uncategorized, gwt-ext, java, servlet | 1 Comment »
Jan 11th, 2009 by Dariusz
While I was developing in GWT-Ext and juggling with the data coming from the database back and force, I found the way of preparing data (JSON) for the module a little bit pain in the neck. When thinking about a better and more efficient solution I came across with Spring and its view resolver. The view controller takes over the type of the output and you don’t need to do anything at all.
In this example I would like to show the basics to setup the viewResolver with a JSON output, based on the example I wrote before.
First, we need to include our Spring libraries so we can run this example. The libraries we need, are shown in Continue Reading »
Posted in Database, JSON, Software, Spring, gwt-ext, hibernate, java, servlet | 12 Comments »
Sep 28th, 2008 by Dariusz
After seen a good example of how to save data into the database. I decided to write an example how to fetch data coming from a database.

Continue Reading »
Posted in Database, Eclipse, Software, gwt-ext, hibernate, java | 61 Comments »
This time I would like to post the Ant script I’m using for deploying my Gwt-Ext application. The main thing what is required for deploying it successfully, is basically the path to the GWT source files.
The Login application as shown in this figure before running the build file:

Continue Reading »
Posted in Deployment, Uncategorized, gwt-ext, java | 7 Comments »
Jun 29th, 2008 by Dariusz
After my post of how to setup a proper Gwt-Ext application in Eclipse, I would like to show how to develop a simple “Login” application using CypalStudio plugin.
Instead of showing a basic HelloWorld, I would like to do a more realistic example. I decided to do a Login functionality, but If you are interested in a simple HelloWorld, here is good example.
Allright…
First, we click on our project with the right mouse and select New->Other->Cypal Studio->Module

Continue Reading »
Posted in Eclipse, Software, gwt-ext, java | 70 Comments »
This example should present, how to set up a proper application using “gwt-ext” and “cypal studio”.
At the beginning I should start to explain how a GWT application works, since it’s different from other web development what I worked so far.
The development is being done completely in java, except some stylesheet and one html file. Basically, the whole operational procedure is being executed on one page (could be your index.html).
Continue Reading »
Posted in Eclipse, Software, gwt-ext, java | 32 Comments »