Re: [qooxdoo-devel] Table Data

2006-10-11 Thread Alex D.
I also don't know why the backend-folder isn't in the zip files that you can download from qooxdoo-site. Anyway you will have to check-out current qooxdoo version from SVN. How? Just read "Obtaining from repository" here: http://qooxdoo.org/documentation/user_manual/requirements. Than you will

Re: [qooxdoo-devel] Table Data

2006-10-11 Thread John Comerford
Thanks for the reply, Apologies if these are dumb questions. I am writing my backend in PHP.  I don't have/can't find a backend folder.  I have installed both the build and SDK and neither has a backend directory.  Should I have this ?  Do you know where I can download it ? I was hoping

[qooxdoo-devel] Table column widths - flex last column

2006-10-11 Thread Derrell . Lipman
Hi all (and especially Til), I've been unable to locate in the Table implementation, a way to have a table with two columns, the first column having a fixed width, and the second column taking the *remainder* of the width of the table. Alternatively, if I could provide width percentages for colum

[qooxdoo-devel] qooxdoo in Samba

2006-10-11 Thread Derrell . Lipman
Hi all, I've been kind of quiet here recently. My silence has not been entirely non-qooxdoo related, however. I have implemented a qooxdoo JSON-RPC server in samba4, the development branch of Samba. Samba4 has an embedded web server and embedded javascript engine. The JSON-RPC server is writte

[qooxdoo-devel] QooxDoo and Gradients

2006-10-11 Thread John Comerford
Hi Folks, I am pretty new to Qooxdoo so excuse me if this is a dumb question. Is it possible to make qooxdoo widgets use gradient colours ? What I would like to do is have things like buttons, toolbars etc. have gradient backgrounds (see attached image for an example)? If it is possible co

Re: [qooxdoo-devel] Noob error msg trying to make skeleton

2006-10-11 Thread Sebastian Werner
Hi! I've never had such a problem. Please double check if there you correctly have configured the folder to the qooxdoo folder. It seems so, because the generator.py seems to get executed. But is there also the frontend/framework/tool/generator/modules/config.py file? What version of python do

Re: [qooxdoo-devel] Variableoptimizer and global scope

2006-10-11 Thread Sebastian Werner
Howdy Alessandro! It seems you was right. I've corrected the part and recovered it to copy the lists. So hopefully this is OK now. Finally :) Thank you for your help. Cheers, Sebastian Alessandro Sala schrieb: > Hi Sebastian, >> >> After applied your patch, I've however detected that this do

[qooxdoo-devel] Noob error msg trying to make skeleton

2006-10-11 Thread Chris Banford
Hi gang, I've succeeded in building qooxdoo from the sdk (was easy, once I'd downloaded the correct version!), but am now stuck with making the skeleton example 1. I've updated the Makefile as per the online docs to point to the qooxdoo sdk folder. I'm getting an 'ImportError: No module named

Re: [qooxdoo-devel] Table Data

2006-10-11 Thread Alex D.
1) 2) You fill your table with the data, by pushing it in the "table-array". Very simple. Just take a look at the table-examples in the demo-folder. The easiest way to get your data from the server is to use the qooxdoo-backend(php or java). Server can send the data as string, integer, array, o

[qooxdoo-devel] Table Data

2006-10-11 Thread JohnC
Hi Folks, I am new to using qooxdoo (and no javascript expert either), I have put together a page with a table on it. Now I want to fill the table with data. My data will be coming from an Ajax call ? My question is what is the easiest way of doing this ? 1) Can I populate the table direct

Re: [qooxdoo-devel] How can I add an double click event listener to a qx.ui.table.Table?

2006-10-11 Thread Dietrich Streifert
My fault. It works like expected with the method mentioned. Sorry for the traffic. Dietrich Streifert schrieb: > Hello List! > > I want to detect if the user has double clicked a row in the table. I > followed the suggestion where the event listener should be attached to > the scrollers: > >

[qooxdoo-devel] How can I add an double click event listener to a qx.ui.table.Table?

2006-10-11 Thread Dietrich Streifert
Hello List! I want to detect if the user has double clicked a row in the table. I followed the suggestion where the event listener should be attached to the scrollers: var scrollers = table._getPaneScrollerArr(); for (var i = 0; i < scrollers.length; i++) { scrollers[i].addEventLi

Re: [qooxdoo-devel] qooxdoo and firefox extension

2006-10-11 Thread Andreas Ecker
Hi, James, I would suggest you start with a smaller qx.js (or even a non-qooxdoo JS in case you haven't tried yet). You seem to know how to generate a "source" or "build" version of qooxdoo? Please make sure you have read the following docs for generating (custom) builds: http://qooxdoo.org/docum

Re: [qooxdoo-devel] style.cursor ?

2006-10-11 Thread Alex D.
>> Thx Sebastian, >> >> that's indeed even better. BUT! I thought it's not possible to click >> a button with a "wait" cursor - well, it is. And that's the point. I >> want to forbid any button clicks to user in some cases. Is there any >> elegant way to do this(like with the "wait" cursor)? >

Re: [qooxdoo-devel] style.cursor ?

2006-10-11 Thread Til Schneider
Jim Hunter schrieb: > The cursor has no control over events, it's simply a visual thing like > setting the color of the background. If you really want to block all > clicks, check the archives as there was a post on how to overlay a > single panel on top of your application that would intercept