[qooxdoo-devel] Darcs Advice

2009-06-22 Thread aditya siram
Hi all, I recently got myself into a pickle because I used darcs on my Qooxdoo project because it choked on the number of files (~ 19000). Patch recording basically killed my machine's CPU. Is anyone else using darcs with Qooxdoo? -deech -

Re: [qooxdoo-devel] Opacity property and children widget

2009-06-22 Thread Jean-Noël Rivasseau
OK thanks for letting me know. However when I use the MBlocker things work "automatically". Do you use the same technique then? Jean-Noel On Mon, Jun 22, 2009 at 8:15 PM, Matthew Gregory < matthew+qoox...@nogsnet.com > wrote: > Yup, that's how it works. The only way to get what you want is to h

Re: [qooxdoo-devel] Opacity property and children widget

2009-06-22 Thread Matthew Gregory
Yup, that's how it works. The only way to get what you want is to have a container without a background, then add all you children and a widget with a background and opacity to the parent container. HTH, Matt Jean-Noël Rivasseau wrote: > Hi, > > If I apply an opacity of 0.5 to a container widg

Re: [qooxdoo-devel] access to a class in other file

2009-06-22 Thread thron7
Hi Martin, > is it possible to call a class (in qooxdoo files in other folder) in other > file and see the variables with values? > The class where I am was in the same folder, but in other file. > Sorry, I'm not getting it. You want to call a class? Do you want to call a static method on a

[qooxdoo-devel] Opacity property and children widget

2009-06-22 Thread Jean-Noël Rivasseau
Hi, If I apply an opacity of 0.5 to a container widget containing children, the children also have a 0.5 opacity. This is problematic, because for example I may want a semi transparent background on a container, but a full opacity for its children. How would you solve this problem in Qooxdoo ? (I

[qooxdoo-devel] access to a class in other file

2009-06-22 Thread Martin_GER
hi, is it possible to call a class (in qooxdoo files in other folder) in other file and see the variables with values? The class where I am was in the same folder, but in other file. Can someone help me. Thanks, Martin -- View this message in context: http://n2.nabble.com/access-to-a-class-

[qooxdoo-devel] Automatically resize a qx.ui.form.List according to the number of contained items

2009-06-22 Thread Jean-Noël Rivasseau
Hi, Pretty much everything is in the title: I have a qx.ui.form.List which is a acting as a selector. I put a number of entries in it, and I would like the box's height to be automatically computed. Currently it seems it chooses a default height. Manually calling setHeight() works, but is not conv

Re: [qooxdoo-devel] Equivalent to Prototype's down() method?

2009-06-22 Thread Jean-Noël Rivasseau
Hi > > > > var myDomElement; > > qx.bom.Collection.query(".MyTargetClass",myDomElement)[0]; > You don't have to provide the second parameter. This will set the start of > the > query. If you want to query the whole document just remove it. That's the point, I want to query from the element base

Re: [qooxdoo-devel] Equivalent to Prototype's down() method?

2009-06-22 Thread Alexander Back
Hi Jean-Noel, On Monday 22 June 2009 Jean-Noël Rivasseau wrote: > I have a DOM element, and wish to find its first descendant with a given > class. > > Will the following work? > > var myDomElement; > qx.bom.Collection.query(".MyTargetClass",myDomElement)[0]; You don't have to provide the second p

Re: [qooxdoo-devel] Has Anyone Worked on an Oracle PL/SQL RPC Server

2009-06-22 Thread Gene Amtower
On Mon, 2009-06-22 at 07:18 -0700, Helder Magalhães wrote: > Hi Gene, > > > > Gene Amtower wrote: > > > > I will need to insure that a nocache parameter > > is specified in the Oracle RPC procedure being called, and it should > > process the requests as expected. That's a good point that I mi

[qooxdoo-devel] Equivalent to Prototype's down() method?

2009-06-22 Thread Jean-Noël Rivasseau
Hi, I have a DOM element, and wish to find its first descendant with a given class. Will the following work? var myDomElement; qx.bom.Collection.query(".MyTargetClass",myDomElement)[0]; Eg does the [0] guarantees that in the following case: the first is returned, not the inner

[qooxdoo-devel] Selecting multiple cells in a table

2009-06-22 Thread monika.falk
Hi All Is there a possibility to implement selection of multiple cells in a table? (The cells would be in different rows). If so could you please give me some ideas? S pozdravem / Best regards, Monika Falk, Software Specialist

Re: [qooxdoo-devel] Has Anyone Worked on an Oracle PL/SQL RPC Server

2009-06-22 Thread Helder Magalhães
Hi Gene, Gene Amtower wrote: > > I will need to insure that a nocache parameter > is specified in the Oracle RPC procedure being called, and it should > process the requests as expected. That's a good point that I might have > overlooked at first, so I appreciate the heads-up on it. > > Is t

Re: [qooxdoo-devel] Has Anyone Worked on an Oracle PL/SQL RPC Server

2009-06-22 Thread Gene Amtower
On Mon, 2009-06-22 at 10:33 +0300, Burak Arslan wrote: > Gene Amtower wrote: > > > > > Thanks for the encouragement - at least I hope you're not suggesting > > by your comment that I should be discouraged. > > > > > no no not at all. i just can't find a proper way of saying "bon > courage" i

Re: [qooxdoo-devel] Has Anyone Worked on an Oracle PL/SQL RPC Server

2009-06-22 Thread Gene Amtower
Helder, I checked the supplied links in your post. I think you're referring to the existence of the "nocache" parameter in the GET and POST requests from Qooxdoo. In Oracle terms, if this parameter is not specified in the Oracle RPC procedure, the database will report an error on receipt of th

Re: [qooxdoo-devel] Databinding: TypeError: target["reset" + qx.lang.String.firstUp(lastProperty)] is not a function

2009-06-22 Thread Martin Wittemann
Hi Christian, with the new description I could write a test and reproduce the bug you described. But it worked with a textfield without any problems. The textfield handles the null as "" and so the reset has never been called. But as you can see in the test I committed in revision 19389, t

Re: [qooxdoo-devel] Databinding: TypeError: target["reset" + qx.lang.String.firstUp(lastProperty)] is not a function

2009-06-22 Thread Martin Wittemann
Hello Christian, now its much clearer what you try to achieve. Thanks for the details on it. :) I'll try to write a test for exactly your secenario and check if i can reproduce the "reser" error you described. Looks like a bug in the single value binding now. I'll get back to you as soon as

Re: [qooxdoo-devel] how to generate the js file with only the compiled class files?

2009-06-22 Thread thron7
Matthew Gregory wrote: > Thomas, > I thought the loader was stored as a template that gets code injected > into it Yes, that's how it is implemented. > and it was possible to specifiy your own template. Has this > functionality been removed or I am getting confised with something else? >

Re: [qooxdoo-devel] Has Anyone Worked on an Oracle PL/SQL RPC Server

2009-06-22 Thread Helder Magalhães
Hi Gene, Gene Amtower wrote: > > Am I missing any critical issues in my thought process? > Not critical, but I've experienced a weird (server-side) behavior with GET/POST mess up which I only found in http://download.oracle.com/docs/cd/B32110_01/web.1013/b28963/concept.htm#i1005684 Oracle d

Re: [qooxdoo-devel] Aptana IDE does not support QOOXDOO

2009-06-22 Thread Matthew Gregory
Further to Jim's comment, you can also install Spket as a plugin for Aptana. I personally use Aptana alone and keep the API handy and find that best for me whilst a couple of my collegues use Aptana with the Spket plugin and prefer that. It is all personal preference at the end of the day. Matt

Re: [qooxdoo-devel] how to generate the js file with only the compiled class files?

2009-06-22 Thread Matthew Gregory
Thomas, I thought the loader was stored as a template that gets code injected into it and it was possible to specifiy your own template. Has this functionality been removed or I am getting confised with something else? Thanks, Matt thron7 wrote: > Hi Timo! > > Timo Kiefer wrote: >> Hi, >> >> i

Re: [qooxdoo-devel] how to generate the js file with only the compiled class files?

2009-06-22 Thread thron7
Hi Timo! Timo Kiefer wrote: > Hi, > > i want to create a build job that generate me the js file with only the > compiled class files? > is this possible with the current generator 0.8.2? > Mh, I presume when you say "only the compiled class files" you mean without loader and globals code?! I

Re: [qooxdoo-devel] Has Anyone Worked on an Oracle PL/SQL RPC Server

2009-06-22 Thread Burak Arslan
Gene Amtower wrote: Thanks for the encouragement - at least I hope you're not suggesting by your comment that I should be discouraged. no no not at all. i just can't find a proper way of saying "bon courage" in english. > > Oracle can support reading and writing of XML strings, so it wo