-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: June 2011
Detachable Models with Wicket (Attempt one)
Here is the Code. To run it, unzip it. You need Java and Maven. To run it and view it, just issue mvn jetty:run . Point your browser to http://localhost:8080 . You can also import it into Eclipse using File->Import->Existing … Continue reading
Posted in Wicket
Comments Off on Detachable Models with Wicket (Attempt one)
Bind to your model better with Wicket!
In this post, I still follow the Wicket in Action book, yet continue with the process of breaking out the concept into one simple project. This post takes the model (Customer object) and ties it to the page using the … Continue reading
Posted in Wicket
Comments Off on Bind to your model better with Wicket!
OpenOffice BASE and HSQLDB in server mode
The sample database for this post can be downloaded and used with GNU/Linux. It can also be adapted to Windows and Mac. OpenOffice Base uses hsqldb as its back end database in embedded mode. If you are a developer like … Continue reading
Posted in Uncategorized
Comments Off on OpenOffice BASE and HSQLDB in server mode
Callbacks and Wicket
I don’t believe starting with Anonymous Inner Classes (AIC) is a good way to get started when doing event driven programming. For this post, I took the Cheesr application from the Wicket in Action book and removed the AICs and … Continue reading
Posted in Wicket
3 Comments
Using Generics and a Form with Wicket
This blog post I will take a look at using a form with Wicket and binding it to an object using a PropertyModel along with Generics. I just started digging into generics in Java and even after reading a tutorial … Continue reading
Posted in Wicket
Comments Off on Using Generics and a Form with Wicket