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
2
votes
1 answer

Qooxdoo Set Column Width to Fill Table

I have a Table with 3 columns, the left 2 are fixed-width. I am trying to make the third column fill the whole remaining table. I have tried: logTable.getTableColumnModel().set(2, {flex: 1}); But this did nothing to the column width. Thanks in…
William Edmisten
  • 693
  • 5
  • 12
2
votes
1 answer

Qooxdoo - available locales not present

The statement qx.locale.Manager.getInstance().getAvailableLocales() returns only de if I set LOCALES to "en", "de", or nothing if I set LOCALES in config.json to "en" only. What am I doing wrong?
Christian
  • 3,503
  • 1
  • 26
  • 47
2
votes
1 answer

XMLHttpRequest cross-origin resource sharing (qooxdoo and tomcat)

I have a Java REST webservice deployed on tomcat (http://localhost:8080/myrestfulapp/aservice/). In my qooxdoo app, I try to send a POST request using qx.io.remote.Request. I built the application and deployed it on an apache HTTP server (named…
Jihed Amine
  • 2,198
  • 19
  • 32
2
votes
1 answer

Drag and drop from qx.ui.table.Table (Qooxdoo version 5.x or master)

I am trying to drag from a qx.ui.table.Table widget to some other widget. I fail to get information about the table row I am trying to drag. I would like to drag a row (respectively its content) without it being focused or selected, e.g.g just click…
Fritz Zaucker
  • 799
  • 6
  • 5
2
votes
0 answers

Qooxdoo Automation

I'm trying to create test automation for a third party but all of the usual routes seem to be unsuccessful. I was hoping that someone had some insight on possible tools and paths I could take. Thanks for the help.
Ryan
  • 21
  • 2
2
votes
2 answers

Chrome v55 breaks qx.ui.form.MenuButton

When I click the menu button, no menu appears. Google Chrome just updated on my machine to the latest version (Version 55.0.2883.87 m), and after the update my qx.ui.form.MenuButton stopped working. Is there a patch or workaround for this? I'm on a…
Jonathan
  • 894
  • 2
  • 9
  • 20
2
votes
1 answer

Getting 'too much recursion' error when trying to serialize Qooxdoo-Object

I tried to serialize my qooxdoo-object to JSON but I always get a 'too much recursion'-errormessage (in Firebug-console) if I try the following: qx.util.Serializer.toJson(this.getGameData()) Also .toNativeObject-function throws this error. The…
Ricky
  • 45
  • 6
2
votes
3 answers

qooxdoo and debian lenny

Hy, Trying to use qooxdoo with debian lenny. qooxdoo sdk 1.2 create-application.py ok but I've got a problem with generate.py : /demo/qooxdoo/hello1$ ./generate.py source-all Traceback (most recent call last): File…
jilome
  • 23
  • 2
2
votes
1 answer

Why can't a member map be used to store toolbars?

I defined the following window: qx.Class.define('my.Window', { ... construct: function(caption, icon) { this.base(arguments, caption, icon); this.setLayout(new qx.ui.layout.VBox(10)); this.add(new…
2
votes
2 answers

Qooxdoo Layout issues

I have been using qooxdoo now for 3 days so, it s just the begining but obviously I do already have some troubles. It is about VBox HBox... I don t really understaind how it is working. I saw the online documentation and forums but whatever I tried…
dido dodi
  • 23
  • 4
2
votes
2 answers

qooxdoo events best practices

In my application, I'm loading/saving some data from/to qx.io.rest.Resource. To hide the complexity of REST, I want to expose a simplified, high-level interface to application components; think of load()/save() methods and some events to monitor…
Dimitri
  • 301
  • 2
  • 13
2
votes
2 answers

Can I set a rgba color within a color theme

I read in an old qooxdoo note that "qx.util.ColorUtil now accepts rgba values for cssStringToRgb()". This means to me that qoxdoo has the ability to deal with rgba colors in some ways. But none of the ways I tried to set colors in a theme…
Julien B
  • 71
  • 5
2
votes
1 answer

Add summary row in qx.ui.table.Table for column

How can i add a summary row to a qx.ui.table.Table to display a total for a column. The only idea yet is to combine two tables, one with the data and one with the totals. Is there any more elegant way how i can handle this? Edit The table is used…
Benno Eggnauer
  • 853
  • 1
  • 7
  • 19
2
votes
1 answer

Using Library Resources in Qooxdoo

I have made a custom library in qooxdoo for reuse in another qooxdoo applications. I followed the instructions here: http://manual.qooxdoo.org/3.5/pages/development/library_custom.html and it works, in that it finds the classes and I can use them in…
phil_20686
  • 4,000
  • 21
  • 38
2
votes
2 answers

Qooxdoo: Drag a toolbar button to a tree node. is it possible?

I am trying to Drag a toolbar button to a tree node. Is it possible? I have noticed that drag start is never fired. Is there any list of components/classes available that currently allow to be dragged?
Adi
  • 73
  • 3