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

Row rendering in Qooxdoo

I am trying to display rows of my tables in different colors . Please help me to achieve this. Please provide sample code to do same. Thanks. Regards, vyankatesh
user311167
  • 21
  • 1
2
votes
3 answers

How to 'shake' a window in qooxdoo?

I'm trying to shake a window, but got error mess in console. My code: var win = new qx.ui.window.Window ("Login"); win.setLayout (new qx.ui.layout.Grow); win.add (view); this.effect = new qx.fx.effect.combination.Shake ( …
Sergey Miryanov
  • 1,820
  • 16
  • 29
2
votes
2 answers

qx.data.store.Jsonp: configureRequest not getting request as parameter

when creating an new qx.data.store.Jsonp object like this... var store = new qx.data.store.Jsonp(url, { configureRequest: function(req) { req.setParameter("key", "resources.appsrvs"); } },"callback"); ... the delegate function…
mika26
  • 21
  • 4
2
votes
1 answer

parameter passing to a standalone qooxdoo application

How can I pass parameters to a stand alone qooxdoo applicatoin? Thanks in advance :) update: I was thinking of passing URL parameters; something like GET/POST params when an html FORM is submitted. Initially, "arguments" in standalone application…
user249331
  • 71
  • 3
2
votes
1 answer

testing source application in qooxdoo

I began to use Qooxdoo the last month so i've got very little experience in its usage. I need to create a test application like the testrunner on the Qooxdoo website, but i need to do tests inside my application environment. I followed these…
mck89
  • 18,918
  • 16
  • 89
  • 106
2
votes
2 answers

Challenges in remotely running big RIA application

I have a big rich-internet-application file (qooxdoo,js,html). The users use their browser to point to the web server and run it. The problem is that it takes a long time for the users to load the application every time they visit the site. Is…
Peter
  • 29
  • 1
2
votes
2 answers

Using qooxdoo desktop without having to "build" it

in qooxdoo desktop you usually have to develop using the SDK and then "build" your app. Is there a way to generate something like a qooxdoo.js file with the whole library inside so that you can script script it as you like (like jqueryui or…
Fabrizio
  • 21
  • 1
2
votes
1 answer

Scalable themes in qooxdoo

I'm developing an interactive full-screen application using qooxdoo Desktop. The application should deliver consistent user experience on multiple devices, from 1024x600 netbooks to modern 2560x1600 "retina" displays. The application uses custom…
2
votes
2 answers

How to force DOM element creation with qx.ui.embed.Html?

I am trying to embed a RaphaelJS paper into qooxdoo widget. RaphaelJS is a SVG drawing library for JavaScript, and it needs to bind to a HTML
prior to any drawing. For that, I call new qx.ui.embed.Html("
") and add it to…
Dimitri
  • 301
  • 2
  • 13
2
votes
1 answer

How to get numeric keypad on qooxdoo mobile textfield widget

I have a textfield widget in a qooxdoo mobile app which is intended for numeric input only. Is there any way to get a numeric keypad when inputting/editing values on a qooxdoo mobile textfield widget? I have found this…
John Smith
  • 21
  • 1
2
votes
2 answers

Qooxdoo mobile: multiple selection in form

I am working on a Qooxdoo mobile application using the latest 2.1 release. I have a requirement for a form with a mutliple selection inline. I did not find a multiselect in the mobile API docs. Does it exist? Alternatively I could make my own…
E_lexy
  • 141
  • 6
2
votes
1 answer

how to set the background color for widget in qooxdoo mobile framework?

I am learning qooxdoo framework and I am going to develop web app on mobile device. However here comes a problem. I do not know how to set the background color for qx.ui.mobile.core.Widget. In terms of qx.ui.core.Widget(Another class, I think this…
Phineas Lue
  • 317
  • 4
  • 15
2
votes
1 answer

problems running qooxdoo simulation-run job

I am trying to use the qooxdoo simulation-run job for this simple test (with changed class namespace of course): qx.Class.define("twitter.simulation.Settings", { extend : simulator.unit.TestCase, members : { testChangeLanguage :…
yorick456
  • 109
  • 1
  • 6
2
votes
1 answer

Qooxdoo large application structure

I want to use qooxdoo but I dont see any large appliaction example with it can anyone help me how we can structure a real large application with qooxdoo (modules, routes, events, communication)
Cherif BOUCHELAGHEM
  • 1,126
  • 2
  • 14
  • 21
2
votes
2 answers

Is there a way to pause the qooxdoo layout managers while a bulk of content is added to a container?

I am dynamically creating content in a qooxdoo desktop application based on ajax calls. Some of the content I am creating has a lot of widgets in it (on the order of 200+). I did some profiling with google chrome and it looks like most of the…