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

How to integrate qooxdoo and PubNub?

PubNub works by calling callback functions you specify like this: http://www.pubnub.com/account-javascript-api-include How to integrate this properly with the Qooxdoo JS framework? Qooxdoo application looks like…
Hristo Hristov
  • 4,021
  • 4
  • 25
  • 37
2
votes
2 answers

Qooxdoo -- minimize window...where does it go?

When I minimize a window in qooxdoo, where does it go? Is there a way to get it to stick to the bottom of the main application window? Thanks!
Jonathan
  • 894
  • 2
  • 9
  • 20
1
vote
1 answer

Qooxdoo discrepancy for setting maxWidth on SelectBox vs. VirtualSelectBox

Is there a way to set the MaxWidth on the VirtualSelectBox Button, but not it's associated list? The SelectBox seems to behave properly: http://tinyurl.com/c5nhxb6 while the VirtualSelectBox does not: http://tinyurl.com/bu2w3k8 Thanks!
Jonathan
  • 894
  • 2
  • 9
  • 20
1
vote
1 answer

qooxdoo qx.data.Array replace

Is there a way to replace a qx.data.Array? I see methods for a whole lot of other options in the API but not that. I know I can do a removeAll() and then append new items, but that fires some events in my controller that I wish wouldn't fire.…
Jonathan
  • 894
  • 2
  • 9
  • 20
1
vote
2 answers

Qooxdoo Access Dynamic Properties from another class?

I'm trying to access the selectedObs property of this class: qx.Class.define("edd.view.ObsToggleContainer", { extend : qx.ui.container.Composite, type: "singleton", properties : { selectedObs : { check: "Array"} }, construct :…
Jonathan
  • 894
  • 2
  • 9
  • 20
1
vote
1 answer

Qooxdoo focus partially hides button image

I'm trying to make a ToggleButton as small as possible while still retaining the image; however, when the button has focus it moves the image to the right and partially hides it. How can I overcome this? I've tried padding and margins but neither…
Jonathan
  • 894
  • 2
  • 9
  • 20
1
vote
1 answer

Deploying Web APP (Client side) as Desktop Client

i am looking for an option to fully deploy the client side AJAX app written in js using qooxdoo framework.All view logic stays at Qooxdoo JavaScript framework. But i want to deploy it as desktop client too. It already hosted on server and working…
Phyo Arkar Lwin
  • 6,673
  • 12
  • 41
  • 55
1
vote
2 answers

Qooxdoo source not working but build does

Does anyone know why my "generate.py build" works just fine, but when I run "generate.py source" it cannot find: "http://localhost/qooxdoo-1.6-sdk/framework/source/class/qx/Bootstrap.js?nocache=0.39702596611879537" this is because it should…
Jonathan
  • 894
  • 2
  • 9
  • 20
1
vote
1 answer

qooxdoo values not updating in html widget

I'm writing an application on qooxdoo. I have a class, which should return table with data and widget with clicked by user on row information (similar interface as in email client). However information in html embedded widget is initialized only…
liberatio
  • 13
  • 2
1
vote
1 answer

qooxdoo mobile : EXPERIMENTAL – NOT READY FOR PRODUCTION

when looking at the qooxdoo api docs, i see some mobile classes have "EXPERIMENTAL – NOT READY FOR PRODUCTION" in their description. i would like to know what this means. i would assume it means "do not use for a live application as it is incomplete…
someguy
  • 59
  • 6
1
vote
1 answer

Reading in qooxdoo

This code (linke to playground: http://tinyurl.com/6ed9dyv) var label = new qx.ui.basic.Label('').set({width: 250, rich:true, wrap:true}); var doc = this.getRoot(); doc.setLayout(new…
Firewave
  • 336
  • 2
  • 11
1
vote
1 answer

Is there a better way to scroll focused cell in a table?

I am currently working on modifying the logic to find and focus on the desired row in a table. https://qooxdoo.org/qxl.apiviewer/#qx.ui.table.Table~setFocusedCell!method_public var table = new qx.ui.table.Table(tableModel); // some logics for…
1
vote
1 answer

Get usual spacing for menu and toolbar in Qooxdoo

Doing a simple setup with a Qooxdoo menu bar and tool bar I get an unexpected layout. Running this snippet in the Qooxdoo playground: const layout = new qx.ui.layout.VBox(5); const container = new qx.ui.container.Composite(layout); const menubar =…
Chris
  • 3,265
  • 5
  • 37
  • 50
1
vote
1 answer

how to add a y-scrollbar to qx.ui.menu.Menu

I have a lot of qx.ui.menu.Button and I want to add a scrollbar to it, how can I do it? `var menu = new qx.ui.menu.Menu(); var button1 = new qx.ui.menu.Button("Line 431"); var button2 = new qx.ui.menu.Button("Line 30"); var forwardButton = new…
le4a
  • 39
  • 4
1
vote
1 answer

Create responsive Qooxdoo HBox layout where widgets don't show without enough space

How can I create with Qooxdoo a user resizeable Window where the content is made out of a few widgets (e.g. Labels) where the display of some is disabled when the space isn't enough? Example: I have the three labels "unimportant" (right aligned),…
Chris
  • 3,265
  • 5
  • 37
  • 50