qooxdoo

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. ...

alignX isn't working?!

Here's my simple code; I'm expecting my atom1 widget (row:0, column:0) to be righ aligned; but can't get it! Any suggestions? var layout = new qx.ui.layout.Grid(); layout.setRowFlex(0, 1); // make row 0 flexible layout.setColumnWidth(1, 200); // set with of column 1 to 200 pixel var container = new qx.ui.container.Composite(layout); thi...

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 create-application.py script to make a new test application and added all the generated files to my version control system. I would like to ...

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 call last): File "/demo/qooxdoo-1.2-sdk/tool/bin/generator.py", line 26, in <module> from generator.Generator import Generator Fil...

Qooxdoo TreeVirtual only returns expanded nodes as dataModel

Hi, when i do a this._tree.getDataModel(); in qooxdoo on a treevirtual, i only get back the expanded nodes. How can i get all nodes in the tree? ...

Including a library or contribution into qooxdoo

I try to use the xqjqplot library within qooxdoo, but i still get a error message during generating with generate-source. Error: Unknown global symbol referenced: qxjqplot.Plot My config.json looks like "libraries" : { "library" : [{ "manifest" : "contrib://qxjqplot/trunk/Manifest.json", "uri" : "../QxJqPlot/t...

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 too then on running very same hello world app takes 8 to 10 minutes to load. Actually i want to make a .Net application and qooxdoo appli...

Problems after Qooxdoo migration to 1.3-pre

I checked out the latest SVN trunk of qooxdoo and now i have the following problems: Some events seems that they are not comming through Virtual Lists are not filled anymore (the _createWidget() method of the extension from qx.ui.virtual.cell.AbstractWidget is not called) My original version was QX 1.0.1-pre and the problems appeared...

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, a tab keypress is intercepted by qooxdoo and focus go to the next qooxdoo control. I need to keep focus inside my Label, let the browser pu...

Get html below mouseclick via qooxdoo

Is threre a possibility to get the clicked link ( -tag) below the mouseclick via qooxdoo or plain JS? Here you can see the problem: within a html-rendered table the link does not work. http://tinyurl.com/374gzwl ...

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 case) and something weird is happening--the button won't click! The hover events seem to be working, and I've determined that qx.event.handler...