In jQuery i can append GET parameters by specifying argument data
:
// sends request to http://example.com?foo=bar&hello=world
$.ajax({
url: 'http://example.com',
method: 'get',
data: {foo: 'bar', hello: 'world'}
})
However I can't see such option in qooxdoo documentation. Of course I can encode parameters into url manually, but I can't believe that such a large javascript framework can't do this.
Maybe I am wrong and qooxdoo API accepts GET parameters in some way?