Re: [qooxdoo-devel] Mixin include behaviour - THE SOLUTION

2007-05-04 Thread Christian Boulanger
OK - I found it out - maybe obvious, but wasn't for me: qx.Class.include() needs to be called BEFORE the class is instantiated for the first time. The problem in my code was that the classes had been used previously. So what I gathered is that the property system of qooxdoo is FUNDAMENTALLY di

Re: [qooxdoo-devel] Mixin include behaviour - Was: Re: Announcing 0.7-alpha2

2007-05-04 Thread Christian Boulanger
Very very strange behaviour: var log= qx.log.Logger.ROOT_LOGGER; log.setMinLevel(qx.log.Logger.LEVEL_ALL); qx.Class.include(qx.ui.basic.Atom,qx.io.databinding.MDataManager); qx.Class.include(qx.ui.basic.Label,qx.io.databinding.MDataManager); qx.C

[qooxdoo-devel] Get listview data os selected item

2007-05-04 Thread Jonis
Hi. How can i get data from selected item on listview (first colum)? i have this code: lv.getPane().addEventListener("dblclick", function(e) { //this.getManager().getSelectedItems() // or alert(this.getManager().getSelectedItem()); }); I ca

Re: [qooxdoo-devel] Mixin include behaviour - Was: Re: Announcing 0.7-alpha2

2007-05-04 Thread Christian Boulanger
Very interesting: qx.Class.include(qx.ui.form.List,qx.io.databinding.MDataManager); qx.Class.include(qx.ui.basic.Label,qx.io.databinding.MDataManager); var li = new qx.ui.form.List; var la = new qx.ui.basic.Label; qx.core.Log.error ("qx.ui.fo

[qooxdoo-devel] Forcing scroll position

2007-05-04 Thread jd102684
I need to be able to take a scrollable widget and force the scroll bar to go back to the top. say I scroll all the way down. There is another widget within the first widget that I click to do something, and upon clicking it I want the outer widget to scroll back up to the top. It seems simple e

Re: [qooxdoo-devel] Mixin include behaviour - Was: Re: Announcing 0.7-alpha2

2007-05-04 Thread Christian Boulanger
Here is something I don't understand: qx.Class.include(qx.ui.form.List,qx.io.databinding.MDataManager); for (var i in qx.ui.form.List) qx.core.Log.error(i + ": " + qx.ui.form.List[i]); I get the following list: $$original: function () { } classname: qx.ui.form.List name: anonymous b

[qooxdoo-devel] Broken hashcode at [EMAIL PROTECTED]

2007-05-04 Thread kanugula
Hello, I am getting the foloowing ereror message after making a build instead of source. Source mode works fine. Environment: qooxdoo-0.7-alpha2, Tomcat,IE6 For simplicity, I generated a test case with sample data. var req = new qx.io.remote.Request("/myWeb/retrieveData", qx.net.Http

Re: [qooxdoo-devel] Mixin include behaviour - Was: Re: Announcing 0.7-alpha2

2007-05-04 Thread Christian Boulanger
Any ideas about this problem? At the moment I am not even getting the first option working, so everything might be a problem of my code. Has anyone else ever combined mixins and inheritance? Thanks, C. Christian Boulanger schrieb: > if I am including the mixin like so: > > qx.Class.inclu

Re: [qooxdoo-devel] 'Error: Could not convert system colors to RGB:

2007-05-04 Thread Christian Boulanger
Reverted to Revision 7652, now things are working again... Christian Boulanger schrieb: > Hello, > > after making the built version of the APIviewer with the current SVN > trunk I get this errror: > > [Exception... "'Error: Could not convert system colors to RGB: > threedface' when calling metho

[qooxdoo-devel] Releasing redundant objects

2007-05-04 Thread Chris Haynes
Hi! A qooxdoo newbie here. I'd like to try having a single HTML page which gets re-used several times with different content (e.g. a multi-page 'wizard'-style sequence of documents with Back - Next buttons and so on). The hope is that the JS would only need to be downloaded and interpreted once

[qooxdoo-devel] 'Error: Could not convert system colors to RGB:

2007-05-04 Thread Christian Boulanger
Hello, after making the built version of the APIviewer with the current SVN trunk I get this errror: [Exception... "'Error: Could not convert system colors to RGB: threedface' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT)" lo

[qooxdoo-devel] Window + Listview issues

2007-05-04 Thread Leonel Togniolli
Hi all, I've been trying out qooxdoo 0.6.6 and I ran into a couple issues that look like bugs. Can anyone help me out here? I created a Window and added a listview inside it. Here's the simplest code I can reproduce the issue on: --8<- var docRoot=qx.ui.core.ClientDocument.getInstance()

Re: [qooxdoo-devel] Property XXX of an instance of YYY is not (yet) ready!

2007-05-04 Thread Sebastian Werner
Yes, correct. Thanks :) An alternative is to configure the property as nullable=true. Sebastian Siarhei Barysiuk schrieb: > I think this problem if you haven't yet initialize property but call get > method. > You should set value of property before or add "init" parameter in property. > > Sia

Re: [qooxdoo-devel] Overflow questions

2007-05-04 Thread Sebastian Werner
Rüdiger Herrmann schrieb: > Sebastian Werner wrote: >> Rüdiger Herrmann schrieb: >>> Hi, >>> >>> the definition of the overflow property in 0.7 (trunk) looks like this: >>> >>> overflow : >>> { >>>check : ["hidden", "auto", "scroll" ,"scrollX", "scrollY"], >>>nullable : tr

Re: [qooxdoo-devel] Property XXX of an instance of YYY is not (yet) ready!

2007-05-04 Thread Siarhei Barysiuk
I think this problem if you haven't yet initialize property but call get method. You should set value of property before or add "init" parameter in property. Siarhei Rüdiger Herrmann wrote: > Hi, > > I ran into this error message while migrating RAP to qooxdoo 0.7. > Can someone explain what it

[qooxdoo-devel] Property XXX of an instance of YYY is not (yet) ready!

2007-05-04 Thread Rüdiger Herrmann
Hi, I ran into this error message while migrating RAP to qooxdoo 0.7. Can someone explain what it is about and how to avoid it? Thanks Rüdiger - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FRE

Re: [qooxdoo-devel] Overflow questions

2007-05-04 Thread Rüdiger Herrmann
Sebastian Werner wrote: > Rüdiger Herrmann schrieb: >> Hi, >> >> the definition of the overflow property in 0.7 (trunk) looks like this: >> >> overflow : >> { >>check : ["hidden", "auto", "scroll" ,"scrollX", "scrollY"], >>nullable : true, >>apply : "_modifyOverflo

[qooxdoo-devel] IM client + taskbar widget

2007-05-04 Thread Okan, Varol
Hey, With Pidgin 2.0 just out, is there a good IM client using QooxDoo that I could use with my project ( http://www.astranos.org ). I am currently working on customization and integration of the most basic apps. I am also open for suggestions. I need a good Cal

Re: [qooxdoo-devel] Overflow questions

2007-05-04 Thread Sebastian Werner
Rüdiger Herrmann schrieb: > Hi, > > the definition of the overflow property in 0.7 (trunk) looks like this: > > overflow : > { >check : ["hidden", "auto", "scroll" ,"scrollX", "scrollY"], >nullable : true, >apply : "_modifyOverflow", >themeable : true, >

Re: [qooxdoo-devel] Proxy settings for building qooxdoo

2007-05-04 Thread Siarhei Barysiuk
It was strange behavior of build process for me if I had this problem (I mean that my build failed when I hadn't internet connection.). What files does wget dowload from internet? Is it translation files? I noticed only .po files. Siarhei dperez wrote: > Hi, > > I'm building qooxdoo trunk, and i

Re: [qooxdoo-devel] qx.ui.menu.Menu and it's width afer locale changing.

2007-05-04 Thread Sergei Kolomiets
> Hello Sergei, > > yes this is a bug in the menu layouter, which is not trivial to fix. > could you open a bug report for this issue in our bugzilla? > > Best Fabian > Hi! I have opened bug in your bugzilla -- View this message in context: http://www.nabble.com/qx.ui.menu.Menu-and-it%27s

Re: [qooxdoo-devel] Quickly testing qooxdoo

2007-05-04 Thread dperez
I answer myself: cd qooxdoo/frontend/applications/sample make dperez wrote: > > Hi, > > I want to test the qooxdoo samples. > > Is there a way of building only the samples (and not the apiviewer and the > rest of applications)?. > In this way I wouldn't have to wait to everything being built

Re: [qooxdoo-devel] Proxy settings for building qooxdoo

2007-05-04 Thread dperez
It fails when downloading the data for the "tr" locale, for the feedreader demo app. dperez wrote: > > Hi, > > I'm building qooxdoo trunk, and it fails, because it hasn't been able to > call wget successfully. > > I have internet connection thru a proxy. How can I setup the connection > sett

Re: [qooxdoo-devel] qx.ui.menu.Menu and it's width afer locale changing.

2007-05-04 Thread Rüdiger Herrmann
Sergei, could you post here when you (if ever) entered a bug? I'm experiencing similar problems. Thanks Rüdiger Sergei Kolomiets wrote: > Hi! > I observed annoying effect after locale changing in qooxdoo 0.6.6: > If menu's items have different width in different locales, after it's > changing,

[qooxdoo-devel] Quickly testing qooxdoo

2007-05-04 Thread dperez
Hi, I want to test the qooxdoo samples. Is there a way of building only the samples (and not the apiviewer and the rest of applications)?. In this way I wouldn't have to wait to everything being built, as this can be a little lengthy. I have tried this in the command line: make and mak

[qooxdoo-devel] Overflow questions

2007-05-04 Thread Rüdiger Herrmann
Hi, the definition of the overflow property in 0.7 (trunk) looks like this: overflow : { check : ["hidden", "auto", "scroll" ,"scrollX", "scrollY"], nullable : true, apply : "_modifyOverflow", themeable : true, init : 0 } 1. Shouldn't the init val

[qooxdoo-devel] Proxy settings for building qooxdoo

2007-05-04 Thread dperez
Hi, I'm building qooxdoo trunk, and it fails, because it hasn't been able to call wget successfully. I have internet connection thru a proxy. How can I setup the connection settings? Thanks for any hint. David -- View this message in context: http://www.nabble.com/Proxy-settings-for-buildin

Re: [qooxdoo-devel] New qooxdoo Application online

2007-05-04 Thread dperez
Here is an interesting article (in German) about your app: http://aktuell.de.selfhtml.org/weblog/gmx-mail-2007 Jens Lautenbacher-3 wrote: > > Hi, > (mostly interesting for german speaking people) > > I just thought that you guys could be interested in the fact that the > new GMX beta webmaile

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Peter Schneider
Hi Jim, you can use "regular" Array objects as well. At least some of the data can be. I've been asking the same question a while ago and did some tests about it... (yes! trial-and-error sometimes works ;) ) The data to be shown in the ListView are Maps with (at least) a "text" key. I'm not 100%

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Jim Hunter
I did want to ask one more thing about the ListView, is there a way to use normal JavaScript arrays with it instead of JSON objects arrays? When I try and use JavaScript arrays I get errors. Thanks, Jim On 5/4/07, Sebastian Werner <[EMAIL PROTECTED]> wrote: Fabian Jakobs schrieb: > Jim Hunter

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Jim Hunter
We are going to move to remote table on the next version of the program. I see the benefits but for the presentation I am doing on Monday I need raw speed. Thanks, Jim On 5/4/07, Dietrich Streifert <[EMAIL PROTECTED]> wrote: Hi Jim, I'm using successfully qx.ui.table with the remote table m

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Dietrich Streifert
Hi Jim, I'm using successfully qx.ui.table with the remote table modell which is able to load huge data in portions on demand. If you have 100 visible rows in your table and a total of ~1 rows only a few hundred of rows are loaded on initialization which speeds things allot up. Jim Hu

Re: [qooxdoo-devel] Label.setWrap() in 0.7 trunk

2007-05-04 Thread Sebastian Werner
No public information yet. This is normally just a small change: Instead of: myLabel.setWrap(true); myLabel.setFont(myFont); do something like myFont.setWrap(true); myLabel.setFont(myFont); Hope this helps. Sebastian Rüdiger Herrmann schrieb: > How would such a font look like? Is there in

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Jim Hunter
I'll give this a try, thanks. Jim - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://source

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Sebastian Werner
Fabian Jakobs schrieb: > Jim Hunter schrieb: >> Thanks but I can't use appearance themes as the code I showed was just >> a test leading into the real code that will change the color of each >> row. Our application changes the color of the rows depending on 'some >> condition' in the row. I have

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Fabian Jakobs
Jim Hunter schrieb: > Thanks but I can't use appearance themes as the code I showed was just > a test leading into the real code that will change the color of each > row. Our application changes the color of the rows depending on 'some > condition' in the row. I have it working fine in Table, bu

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Jim Hunter
Thanks but I can't use appearance themes as the code I showed was just a test leading into the real code that will change the color of each row. Our application changes the color of the rows depending on 'some condition' in the row. I have it working fine in Table, but I am trying to gain some mor

Re: [qooxdoo-devel] ListView help

2007-05-04 Thread Fabian Jakobs
Jim Hunter schrieb: I forgot, this is in qooxdoo .6.6, thanks. This was the critical hint ;-) The issue you are facing the the good old appearance overwrites user value bug in the older qooxdoo releases. This is now fixed in svn and will be solved with the next release but for 0.6.6 you will h

Re: [qooxdoo-devel] qx.ui.menu.Menu and it's width afer locale changing.

2007-05-04 Thread Fabian Jakobs
Sergei Kolomiets schrieb: > Hi! > I observed annoying effect after locale changing in qooxdoo 0.6.6: > If menu's items have different width in different locales, after it's > changing, menu's width doesn't change, but items oversteps the limits of > menu. > > Is it qooxdoo or my bug? > > Thanks >

Re: [qooxdoo-devel] is there a taskbar widget arround?

2007-05-04 Thread Fabian Jakobs
Adnoh schrieb: > hy @all > just wondering if there is a stable widget for handling minimizing of > internal windows? > I've read a post which was over a year old with a contribution. Is there > something official arround !? > > thanks to all devfs for the very great work ! > Hi Adnoh, we don't

Re: [qooxdoo-devel] Experience with 0.7

2007-05-04 Thread Fabian Jakobs
Nick Glencross schrieb: > On 02/05/07, Fabian Jakobs <[EMAIL PROTECTED]> wrote: >> > * GroupBox labels aren't showing, and on investigation it look to be >> > due to a change to >> > a setLegend call in r7498 (should it be ||?) >> > >> Right, its fixed in svn now. > > Brilliant! Thanks! > >>