[qooxdoo-devel] Something like a hash in perl ? - multidimensional

2010-07-26 Thread jeff
I've taken liberties with some code posted here a couple of weeks ago and modified it to accept any multidimensional hash ( assoc array ) in the spirit of a perl hash. I'm a beginner so any critique is welcomed or it maybe useful to someone else.

Re: [qooxdoo-devel] Something like a hash in perl ? Thanks

2010-07-19 Thread jeff
Thanks to everyone who replied. Was wondering if the class already existed, but with all these great replies it certainly does now ;-) Thanks again. On Mon, 2010-07-19 at 03:49 -0700, MartinWittemann wrote: > Hey Jeff, > id you want to have a associative array, use a plain JavaScript

Re: [qooxdoo-devel] Something like a hash in perl ?

2010-07-19 Thread jeff
ew Array(); //Thats a pain, but i can live with it. Its the other fucntionality ( sorting, existence and deleting) I would like. Was hoping that was built into some other class already. Thanks. Jeff On Sun, 2010-07-18 at 23:22 -0700, MartinWittemann wrote: > Hell Jeff, > Could you please exp

[qooxdoo-devel] Something like a hash in perl ?

2010-07-18 Thread jeff
iterate or retrieve hash keys - ? Thanks for any suggestions or articles you can point me toward. Jeff -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/fir

Re: [qooxdoo-devel] Tiled toolbar

2010-07-13 Thread jeff
Hi, Thanks. Your url didn't work for me, But your code did ! Thanks, exactly what I wanted. Jeff On Tue, 2010-07-13 at 09:33 -0700, sid_curious wrote: > Hi Jeff, > > do you mean something similar with http://tinyurl.com/2ef2obu this ? > > if yes, here is what you need: >

[qooxdoo-devel] Tiled toolbar

2010-07-13 Thread jeff
Can anyone post or point to a simple example of tiling a toolbar ( or any container ) with an image for background. I think it has something to do with deorators but don't see an example in demos. Thanks, Jeff --

Re: [qooxdoo-devel] New qooxdoo app in production: Bibliograph

2010-07-05 Thread jeff
Great stuff. On Mon, 2010-07-05 at 03:01 -0700, panyasan wrote: > Hi everyone, > > The 100% qooxdoo-app "Bibliograph" has gone into production: > > http://quit.rewi.hu-berlin.de/bibliograph/build/ > > I'll update the "Real-life examples" page in the Wiki as soon as I find some > time! > > C.

Re: [qooxdoo-devel] Hopefully Simple Question - Inserting composites into composites

2010-07-04 Thread jeff
Never mind. Found it addBefore & addAfter - very nice. On Sun, 2010-07-04 at 06:43 -0400, jeff wrote: > I have scrollable container to hold other containers in a list. > > Each of the containers in the list holds a set of > identical widgets. Each set of widgets control vari

[qooxdoo-devel] Last newbie question of the day

2010-06-28 Thread jeff
it does not seem to have that effect ? Is there another way ? Thanks. Jeff -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/

Re: [qooxdoo-devel] textarea backgroundColor not filling.

2010-06-28 Thread jeff
Never mind - got it :) var mydecoration = new qx.ui.decoration.Single(1, "solid", "black"); var learningobject = new qx.ui.form.TextArea(). set({ height:70, wrap :true, backgroundColor:'#DD', decorator: mydecoration }); Thanks anyway. Jeff On Mon, 2010-06

Re: [qooxdoo-devel] textarea backgroundColor not filling.

2010-06-28 Thread jeff
Not quite what I wanted - Now the border is gone. I guess I don't understand decorators. Could someone point me to some info on those. The demo on decorators didn't help much as it was fairly sparse. Thanks. Jeff On Mon, 2010-06-28 at 11:42 +0200, Alexander Steitz wrote: > Hi

Re: [qooxdoo-devel] textarea backgroundColor not filling.

2010-06-28 Thread jeff
Excellent. Thanks. On Mon, 2010-06-28 at 11:42 +0200, Alexander Steitz wrote: > Hi Jeff, > > Am 28.06.2010 04:10, schrieb jeff: > > Trying to fill a textarea widget backgroundColor and its leaving a strip > > at the top which not colored correctly - leaving it white. >

[qooxdoo-devel] textarea backgroundColor not filling.

2010-06-27 Thread jeff
:'#DD' }); pane5.add(learningobject, {flex:1}); Thanks Jeff -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint

Re: [qooxdoo-devel] elaborate GUI

2010-06-27 Thread jeff
Took a look at that. I see your point now. On Sun, 2010-06-27 at 18:00 -0400, Kenneth Tilton wrote: > > jeff wrote: > > Thanks for the input. I am going to take a look at using events. > > > > It may not be an widget event that determines which widgets to > > a

Re: [qooxdoo-devel] elaborate GUI

2010-06-27 Thread jeff
this frame work so far :) Jeff On Sun, 2010-06-27 at 15:39 -0400, Kenneth Tilton wrote: > On 06/26/2010 03:00 PM, jeff wrote: > > What I came up with is this: > > > > this.widgets = new Array(); > > ... > > ... > >

Re: [qooxdoo-devel] My next newbie question:

2010-06-27 Thread jeff
Thanks ! On Sun, 2010-06-27 at 08:25 -0400, Derrell Lipman wrote: > On Sun, Jun 27, 2010 at 06:38, jeff wrote: > > How do I get rid of the icons in a virtualtree ? I love the > tree but > want to use without any icons - just keep the arrows. &g

[qooxdoo-devel] My next newbie question:

2010-06-27 Thread jeff
How do I get rid of the icons in a virtualtree ? I love the tree but want to use without any icons - just keep the arrows. Thanks. Jeff -- This SF.net email is sponsored by Sprint What will you do first with EVO

Re: [qooxdoo-devel] elaborate GUI

2010-06-26 Thread jeff
Fritz, Could you post a simple example. Don't think I understand how that would work. Thanks Jeff On Sat, 2010-06-26 at 22:12 +0200, Fritz Zaucker wrote: > You could add event handlers to your widgets an fire a custom event whenever > you want to update them. This way you don

Re: [qooxdoo-devel] elaborate GUI

2010-06-26 Thread jeff
What I came up with is this: this.widgets = new Array(); ... ... var subjectCB = new qx.ui.form.ComboBox(); ... this.widgets['subjectCB']=subjectCB; Seems to work. But is there a better method ? On Sat, 2010-06-26 at 13:37 -

[qooxdoo-devel] elaborate GUI

2010-06-26 Thread jeff
dated on a single event/callback - how to keep them sorted out. Is there an example I could look at anywhere ? Jeff -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone?

[qooxdoo-devel] Make error

2006-10-05 Thread Jeff Lu
I'm getting this error when make in cygwin.  Can someone tell me what I'm missing?  Thank you    * Storing output as build/script/qx.js...   CREATE COPY OF HTML FILES  * Copying files...   CREATION OF DEMO LAYOUT (BUILD

[qooxdoo-devel] Need help on compiling

2006-10-05 Thread Jeff Lu
Hi,   I've installed the required software but I'm still getting this error:   $ makemake[1]: Entering directory `/c/development/qooxdoo/trunk/qooxdoo/frontend/api'/usr/bin/env: python: No such file or directorymake[1]: *** [generate-script-build] Error 127make[1]: Leaving directory `/c/develop

[qooxdoo-devel] Simple TabView not working

2006-05-01 Thread Jeff Konz
Hello all, Thanks for the great tool and all the effort!! I have a much more complex tabset already built, but when it loads, none of the tabs are active. I have tried several permutations around the focus and active settings without luck. So I thought I would create a basic tabview and do furth

[qooxdoo-devel] How to use QxTimer

2006-03-14 Thread Jeff
Hi, Thanks for your work! I want to use such as setTimeout() function to update a QxListView.but it can't work. I tried using QxTimer,and i failed. I don't know how to use the QxTimer class.also i can't find any more example from qooxdoo demo,can you tell me how to use QxTimer or show me a