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

How to run a command line script in qooxdoo?

I would like to be able to go to a webpage select a few options and then run a command line script with those options. Is this possible with qooxdoo?
Siecje
  • 3,594
  • 10
  • 32
  • 50
0
votes
1 answer

qxMobile – List with Checkboxes

I'm trying to create a list in qooxdoo Mobile that has a checkbox on the side of each item (like in Android's settings menu). I have now extended from list and wrote my own provider and renderer. The files can be found below. Furthermore, a live…
Ingo Bürk
  • 19,263
  • 6
  • 66
  • 100
0
votes
1 answer

why is the qooxdoo generator throwing the error TypeError: 'int' object is not subscriptable

When I run the qooxdoo generator on my source, I get the error: TypeError: 'int' object is not subscriptable What about my source code is causing this: /* ************************************************************************ Copyright: …
Terrence Brannon
  • 4,760
  • 7
  • 42
  • 61
0
votes
1 answer

echo-printing the data that comes back from YQL

In the qooxdoo playground there is a YQL binding sample. I want to see what data comes back from querying the URL. How can I modify this code: var delegate = {manipulateData : function(data) { return data.query.results.item; }}; so that I can…
Terrence Brannon
  • 4,760
  • 7
  • 42
  • 61
0
votes
1 answer

google maps v3 events in qooxdoo mobile

I have a qooxdoo mobile app where I am trying to implement a google map. I have looked at the openlayers example,but it does not suit my needs. The issue I have is that the events attached to google map do not get triggered or at least do not reach…
E_lexy
  • 141
  • 6
0
votes
1 answer

How to add a custom method to the model created with qx.data.marshal.Json.createModel?

I have a model created with qx.data.marshal.Json.createModel that contains a field named "startDate" which is a Date instance. I would like to override the getStartDate in order to return a copy of the Date and not the same Date instance in the…
Totty.js
  • 15,563
  • 31
  • 103
  • 175
0
votes
0 answers

QOOXDOO: Workaround for error: "Could not set the model selection. Maybe your models are not unique?" when removing all items in an array?

I get this error when I try to remove all the elements in the array, which is the model for the selection Box. From what I understand this happens because I have the first row selected and I remove all items, in order to replace them again. The how…
Totty.js
  • 15,563
  • 31
  • 103
  • 175
0
votes
1 answer

Toggle an inline application to full screen?

Is there a way to toggle an inline application to full screen? I would like to use a standalone application, but to meet an agency requirement I need to initially start it in a container within the existing page.
Jonathan
  • 894
  • 2
  • 9
  • 20
0
votes
1 answer

How to refire a data event in qooxdoo?

fire a event from qooxdoo, how should I do? ClassA dispatches the event A of type MyEvent and ClassB listens for that event. Then classB dispatches the same event B of type MyEvent with the same data.. In classB I've made this: var target =…
Totty.js
  • 15,563
  • 31
  • 103
  • 175
0
votes
1 answer

openlayers inside qooxdoo JS framework

i´m using the openlayers drawing example inside my mobile JS (qooxdoo) app and all works fine except that the drawing cursor is above the viewport so I can draw but I don´t see the cursor and I can only see the drawing after I scroll down. I have…
E_lexy
  • 141
  • 6
0
votes
2 answers

QooxDoo: Is there is any contribute for "Auto Completion" in Form Elements

I am new to QooDoo, Now i am developing a web application in QooxDoo and PHP, This application has multiple forms. It'll very use full if qooxdoo has a "auto complete" feature in its form elements like TextField, ComboBox, SelectBox etc.. Is there…
Baskar.M
  • 561
  • 1
  • 6
  • 25
0
votes
1 answer

qooxdoo mobile selectbox from json

I am trying to initialize / update a selectbox in Qooxdoo Mobile from json. this.__model = new qx.data.Array(); var selQuestion = "substance released"; sel = new qx.ui.mobile.form.SelectBox(); sel.setDialogTitle(selQuestion); …
E_lexy
  • 141
  • 6
0
votes
1 answer

How do I programmatically select a qooxdoo table cell and then start editing?

I would like to programmatically select a cell in a Qooxdoo table widget and then start the editor for that cell. So far, I’ve been able to figure out the following: I can select and focus the cell as follows: var pane =…
Raphael Schweikert
  • 18,244
  • 6
  • 55
  • 75
0
votes
2 answers

Change color of TextArea words

Is there a way to change the color of certain words in a TextArea? For example, "There are three possums in the road." I would like to color 'possums' red.
Jonathan
  • 894
  • 2
  • 9
  • 20
0
votes
1 answer

How to get the response from qooxdoo qx.event.type.Rest?

In the documentation at http://manual.qooxdoo.org/current/pages/communication/rest.html is stated that: Handlers receive a qx.event.type.Rest event that, among other properties, includes the response. But there is no response in…
Hristo Hristov
  • 4,021
  • 4
  • 25
  • 37