Questions tagged [qooxdoo]

qooxdoo is a versatile JavaScript framework to create applications for a wide range of platforms.

qooxdoo is a universal JavaScript framework that enables you to create applications for a wide range of platforms. With its object-oriented programming model you build rich, interactive applications (RIAs), native-like apps for mobile devices, traditional web applications or even applications to run outside the browser.

It includes a platform-independent development tool chain, a state-of-the-art GUI toolkit, an advanced client-server communication layer and support for internationalization. It is open source under the MIT license.

All questions specific to the qooxdoo framework should have the "qooxdoo" tag. Related tags that cover more general topics include "javascript", "xhr", "rpc" and "json".

Important information relating to qooxdoo include:

520 questions
4
votes
4 answers

qooxdoo vs backbone

I've used Backbone.js and LOVE it. Recently I came across qooxdoo and honestly? It seem to be even better (for OOP code design)! Full OOP support (love the inheritance [this.base], namespacing etc'). I haven't gone too deep into it yet, so I was…
Poni
  • 11,061
  • 25
  • 80
  • 121
3
votes
1 answer

Is there a function that can change the order of table columns?

I had data in a fixed column order. However, sometimes I want to change the order of the columns displayed in a table without modifying the data. Thank you for you help.
3
votes
1 answer

Emacs auto-complete for Qooxdoo?

I'm starting a project using Qooxdoo and emacs with js2-mode(great tool btw) but I have a little problem: no auto complete support for the qooxdoo framework classes. Currently I have auto-complete-mode enabled, but it doesn't help when I need to…
Rafael Ibraim
  • 1,515
  • 2
  • 12
  • 13
3
votes
1 answer

simple constructor causing error in qooxdoo - new qx.data.controller.Object();

I'm getting errors when using basic qooxdoo objects. I am able to use some things just fine, but I am getting an error when I do: var controller = new qx.data.controller.Object(); I get an error. In safari: TypeError: Result of expression…
user685004
  • 33
  • 2
3
votes
5 answers

Cannot override a setter function like setWidth

I have the following code qx.Class.define("myproject.EditorArea", { extend : qx.ui.container.Composite, events : { }, statics : { }, members : { __htmlArea : null, __txtArea : null, setWidth : function( value ) …
Raymond
  • 61
  • 4
3
votes
2 answers

How obtain list of qooxdoo sublasses programmatically

I am working on a ClojureScript wrapper for qx.mobile and would like to programmatically build a cljs type hierarchy mirroring the qx class hierarchy. Is there a way to get all the subclasses of a qooxdoo class? How about a programmatic way to query…
kennytilton
  • 994
  • 1
  • 6
  • 16
3
votes
4 answers

How publish a directory with ring middleware?

I am trying to use Clojure + Compojure + Ring in combination with the qooxdoo JS library. This is actually going well, but qooxdoo runs in two modes "build" (that works for me) and "source" (not so good). In the latter case, the JS generated by…
kennytilton
  • 994
  • 1
  • 6
  • 16
3
votes
2 answers

Qooxdoo form elements and getSelection()

Here's my code: var sb = new qx.ui.form.SelectBox(); sb.add( new qx.ui.form.ListItem("English") ); sb.add( new qx.ui.form.ListItem("Nederlands") ); sb.add( new qx.ui.form.ListItem("Deutsch") ); sb.add( new qx.ui.form.ListItem("français") ); sb.add(…
aardbol
  • 2,147
  • 3
  • 31
  • 42
3
votes
2 answers

Does anyone know of a way to dynamically load a qooxdoo module?

I'm using the latest qooxdoo SDK (3.5) and am trying to find a way to dynamically load a module. Each module would implement an "init" function which creates a window in the application and, from that point, is self-contained. What I would need is…
jpreed00
  • 893
  • 8
  • 25
3
votes
1 answer

Infinite scroll in qooxdoo with virtual list

I have create a virtual list that when the user scroll on top or at the bottom of the list, then new data is added in the model of the virtual list. This seems to work fine. My problem is that the items of the virtual list have not the same height,…
3
votes
1 answer

How to disable the browser context menu in qooxdoo?

Is it possible to disable the context menu in qooxdoo?
Martin Wittemann
  • 2,109
  • 1
  • 12
  • 14
3
votes
2 answers

Running a qooxdoo Source Version from a Web Server

I'm trying to run the source version of my qooxdoo application from a web server. The application works fine when loaded from the file system but fails to load, when started from a web server.
Fabian Jakobs
  • 28,815
  • 8
  • 42
  • 39
3
votes
1 answer

How to disable optimization in the qooxdoo build process?

qooxdoo includes some optimizations in its build process which makes it hard to debug "build only" bug. How can I disable the the whole optimizations at once?
Martin Wittemann
  • 2,109
  • 1
  • 12
  • 14
3
votes
2 answers

What is the difference between the min and the regular file and which one should I use?

What is the difference between the normal and the min qoodoo js file? Which file should I use to write some js for my web browser?
Jenia Ivanov
  • 2,485
  • 3
  • 41
  • 69
3
votes
1 answer

Fields are as static fields in Qooxdoo library

I'd like to use qx-oo (Qooxdoo) as OOP library. But I was confused by strange behaviour of field members. It's looks like that fields are shared between all objects of one class, like static members. For example, this test code …
arusland
  • 115
  • 1
  • 6
1
2
3
34 35