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
2 answers

qooxdoo qx.ui.mobile.list package not loading

I have just started evaluating qooxdoo + phonegap for a mobile application and have completed the getting started manual and created a test application which works as expected. The default app created has page1 with a button to navigate to page2 and…
Vinay B R
  • 8,089
  • 2
  • 30
  • 45
0
votes
1 answer

qooxdoo : Image Button remove padding border?

I have an image button which looks like : Here is my code for the image button : var button = new qx.ui.form.Button(null, "myapp/test.png"); container.add(button, { left: 10, top: 10 }); How to remove the button border & the padding ? I want to…
Raptor
  • 53,206
  • 45
  • 230
  • 366
0
votes
2 answers

How to specify the icons theme in qooxdoo?

I want to have an icon in my DateField in the Qooxdoo framework. How do I specify the icon set to use? This is my config file. As you can see I want to use the default theme. "let" : { "APPLICATION" : "myapp02", "QOOXDOO_PATH" :…
Jenia Ivanov
  • 2,485
  • 3
  • 41
  • 69
0
votes
2 answers

qooxdoo : how to change project name?

How to change qooxdoo project name, e.g. from "projectNameA" to "projectNameB"? In generate.py, following commands are available. >>> Available jobs: - api -- create api doc for the current library - api-data -- create api doc json…
Raptor
  • 53,206
  • 45
  • 230
  • 366
0
votes
4 answers

QooxDoo FrontEnd + Python BackEnd ( SimpleXMLRPCServer) problems

I have tried Qooxdoo and I made a simple Python server with SimpleXMLRPCServer, with a Python test I get the data without problems, but can I get this data from Qooxdoo? I get lost, and I've searched for 3 days but didn't get solutions. I try…
Jesús
  • 1
  • 1
0
votes
1 answer

qooxdoo : XMLHttpRequest Origin null is not allowed by Access-Control-Allow-Origin

I have a qooxdoo project that fetches JSON from an online server using the following codes: var url = "http://www.example.com/json.php?q=parameter_here"; var store = new qx.data.store.Json(url,"GET", "text/plain"); store.addListener("changeModel",…
Raptor
  • 53,206
  • 45
  • 230
  • 366
0
votes
1 answer

How to add Qooxdoo qx.ui.mobile.page.Page to Manager

Qooxdoo can add a NavigationPage to the manager: var manager = new qx.ui.mobile.page.Manager(); var page1 = new qx.ui.mobile.page.NavigationPage(); manager.addDetail(page1); Now I want to create a Page instead and add a NavigationBar myself. The…
Niels Steenbeek
  • 4,692
  • 2
  • 41
  • 50
0
votes
2 answers

qooxdoo qx.Desktop : set Grid layout to full screen

Maybe this is a newbie question, how to set grid layout to full screen ? My current code is : var container = new qx.ui.container.Composite().set({ decorator: "main", backgroundColor: "yellow", allowGrowX: false, …
Raptor
  • 53,206
  • 45
  • 230
  • 366
0
votes
1 answer

qooxdoo : Layout of a Menu Strip

In qooxdoo using qx.Desktop, I made a menu strip which looks like this: how to modify the qx.ui.window.Window layout like this ? (I work it out in CSS) Current qooxdoo source: qx.Class.define("my_project.gameui.MainGameMenu", { extend :…
Raptor
  • 53,206
  • 45
  • 230
  • 366
0
votes
0 answers

Oracle YN for Boolean is ambiguous

For a long time I have used the char(1) Y/N method of representing Boolean values in Oracle and it has generally done the job fine. However I am having trouble getting my head around how to implement Booleans safely for my current…
Rob C
  • 1
  • 1
0
votes
2 answers

Break out of a qx.data.Array forEach loop?

Is there a way to break out of the Qooxdoo qx.data.Array forEach loop? For example, myarray.forEach(function(obj){ if(obj.match(/ra/i)){ //break out of the loop } }
Jonathan
  • 894
  • 2
  • 9
  • 20
0
votes
1 answer

Qooxdoo changeBubble not fired after setModel

changeBubble event is not fired after a setModel. After a createModel(true) it works. Is there another way to know something is changed on the form? var page = new…
Niels Steenbeek
  • 4,692
  • 2
  • 41
  • 50
0
votes
1 answer

Change/update a model in runtime

I want to change/update a model in run time which is created with var model = qx.data.marshal.Json.createModel(def.model) . and binding textfields with object controller which is created with this var controller = new…
Baskar.M
  • 561
  • 1
  • 6
  • 25
0
votes
1 answer

createItem for qx.ui.mobile.list.List

qx.ui.mobile.list.List seems not to support the qx.data.controller.List. Is there another way to add a delegate for createItem? I tried to add the create delegation on both classes, but createItem was not invoked.
Niels Steenbeek
  • 4,692
  • 2
  • 41
  • 50
0
votes
1 answer

QooxDoo - Firefox renders Indigo Theme Gradient in 270 degree

have any one faced this problem in firefox with Qooxdoo.. Firefox renders Qooxdoo UI element's gradient in 270 degree angle. Same qooxdoo page in Google Chrome: Is there is any way to fix it??
Baskar.M
  • 561
  • 1
  • 6
  • 25