qooxdoo is versatile JavaScript framework to create applications for a wide range of platforms.
0
votes
0answers
5 views
JsonToTree example from QooXdoo 2.1 demo not working in playground
I am trying to get the JsonToTree example working, however it does not work in the playground: http://tinyurl.com/b92lkn9 and it does not work when done locally on my system.
Interestingly, the ...
0
votes
1answer
19 views
How to add a DateField to a mobile.form.Form or mobile.dialog.Dialog?
Can someone please tell me how to add a DateField to a mobile Dialog or to a mobile Form.
Or, frankly, to any other mobile ui class.
I've tried to add a DateField to a mobile.form.Form and ...
0
votes
2answers
20 views
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 ...
1
vote
1answer
12 views
qooxdoo : Rotate Button along its center
I have a qx.ui.form.Button. I would like it to rotate 180 degree ( i.e. upside down ) along its center when I click the button. (I'm working on qx.Desktop )
var btn = new qx.ui.form.Button(null, ...
0
votes
1answer
12 views
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 ...
-1
votes
0answers
19 views
qx.ui.form.list RPC query and Local error 2: Aborted db
I have a sqlite db with one table containing the following columns:
day, week, init, end, task_time, customer, task, job
I make a db navigator with qooxdoo
time_recording.png
in the video can ...
0
votes
2answers
29 views
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" :
{
...
0
votes
2answers
16 views
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 ...
-2
votes
1answer
36 views
How do I place a label on the DateField
I want to place a label on the left of the date in the DateField.
Exactly like in the qooxdoo demo.
This is my code:
var dateField = new qx.ui.form.DateField();
this.getRoot().add(dateField, {top: ...
1
vote
1answer
14 views
How to use DateField in Qooxdoo
I want to use the DateField from qooxdoo. I have a lot of trouble.
I downloaded the Qooxdoo desktop sdk that contains the UI package.
I followed the instruction and successfully got the first "demo" ...
1
vote
1answer
19 views
Difference between members & properties?
I have a qooxdoo class , which parent class is qx.core.Object .
qx.Class.define("qx.model.MyClass",
{
extend : qx.core.Object,
construct : function() {
},
statics : {
},
members : {
...
1
vote
1answer
19 views
QooxDoo Contrib confusion
We are working towards a PC based software client for our industrial control module box and we are using QooxDoo for the UI.
I wish to use the qxe package for the StatusBar widget it provides. ...
2
votes
1answer
31 views
whats the difference between the min and the regular file and which one should i use?
whats the difference between the normal and the min qoodoo js file?
Which file should I use to write some js for my web browser?
Thanks
1
vote
1answer
14 views
How to align an image in Qooxdoo?
I'm currently creating a new Qooxdoo application, and have setup a layout similar to the Feedreader demo, with a banner image across the top (logo etc). I've had no problem adding the image into the ...
0
votes
3answers
82 views
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 ...
0
votes
1answer
101 views
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", ...
1
vote
1answer
12 views
Generator job failing on object property default
I have an OpenLayers object that I'm trying to change that has the name default as one of it's properties. The Qooxdoo generator script does not like this. Is there a way to ignore this error?
I ...
1
vote
1answer
21 views
qooxdoo : How to disable resize of qx.ui.window.Window?
I have a class that extends qx.ui.window.Window .
I managed to show it to screen by the following codes:
this.__panel = new my_project.MyPanel();
this.__panel.center();
// then I open it through a ...
0
votes
1answer
22 views
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 ...
1
vote
1answer
29 views
qooxdoo : add a toolbar to Grid layout?
How to add a toolbar to Grid layout ?
var container = new qx.ui.container.Composite();
var layout = new qx.ui.layout.Grid(2,2);
container.setLayout(layout);
var w1 = new qx.ui.core.Widget();
var ...
0
votes
2answers
30 views
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",
...
0
votes
1answer
42 views
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:
...
0
votes
0answers
59 views
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 ...
0
votes
1answer
16 views
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
}
}
1
vote
1answer
34 views
Qooxdoo - Does calling getInstance() multiple times cause a memory leak?
I have a application that updates every X min. In the update routine, it calls multiple qx classes that are singletons with the getInstance() method. Is that something that would be causing a slow ...
0
votes
1answer
22 views
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 qx.ui.mobile.page.NavigationPage();
...
0
votes
1answer
48 views
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
...
0
votes
1answer
58 views
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 ...
0
votes
1answer
40 views
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??
0
votes
1answer
42 views
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?
0
votes
1answer
101 views
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 ...
0
votes
1answer
38 views
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:
/* ...
0
votes
1answer
35 views
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) {
...
1
vote
1answer
33 views
How to you make a JsonP request through a proxy?
Hello I would like the URL argument to qx.data.store.JsonP to resolve through an HTTP proxy.
Is this possible?
0
votes
1answer
47 views
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 ...
0
votes
1answer
26 views
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 ...
0
votes
0answers
34 views
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 ...
1
vote
1answer
109 views
Text overflow not working in box display with horizontal box-orient
I am using the box display, but I cannot get my text to properly render an ellipsis. Right now the text is just overflowing past the containing element.
HTML:
<div class="outer hbox">
...
0
votes
1answer
45 views
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 ...
0
votes
1answer
61 views
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 ...
1
vote
1answer
33 views
qx.ui.embed.Html scale to content
Is there a way to have the container containing an html widget (qx.ui.embed.Html) scale to the proper size so it doesn't cut off some of the Html?
Here's a playground example:
...
0
votes
1answer
94 views
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 ...
2
votes
1answer
53 views
Fields are as static fields in gooxdoo library
I'd like to use qx-oo (Qooxdoo) as OOP library. But I was confused by strange behaviour of field members. It's looks like that fields are shared between all objects of one class, like static members. ...
0
votes
1answer
62 views
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 ...
1
vote
2answers
59 views
QooxDoo: Dialog contrib Error
I am doing RIA application with QooXDoo, I want to use Dialog like windows to prompt & notify the user.
I have used dialog contrib from qooxdoo. But i got following error when i am trying to run
...
0
votes
1answer
61 views
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 ...
0
votes
1answer
96 views
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 ...
1
vote
1answer
70 views
Qooxdoo - ignore a global variable from the config.json file
Can you ignore a global variable such as OpenLayers from the config.json file?
I've been having to do this at the top of every class file:
/**
* @ignore(OpenLayers)
*/
I also tried this:
"lint" :
...
2
votes
1answer
35 views
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 ...
0
votes
0answers
35 views
How can I get the selectedListItems in a list (qx.ui.form.List) with qooxdoo?
I have mostly fixed this issue - my problem was that thethis.LIST was being recreated each time that the editButton was called, and so it would always have the first item selected by default. By ...
