Using Qooxdoo in Rails
Let us create a simple rails application called namelist with just one model.
gg[qtest]$ rails namelist -d sqlite3
I am using my favorite sqlite3 to power the app. Feel free to use the database of your choice.
Now create a model called Person
gg[namelist]$ ruby script/generate model Person
exists app/models/
[...]
Getting started with Qooxdoo
Qooxdoo is an excellent Javascript based GUI framework. It has a rich set of widgets and inbuilt AJAX support.
To get started, download the precompiled Qooxdoo from http://qooxdoo.org/download. The framework javascript file and the related widget image files are found under qooxdoo-0.6.1-build/frontend/framework
Now let us develop a traditional Hello World program in Qooxdoo.
Create a new directory for [...]