Tagged Questions
qooxdoo is versatile JavaScript framework to create applications for a wide range of platforms.
10
votes
2answers
293 views
Which JavaScript-framework can search CSS stylesheet rules and edit their properties?
The Question
Which JavaScript framework (prototype, script.aculo.us, Mootools, MochiKit...) has decent CSS rule editing support?
This is about changing a style rule. I want to have a dynamic CSS ...
10
votes
2answers
395 views
What garbage collection algorithms do all 5 major browsers use?
I am currently rethinking the object dispose handling of the qooxdoo JavaScript framework.
Have a look at the following diagram (A is currently in scope):
Let's say we want to delete B. Generally, ...
4
votes
2answers
109 views
Can TextArea widget be resized by mouse at runtime?
I am wondering can qx.ui.form.TextArea be resized by mouse at runtime? just as I can re-height question box in stackoverflow.
4
votes
2answers
894 views
How is something like Sproutcore/Qooxdoo helpful?
I am learning Python and building my first web app. I have been going thru the django tutorials and just beginning to think about how to do the client side. I want it to be web 2.0-ish, and will need ...
4
votes
1answer
423 views
Trouble Getting Data from a Webservice using Qooxdoo
My capstone team has decided to use Qooxdoo as the front end for our project. We're developing apps for OpenFlow controllers using NOX, so we're using the NOX webservices framework. I'm having trouble ...
4
votes
2answers
735 views
Table decoration in Qooxdoo
Is it possible to set the background color of one Row in a Table? I need to highlight a row when a condition applies. Something to the effect of < tr font="...">...< /tr> where I can specify the ...
3
votes
2answers
208 views
Developing with Qooxdoo and multiple developers
I'm interested in Qooxdoo as a possible web development framework. I have downloaded the SDK and installed it in a central location on my PC as I expect to use it on multiple projects. I used the ...
3
votes
3answers
2k views
qooxdoo vs sproutcore?
I am totally confused as too which of these two frameworks to learn. Most of the comparsons are between sproutcore and cappuccino or qooxdoo vs jquery. If the criteria is a JS framework that:
1. ...
3
votes
3answers
562 views
Is qooxdoo a good choice for this use case?
I would like to take a simple web page, and allow non-technie administrators to modify content simply by logging in, browsing to the page that is to be changed, and clicking on text to change things, ...
3
votes
2answers
365 views
Running a qooxdoo Source Version from a Web Server
I'm trying to run the source version of my qooxdoo application from a web server. The application works fine when loaded from the file system but fails to load, when started from a web server.
2
votes
1answer
132 views
Emacs auto-complete for Qooxdoo?
I'm starting a project using Qooxdoo and emacs with js2-mode(great tool btw) but I have a little problem: no auto complete support for the qooxdoo framework classes. Currently I have ...
2
votes
1answer
113 views
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:
...
2
votes
2answers
82 views
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
...
2
votes
1answer
197 views
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 ...
2
votes
1answer
55 views
simple constructor causing error in qooxdoo - new qx.data.controller.Object();
I'm getting errors when using basic qooxdoo objects. I am able to use some things just fine, but I am getting an error when I do:
var controller = new qx.data.controller.Object();
I get an error. ...
2
votes
1answer
57 views
Qooxdoo - available locales not present
The statement
qx.locale.Manager.getInstance().getAvailableLocales()
returns only de if I set LOCALES to "en", "de", or nothing if I set LOCALES in config.json to "en" only.
What am I doing wrong?
2
votes
1answer
210 views
qooxdoo - custom listitem widget selection
I made custom listitem view (based on http://news.qooxdoo.org/tutorial-part-4-2-custom-widgets-4).
I have problem with selection items on this list. There is always selected first element (no matter ...
2
votes
2answers
136 views
Qooxdoo Application load very very slow under VS2008
When i run a Qooxdoo Hello World application directly from file system, it loads in a blink while from IIS its takes few milli secs, but when i load it in a vs2008 project and add sdk in that project ...
2
votes
2answers
125 views
Qooxdoo: Drag a toolbar button to a tree node. is it possible?
I am trying to Drag a toolbar button to a tree node. Is it possible? I have noticed that drag start is never fired. Is there any list of components/classes available that currently allow to be ...
2
votes
1answer
612 views
Is it possible to use Django with Qooxdoo framework?
Guys i would like to use Django as my backend framework and qooxdoo as the frontend framework.
Is it practical to do this?
Has anyone tried to do this?
How did they do it?
Links and pointers ...
2
votes
1answer
116 views
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
2
votes
2answers
232 views
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");
}
...
2
votes
1answer
307 views
Qooxdoo form elements and getSelection()
Here's my code:
var sb = new qx.ui.form.SelectBox();
sb.add( new qx.ui.form.ListItem("English") );
sb.add( new qx.ui.form.ListItem("Nederlands") );
sb.add( new qx.ui.form.ListItem("Deutsch") );
...
2
votes
1answer
146 views
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. ...
2
votes
1answer
195 views
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 ...
2
votes
1answer
141 views
How to disable the browser context menu in qooxdoo?
Is it possible to disable the context menu in qooxdoo?
2
votes
2answers
134 views
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 ...
2
votes
1answer
215 views
How to disable optimization in the qooxdoo build process?
qooxdoo includes some optimizations in its build process which makes it hard to debug "build only" bug. How can I disable the the whole optimizations at once?
1
vote
1answer
25 views
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 ...
1
vote
1answer
64 views
Reading <input type=“file”> in qooxdoo
This code (linke to playground: http://tinyurl.com/6ed9dyv)
var label = new qx.ui.basic.Label('<input type="file" id="files" name="files[]"/>').set({width: 250, rich:true, wrap:true});
var doc ...
1
vote
2answers
82 views
Qooxdoo Table with Remote data and pagnation support
Anyone have an example code on how to work with qooxdoo ? i am qooxdoo newbie here and i just successfully manage to design my UI in Qooxdoo and i do not grasp coding of table and its Remote data ...
1
vote
1answer
113 views
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 ...
1
vote
1answer
63 views
Handle qooxdoo inline widget events in jQuery
I've embedded a qooxdoo widget (the table) within an existing web app using inline integration (http://qooxdoo.org/documentation/0.8/ui_inline).
Is it possible to raise an event in the widget that ...
1
vote
0answers
940 views
Tutorial for RadPHP
While I consider myself as an experience Delphi developer, I am complete newbie to PHP. I wonder if there is any good tutorial for RadPHP XE?
On the Tool Palette there are groups of qooxdoo ...
1
vote
1answer
70 views
Qooxdoo - celleditor problem with selectbox
I've made table with celleditor similar to this:
http://demo.qooxdoo.org/current/demobrowser/#table~Table_Cell_Editor.html
-row 'Status' with selectbox (I need to remember in this selectbox for ...
1
vote
1answer
33 views
Can I use an “include” key in a generator “test” job?
I'm trying to write some test cases for my Qooxdoo application, and I think I need something similar to the "include" key in the "test" job, but it does not seem to be working for me.
The application ...
1
vote
1answer
144 views
QooXDoo example for config.json from manual produce error pretty-print
I take the example from the doc 1.4 for "pretty-print" job key in my config.json.
"jobs" : {
"pretty-print" : {
"general" : { ..... },
"comments" : { ...... },
...
1
vote
3answers
50 views
Lock Mouseclick and curserselection until event in a Tree in Qooxdoo / javascript
Theres a tree list in a class, and its data gets recalculated and rearranged sometimes. And now I want to lock the user input for the time of calculation, so the user can't choose another item ...
1
vote
1answer
97 views
Qooxdoo contrib library is not being included
Qooxdoo seems to be exactly what I want to develop my web app, but I'm running into problems trying to include a contrib library into my project. Can anyone tell me what I'm doing wrong?
Relevant ...
1
vote
2answers
150 views
Access Properties in Javascript
In use of the qooxdoo framework, in a class:
(in the .xml file activeRow is defined as an object_iterate: )
<object_literal name="activeRow" scope="static" constructor="false" ...
1
vote
1answer
102 views
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?
1
vote
1answer
129 views
qooxdoo htmlarea pasteHTML on IE
I'm trying to insert an image into a HTMLarea, it's working OK but on IE, the pasteHTML on qx.bom.htmlarea.manager.Commmand.js:950 is falling by the catch, with no message. If I comment the try catch, ...
1
vote
1answer
46 views
Error: Variantoptimizer: No default case found for (qx.debug:off)
When trying to generate our application with the variant "qx.debug" set to "on" in the config.json I get a lot of errors like this:
Error: Variantoptimizer: No default case found for (qx.debug:off) ...
1
vote
1answer
81 views
Qooxdoo - command shortcut not translating
If I run following code in the playground:
var button1 = new qx.ui.form.Button("First Button", "icon/22/apps/internet-web-browser.png");
var doc = this.getRoot();
doc.add(button1, { left : 100, top ...
1
vote
1answer
1k views
XMLHttpRequest cross-origin resource sharing (qooxdoo and tomcat)
I have a Java REST webservice deployed on tomcat (http://localhost:8080/myrestfulapp/aservice/).
In my qooxdoo app, I try to send a POST request using qx.io.remote.Request.
I built the application ...
1
vote
3answers
214 views
Mixing QooXDoo and jqgrid
I am trying to mix QooXDoo and jquery , jqGrid but i am just a qxd beginner ( i just downloaded yesterday) . as jqGrid is way more powerful , featureful than qxd's Table , i want to use it , plus ...
1
vote
3answers
104 views
qx.ui.form.Spinner.setValue() question
I got a qx.ui.form.Spinner object and I am setting the initial value from an XML file. The value is unfortunately returned as a string, which leads to the following confusing error in Firebug:
Error ...
1
vote
1answer
453 views
qx.ui.root.Inline in an OpenLayers popup contentDiv => button won't click!
I'm working on a project that integrates OpenLayers and Qooxdoo...so far I'm having lots of success. But now I want to be able to place qooxdoo widgets in an OpenLayers popup (FramedCloud in this ...
1
vote
1answer
122 views
qooxdoo tab problem
Hi:
I've add html inputs and selects to a rich qx.ui.basic.Label. I`ve added correctly event handlers to these html controls. My problem comes with tab events.
When I'm inside the html form controls, ...
1
vote
3answers
121 views
qooxdoo and debian lenny
Hy,
Trying to use qooxdoo with debian lenny.
qooxdoo sdk 1.2
create-application.py ok but I've got a problem with generate.py :
/demo/qooxdoo/hello1$ ./generate.py source-all
Traceback (most recent ...