qooxdoo

qx.ui.table.Table hangs my browser...

Hi all, I have a strange bug. I create a qx.ui.table.Table and if not all specified columns fit into window (horizontal scroll appear) my browsers (firefox 3.5.6 and chrome 5.0.344) hangs. If i just set width for window large (e.g. from 600px to 800px) - all works fine. May be I'm doing something wrong? Or how can I fix/avoid this 'str...

Row rendering in Qooxdoo

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

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 would nice. Gath ...

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, we cut all reference between all objects. This means we cut connection 1 to 5 in the example. Is this really necessary? As far as I have re...

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

How can I disable code optimization during build process?

I want to disable code optimization during build process to make it easy for duggibg. How can I do it? ...

Looking for recommnedation on JavaScript libraries in the leage of ExtJS and Qooxdoo for serious web application.

Hello. I'm looking for a JavaScript library for my web application. The application is very data intensive and has rich form controls (almost windows like). AJAX will be used liberally. The development platform is ASP.Net (mostly ASP.Net MVC will be used). I cannot pursue with ExtJs due to the price/license factor. I checked Qooxdoo but...

Qooxdoo REST JSON request problem - unexpected token and then timeout

Hello! I am learning Qooxdoo framework and I am trying to make it work with a small Django web service. Django webservice just returns JSON data like this: { "name": "Football", "description": "The most popular sport." } Then I use the following code to query that url: var req = new qx.io.remote.Request(url, "GET", "application/json...

rounded corners in Qooxdoo - problems with ImageMagic and PNG

Hi, I want to create a button with rounded corners in Qooxdoo but I'm having some problems. I guess it's a problem with ImageMagick and not my Qooxdoo code, but I'll post it anyway. So in order to create rounded corners I'm following this guide Guide this is what my image.json contains: { "jobs" : { "common" : { "let" ...

Problem with model.set() method

I am facing problems in setting model values containing numeric properties. Here is the example: This code does not work: var modelSkeleton = {id: null, name: null}; var model = rx.data.marshal.Json.createModel(modelSkeleton); var x = {id:22,name:"New name"}; model.set(x); However if I put quotes on id value, it works: var modelSkel...

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 some AJAX/javascript functionality for displaying lists from the database, and cool things like date choosers, auto-completion, etc. It s...

Can I set a rgba color within a color theme

I read in an old qooxdoo note that "qx.util.ColorUtil now accepts rgba values for cssStringToRgb()". This means to me that qoxdoo has the ability to deal with rgba colors in some ways. But none of the ways I tried to set colors in a theme extending qx.theme.modern.Color has been parsed by qoxxdoo : throw new Error("Could not parse col...

using Qooxdoo components without using the whole framework?

Is Qooxdoo only usable if you want to write your entire application with it? I would only like to use the table component. Kind of like Extjs building its own grid component after you register which table element you'd like it to transform. ...

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. builds desktop like web apps 2. offers the ability to also build web apps for smartphones. Which would you choose between these two frameworks...

Does qx.io.remote.RPC support multiple threads

Is qx.io.remote.RPC muti threaded? or it will be a grief to use same object to call multiple services and methods with same object? like: var myRpc = new qx.io.remote.RPC(url, service1); var handler1 = function(..){...}; myRpc.callAsync(handler1, method1); var handler2 = function(..){...}; myRpc.callAsync(handler2, method2); var resu...

Optimized build is giving error

Don't know what did I do wrong but "Optimized build" of my Qooxdoo (1.0.1) application stopped working. Still source build and non-optimized build are working without any trouble. An idea how to find the bug? ...

Want to work in Qooxdoo. Help me..

I am new to Qooxdoo. I downloaded it. After that i do not know the next step. I want to know how to work in it. I went through http://qooxdoo.org/documentation/1.1#getting_started but am not getting it to work. Please can anyone tell me how it should work? What steps should I take? When i execute the create-application.py in cmd, i get ...

what is the next step ??

When I type "python" it displays: ActivePython 2.6.5.14 (ActiveState Software Inc.) based on Python 2.6.5 (r265:79063, Jul 4 2010, 21:05:58) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. This is what I get at the command line: >>> python create-application.py File "<stdin>...

Getting started with Qooxdoo

i downloaded Qooxdoo, then ActivePython and installed it as in this tutorial http://qooxdoo.org/documentation/1.1/helloworld. When I follow the instructions I get the following results: C:\qooxdoo-1.1-sdk\tool\bin\create-application.py --name=custom --out=C: - this command opens a "create-application" wordfile. cd C:\custom inside c:\c...

Generating qooxdoo api and ignore errors

Hi there, is it possible to generate a Qooxdoo API even if not all tags and comments are correct? When i tried generate.py api i got a lot of errors. Can the generator ignore these errors? == edit I compared the Qooxdoo documentation standard with our coding / spket standard docs. Qooxdoo wants the documentation of parameters style...