[qooxdoo-devel] QxNativeWindow

2005-11-09 Thread o . vogel
Hello List. This question is not a "real" qooxdoo-question - i know. But maybe anybody can help me. i'd like to open a new browser-Window WITHOUT a statusbar. But this will not work, because IE (and FireFox) will ALWAYS show the statusbar (in lower Versions of IE it will work). Can anybody tell

Re: [qooxdoo-devel] Re: Question about QxDockLayout

2005-11-09 Thread Sebastian Werner
Andy Burnett schrieb: Sebastian Werner sebastian-werner.net> writes: If you use the HEAD (or any release) this is not be possible. In RENDERER (the upcoming 0.2) this feature was added. Thanks, does it do it automatically, i.e. the first QxWidget to be added will have all the space, or do

[qooxdoo-devel] Re: Question about QxDockLayout

2005-11-09 Thread Andy Burnett
Sebastian Werner sebastian-werner.net> writes: > > If you use the HEAD (or any release) this is not be possible. In > RENDERER (the upcoming 0.2) this feature was added. > Thanks, does it do it automatically, i.e. the first QxWidget to be added will have all the space, or does it require a dif

Re: [qooxdoo-devel] Question about QxDockLayout

2005-11-09 Thread Sebastian Werner
Andy Burnett schrieb: I am trying to build a really simple demo. Just three QxWidgets; one top to bottom on the left side, one across the top and one more in the middle. I am using the QxDockLayout. The code so far is: var dl = new QxDockLayout; dl.setEdge(0, 0, 0, 0); var l1 =

[qooxdoo-devel] Question about QxDockLayout

2005-11-09 Thread Andy Burnett
I am trying to build a really simple demo. Just three QxWidgets; one top to bottom on the left side, one across the top and one more in the middle. I am using the QxDockLayout. The code so far is: var dl = new QxDockLayout; dl.setEdge(0, 0, 0, 0); var l1 = new QxWidget; l1.se

Re: [qooxdoo-devel] Quick hello to the list

2005-11-09 Thread Sebastian Werner
Chris Banford schrieb: Hi list, Just stumbled across the Qooxdoo project today, was properly impressed, have joined the mailing list & wanted to say a quick hello! 8-) welcome Chris :) Cheers, -Chris Chris Banford [EMAIL PROTECTED] bSoftware

[qooxdoo-devel] Quick hello to the list

2005-11-09 Thread Chris Banford
Hi list, Just stumbled across the Qooxdoo project today, was properly impressed, have joined the mailing list & wanted to say a quick hello! 8-) Cheers, -Chris Chris Banford [EMAIL PROTECTED] bSoftware www.bsoft.ch 078 609.20.34 Skype: zermattchris Zermatt, Switzerlan

Re: [qooxdoo-devel] Adding "user defined" properties to widgets (xpath expression)?

2005-11-09 Thread Dietrich Streifert
Yes! This is what I searched for. Thank you. I think I had not thought about this solution because I'm to close to the java and c++ world where you are not able to overwrite a method of an existing class. You have to derive from this class and then you can overwrite a method. Thank you again

Re: [qooxdoo-devel] Learning Qooxdoo Blog

2005-11-09 Thread Sebastian Werner
Andy Burnett schrieb: Hi, I have started a little blog about my experiences of trying to learning qooxdoo. The key thing to note is that I have limited javascript skills and know nothing about *nix, python etc. So this blog will really reflect a beginners perspective. The reason I am writin

Re: [qooxdoo-devel] Adding "user defined" properties to widgets (xpath expression)?

2005-11-09 Thread Fred McDavid
You can use addProperty to do this. Just after you include qooxdoo js, add: /* this gives you getXpath() and setXpath(blah) as methods in all descendants of QxWidget */ QxWidget.addProperty({ name: "xpath", type : String, defaultValue : ' }); function XmlMapper() { QxObject.call(this); } Qx

[qooxdoo-devel] Learning Qooxdoo Blog

2005-11-09 Thread Andy Burnett
Hi, I have started a little blog about my experiences of trying to learning qooxdoo. The key thing to note is that I have limited javascript skills and know nothing about *nix, python etc. So this blog will really reflect a beginners perspective. The reason I am writing it, is that it may help

[qooxdoo-devel] browser independant creation of xml dom?

2005-11-09 Thread Dietrich Streifert
Hello! Is there a browser independant xml dom creation in qooxdoo? Something like: proto.createXmlDom = function() { var xmlDom; if (document.implementation && document.implementation.createDocument) return document.implementation.createDocument("", "", null); else if (window

[qooxdoo-devel] Re: Getting a build of Qooxdoo

2005-11-09 Thread Andy Burnett
Sebastian Werner sebastian-werner.net> writes: > > We have discussed here, if it would be a good idea to release > pre-release packages of our current work in 0.2. Are you interested in > such a thing? > I would be very happy to experiment with pre-release software, that is no problem at al

AW: AW: AW: [qooxdoo-devel] Re: Getting a build of Qooxdoo

2005-11-09 Thread Oliver Vogel
Sorry - my mistake! Thank you for the answer - so i have to wait for the release Olli == Diplom-Informatiker Oliver Vogel Geschaeftsfuehrer Meins und Vogel GmbH E-Mail: [EMAIL PROTECTED] Esslinger Str. 45 Tel.: +49 (7153) 6136-20

Re: AW: AW: [qooxdoo-devel] Re: Getting a build of Qooxdoo

2005-11-09 Thread Sebastian Werner
Oliver Vogel schrieb: This is clear but will the tree work or not? ah, with "tree" you mean "QxTree" ;) I thought you have used "tree" as an alias to "branch". Sorry. Yes, the tree will be supported with the next release. But is not done already. Sebastian Olli =

AW: AW: [qooxdoo-devel] Re: Getting a build of Qooxdoo

2005-11-09 Thread Oliver Vogel
This is clear but will the tree work or not? Olli == Diplom-Informatiker Oliver Vogel Geschaeftsfuehrer Meins und Vogel GmbH E-Mail: [EMAIL PROTECTED] Esslinger Str. 45 Tel.: +49 (7153) 6136-20 Fax:+49 (7153) 6136-

Re: [qooxdoo-devel] QxFieldSet checkable

2005-11-09 Thread Anton D. Kachalov
On Tue, Nov 08, 2005 at 12:13:22PM +0100, Sebastian Werner wrote: > There is also a new one, with a radio button instead of a checkbox. > > Online demos can be found here: > http://qooxdoo.oss.schlund.de/demo/dev/public/test/user/Fieldset_3.html > http://qooxdoo.oss.schlund.de/demo/dev/public/test

[qooxdoo-devel] Adding "user defined" properties to widgets (xpath expression)?

2005-11-09 Thread Dietrich Streifert
Hello everybody! I have the need to add some user defined data to a widget. The goal would be to have something like this: var qx = new QxComboBox(); qx.setUserProperty('xpath','//settings/selection'); I know that I can use qx.addHtmlProperty to achieve this but I'm not aware of the side ef