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

What is the right way to introspect a qooxdoo object?

I want to list all members of a qooxdoo object. I found a way to do it, but I assume there must be a cleaner way? for (var key in obj) { if (key.startsWith('$$user_')) { msg += 'name='+key.substring(7)+' = '+obj[key]+'…
Remi Arnaud
  • 465
  • 1
  • 4
  • 11
3
votes
1 answer

How to integrate ACE editor into Qooxdoo build?

I mangaged to get the ACE editor (http://ace.ajax.org/) working with my qooxdoo project by dropping the required .js and .css files in the resource directory and requiring them with an #asset(...) directive in the sources. While this is working…
hoeni
  • 3,031
  • 30
  • 45
2
votes
2 answers

How to create a custom Model in Qooxdoo? (for a list)

I'm trying to make my own model but I don't know how. I've been looking at the ListControllerWithObjects demo but I can only see: var person = new demobrowser.demo.data.model.Person(); but don't show where it comes from or how is made. So this…
Totty.js
  • 15,563
  • 31
  • 103
  • 175
2
votes
3 answers

Qooxdoo on window ready

I was just trying to fire an event after the qooxdoo application is ready, so I started with the "Hello World" app and appended the recommendation at the very end of the main function: main : function(){ // Hello World part... …
Jonathan
  • 894
  • 2
  • 9
  • 20
2
votes
4 answers

Freeware Ui designer for alternatives-to-extjs frameworks

I have read this two posts: What are alternatives to ExtJS? free and open source alternative to extjs Is there any freeware Ui designer for any of there frameworks? I want to build a web file-browser
Elad Benda
  • 35,076
  • 87
  • 265
  • 471
2
votes
1 answer

Command handling in Qooxdoo multi window application

I want to create a Qooxdoo application that consists of a Desktop with multiple Windows. The Desktop (and not each Window) also has a (common) ToolBar. Now I want to have a command to "save" the document of the active window. This command can be…
Chris
  • 3,265
  • 5
  • 37
  • 50
2
votes
1 answer

Qooxdoo dialogs

I want to have some dialogs in Qooxdoo applications, but I don't know how to define them for some situations. In Qooxdoo demos (it was widget - window example, function getModalWindow2), I seen that window can be defined like a simple JS function,…
ISE
  • 436
  • 2
  • 9
  • 21
2
votes
1 answer

How to load CSS file in qooxdoo dynamically

Is there a special qooxdoo class to load CSS files dynamically like qx.util.DynamicScriptLoader does for JavaScript files? For example, depends on user choice what geo maps he wants to use an application loads specific JavaScript and CSS files. I…
goldim
  • 466
  • 1
  • 3
  • 13
2
votes
1 answer

integrating qooxdoo effects in qooxdoo window

what's the best way of doing it? for example: I want the window to fade (qx.fx.effect.core.Fade(DOM)) when the user clics on the minimize button. So I did this in the window class: this.addListener("appear", function() { this.minimizeEffect =…
Inuart
  • 1,432
  • 3
  • 17
  • 28
2
votes
2 answers

how to make qooxdoo effects work?

I'm trying figure out how to make something like this work: qx.Class.define("effects.Application", { extend : qx.application.Standalone, members : { main : function() { // Call super class this.base(arguments); // Enable logging in…
Inuart
  • 1,432
  • 3
  • 17
  • 28
2
votes
1 answer

How do I migrate an older theme contribution to Qooxdoo 6.0?

I've recently been asked whether it was possible for me to convert my older theme contributions to the new Qooxdoo packaging system. So I installed Qooxdoo 6.0 and got a first test app running - not without problems because the instructions in the…
scro34
  • 56
  • 3
2
votes
1 answer

How to make an Xhr request to get client's ip via external api

I need to get client's public ip and geolocation using some api : ipapi.co, ip-api.com, ipdata.co, etc. and grab its json result, I tried with : new qx.io.request.Xhr without luck. Can someone tell me how to get this info using any of these apis ?…
R. Islas
  • 71
  • 4
2
votes
1 answer

Qooxdoo AJAX help - events not working?

I'm trying to make an AJAX call to CouchDB with Qooxdoo, but as far as I can tell no events seem to be firing on my request object (ie. Nothing is appearing on the console and no alerts are coming up). Can anyone tell me what should be…
2
votes
1 answer

Clickable checkbox in Qooxdoo table

I'm trying to adapt the Qooxdoo Playground table example's checkbox, to become a checkbox that can be clicked on and off. I did see some code in a mailing list which seemed like it should do the job, but it's not working for me. // Display a…
pcaffin
  • 47
  • 7
2
votes
1 answer

Writing xml with qooxdoo

I've seen the api qx.xml.* There is only three class. With these classes we can read. What would be the recommended way to edit an xml file using the qooxdoo api?
benzen
  • 6,204
  • 4
  • 25
  • 37
1 2
3
34 35