Re: [qooxdoo-devel] Advanced data binding on arrays

2010-01-17 Thread MartinWittemann
Hello Jean-Noël, Jean-Noël Rivasseau wrote: > > 1) First is it possible to set a data binding from an array to another, so > that the arrays always contain the same items (Eg, the data binding > applies > to the content of the arrays, not necessarily the property). > Ne, we don't have such a f

Re: [qooxdoo-devel] Advice for migration large legacy project

2010-01-17 Thread Fritz Zaucker
Hi Simon, you do realize that Qx 1.0 is out? As its relatively close to the 0.8 line, I'd recommend to migrate to 1.0. I assume that you used the Qx migration script? Most likely that the best you can do for automating the process. I'd assume that of the >1,000 lines of qx.legacy in your code a l

[qooxdoo-devel] Advice for migration large legacy project

2010-01-17 Thread waysoftheearth
Hello List, I am looking at migrating a reasonably large project up to Qx 0.8. In a development sandbox we have migrated 435 js source files from 0.6 to 0.7. Given that took several weeks of effort (and still requires polish), the migration from 0.7 to 0.8 looks daunting. There are well over

[qooxdoo-devel] Application testing

2010-01-17 Thread mck89
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, but i need to do tests inside my application environment. I followed these steps: * Created the application * Compiled the source version with "g

[qooxdoo-devel] Get/Set value from/to selectbox (qooxdoo 1.0)

2010-01-17 Thread Martin_GER
hi, what is the easiest way to get/set a value from/to a selectbox. I have create a simple example. I want the first button to get the selected value and with the second button to set the value 'number 109'. I use qooxdoo 1.0. Can someone help me? Thanks! Application.js: /* #asset(testselect/*

[qooxdoo-devel] using Request with mod_wsgi

2010-01-17 Thread daemonk
I am using apache2 with mod_wsgi for running my python scripts. I wrote a simple python script (test.wsgi) that'll just output a string: def application(environ, start_response): status = '200 OK' output = 'MY OUTPUT TEST' response_headers = [('Content-type', 'text/plain'),

[qooxdoo-devel] login/authentication request

2010-01-17 Thread mckwil
Hello, I'm trying to figure out how to make a login / authentication request to a Java RPC backend. Since I'm planning to create a stateless server, I'm planning to include the username/password as part of each request. I'm hoping to achieve this by sending a seperate HTTP header in each request

Re: [qooxdoo-devel] Key listeners

2010-01-17 Thread Jean-Noël Rivasseau
Yes, but it's not very convenient - in other situations I would have maybe ten widgets which should listen to keypress. Widgets like Checkboxes too - can those listen to keypress events? On Sun, Jan 17, 2010 at 4:58 PM, Derrell Lipman < derrell.lip...@unwireduniverse.com> wrote: > On Sun, Jan 17,

Re: [qooxdoo-devel] Key listeners

2010-01-17 Thread Derrell Lipman
On Sun, Jan 17, 2010 at 17:03, Jean-Noël Rivasseau wrote: > Hello > > I would like to know if the key events are always considered "global" or > could be somehow attached to widgets. My problem is the following: I have a > login dialog. I would like the Enter key to submit the login but only if th

[qooxdoo-devel] Key listeners

2010-01-17 Thread Jean-Noël Rivasseau
Hello I would like to know if the key events are always considered "global" or could be somehow attached to widgets. My problem is the following: I have a login dialog. I would like the Enter key to submit the login but only if the focus is on the second text field (the password field). I could d

[qooxdoo-devel] Error in App

2010-01-17 Thread Andrew Thomas
I am doing a tutorial to get myself acclimated with qooxdoo howeve I keep getting this error object doesn't support this project or method Here is the code where i am getting the error switch(this.operator.getValue()) { case "add": r = v1+v2; break; case "subtract

[qooxdoo-devel] Advanced data binding on arrays

2010-01-17 Thread Jean-Noël Rivasseau
Hi, I got a few questions: 1) First is it possible to set a data binding from an array to another, so that the arrays always contain the same items (Eg, the data binding applies to the content of the arrays, not necessarily the property). 2) This is my actual question. I want to setup a SelectBo

Re: [qooxdoo-devel] Table constructor tableColumnModel option

2010-01-17 Thread Derrell Lipman
On Sun, Jan 17, 2010 at 04:54, Mikael Hakman wrote: > In my understanding, both following expressions should be equivalent: > > func1 = qx.ui.table.columnmodel.Resize > > and > > func2 = function(obj) {return (new qx.ui.table.columnmodel.Resize(obj));} > Ok, then let's alter your understanding

[qooxdoo-devel] "Unknown global symbol referenced" despite #ignore()

2010-01-17 Thread panyasan
In the cometd contribution, the cometd.Client class contains the following compiler hints: #ignore(dojo) #ignore(dojo.*) #ignore(org.cometd) #ignore(org.cometd.*) However, the generator will warn - ! Unknown global symbol referenced: TypeError (qx.lang.JsonImpl:159) - ! Unknown global symb

Re: [qooxdoo-devel] Table constructor tableColumnModel option

2010-01-17 Thread Mikael Hakman
On 17 Jan 2010 02:54, Derrell Lipman wrote: > On Sat, Jan 16, 2010 at 15:05, Mikael Hakman wrote: >> Hello, >> >> The following code gives "Please initialize 'qx.ui.table.columnmodel.Resize' >> objects using the new keyword!" error: >> >> this.table = new qx.ui.table.Table (model ,{tableColumnM

Re: [qooxdoo-devel] Table constructor tableColumnModel option

2010-01-17 Thread Tobias Oetiker
Today Tobias Oetiker wrote: > Hi Mikael, > > > Yesterday Mikael Hakman wrote: > > > Hello, > > > > The following code gives "Please initialize 'qx.ui.table.columnmodel.Resize' > > objects using the new keyword!" error: > > > > this.table = new qx.ui.table.Table (model ,{tableColumnModel : > > qx.u