[qooxdoo-devel] Caption bar misbehaviour

2006-03-06 Thread Kent Olsson
Hej Sebastian! If the caption bar is shorter than the width of the caption text title, the text wraps into the next line. The caption bar still has the same size. Here it should be an overflow hidden instead, when windows are resized. Kent --

[qooxdoo-devel] cobobox.convenience (part II)

2006-03-06 Thread robert kuzelj
hi, what about another one var list = [new QxListItem("one"), new QxListItem("two"), new QxListItem("three")]; acombobox.setList(list); instead of acombobox.add(new QxListItem("one")); acombobox.add(new QxListItem("two")); acombobox.add(new QxListItem("three")); ciao ro

[qooxdoo-devel] QxXmlHttpxxx

2006-03-06 Thread Okan, Varol
Folks,   First off, I am new to this list in case you are curious … http://www.MovingSatellites.com http://qdvdauthor.sf.net Second : Great work. This project is the best thing since sliced bread (or at least since HTTP v. 1.0)     Reading through the list and checking out the examp

[qooxdoo-devel] convenience methods

2006-03-06 Thread robert kuzelj
hi, would you mind to add a few convenience methods to combobox? instead of calling combobox.setSelected(combobox.getList().getFirstChild()); it would be nice if one could call combobox.selectTop(); also a selectBottom method would be nice. setSelected could be overloaded to accept an index

[qooxdoo-devel] speed up loading time of qooxdoo

2006-03-06 Thread Oliver Vogel
i know, this is not a qooxdoo and not a javascript solution. it is a php solution. but if someone has php at the server, she can write

Re: [qooxdoo-devel] Bug in IconHtml 1 Test Demo

2006-03-06 Thread Sebastian Werner
Hi Dietrich, fixed this in CVS. Thank you for your report. Sebastian Dietrich Streifert schrieb: Hello List, There seems to be a bug (copy/paste) issue in http://qooxdoo.oss.schlund.de/public/demo/test/IconHtml_1.html In the info area it is named "Testing link widget". It should obviously

Re: [qooxdoo-devel] Bug in UserData 1 Test Demo

2006-03-06 Thread Sebastian Werner
Hi Dietrich, this one uses the old API. I've removed it from CVS. Sebastian Dietrich Streifert schrieb: Hello List! There seems to be a bug in http://qooxdoo.oss.schlund.de/public/demo/test/UserData_1.html This is for FireFox 1.5 and IE 6 In FireFox I get: 000735:...failed:nl1.addData is

Re: [qooxdoo-devel] Strange behaviour with layouting...

2006-03-06 Thread Sebastian Werner
Kent! After adding some auto()'s it seems to work well: var layout = new QxCanvasLayout(); layout.setHeight(200); layout.setWidth(300); layout.setLocation(50, 50); layout.setBorder(QxBorder.presets.black); this.add(layout); // Upper var upperHBL = this._upperLayout = new QxHoriz

[qooxdoo-devel] Bug in IconHtml 1 Test Demo

2006-03-06 Thread Dietrich Streifert
Hello List, There seems to be a bug (copy/paste) issue in http://qooxdoo.oss.schlund.de/public/demo/test/IconHtml_1.html In the info area it is named "Testing link widget". It should obviously show "icons/32/mixer.png" but does not find it so no icon is visible at all. This is for FireFox 1

[qooxdoo-devel] Bug in UserData 1 Test Demo

2006-03-06 Thread Dietrich Streifert
Hello List! There seems to be a bug in http://qooxdoo.oss.schlund.de/public/demo/test/UserData_1.html This is for FireFox 1.5 and IE 6 In FireFox I get: 000735:...failed:nl1.addData is not a function -- Mit freundlichen Grüßen Dietrich Streifert Visionet GmbH ---

Re: [qooxdoo-devel] qooxdoo.org bug tracking and wiki

2006-03-06 Thread Derrell . Lipman
"Hugh Gibson" <[EMAIL PROTECTED]> writes: >> http://bugs.qooxdoo.org >> http://wiki.qooxdoo.org >> Bug-tracking and wiki (located on my server) > > I'm unwilling to invest any time on these until I know if Sebastian is happy > with this solution. I haven't heard anything from Sebastian.

Re: [qooxdoo-devel] Strange behaviour with layouting...

2006-03-06 Thread Kent Olsson
Sebastian! I have copied an example. I want the button centered in the layout widget. I want the upperHBL centered in the layout widget. I want the messageL1 and messageL2 centered in the upperRightVBL. I have tried QxConst.CORE_AUTO, null (width/height) and setVerticalChildrenAlign, setHorizon

Re: [qooxdoo-devel] Appearance documentation online

2006-03-06 Thread Sebastian Werner
Hugh Gibson schrieb: Any comments and corrections are really appreciated. Done. However, I was unsure about this: * @initialFrom@: For getting the initial hash of another appearance * @stateFrom@: For getting the initial hash of another appearance Looks like a copy/paste error, but what shoul

Re: [qooxdoo-devel] The public mailing list does not update itself anymore...

2006-03-06 Thread Hugh Gibson
> Hmmm, I guess you mean the sourceforge archive. I've logged an issue at http://sourceforge.net/tracker/index.php?func=detail&aid=1444027&group_id=1&atid=21 Hugh --- This SF.Net email is sponsored by xPML, a groundbreaking scripting lang

Re: [qooxdoo-devel] Appearance documentation online

2006-03-06 Thread Hugh Gibson
> Any comments and corrections are really appreciated. Done. However, I was unsure about this: * @initialFrom@: For getting the initial hash of another appearance * @stateFrom@: For getting the initial hash of another appearance Looks like a copy/paste error, but what should be there? Hugh --

Re: [qooxdoo-devel] qooxdoo.org bug tracking and wiki

2006-03-06 Thread Hugh Gibson
> http://bugs.qooxdoo.org > http://wiki.qooxdoo.org > Bug-tracking and wiki (located on my server) I'm unwilling to invest any time on these until I know if Sebastian is happy with this solution. Also, how easy will it be to change the look to the qooxdoo standard? Hugh -

[qooxdoo-devel] Appearance documentation online

2006-03-06 Thread Sebastian Werner
Hi! I've just added some documentation for our appearance system in qooxdoo. http://qooxdoo.oss.schlund.de/documentation/appearance Any comments and corrections are really appreciated. Sebastian --- This SF.Net email is sponsored by xPML, a

Re: [qooxdoo-devel] TabView change tab event

2006-03-06 Thread Sebastian Werner
Yue schrieb: >> I use this to intercept tab change event, but it does not seem >> to work. Could anyone help? >> >> tabview.getBar().getManager().addEventListener("changeSelection", >> onPageChange); > > I have found it. The bar should be radio selector and thus the > name is: > > tabview.getBa

Re: [qooxdoo-devel] Horizontal Scrolling in ListView

2006-03-06 Thread Sebastian Werner
[EMAIL PROTECTED] schrieb: Hi, Is there any way to get the horizontal scroll bar for the list view. I have more columns so that it cannot fit in the current width. No, this is currently not implemented. Sebastian Regards, Sivaprasad C -

Re: [qooxdoo-devel] Strange behaviour with layouting...

2006-03-06 Thread Sebastian Werner
Kent Olsson schrieb: I am trying to do that, but I haven't got it working yet. If you send us an example with just these two layout types (without your button pane) which shows exactly you problem, I will take a look at. Sebastian Kent On Mon, 2006-03-06 at 09:27 +0100, Sebastian Werner

[qooxdoo-devel] Horizontal Scrolling in ListView

2006-03-06 Thread SChidambaram
Hi, Is there any way to get the horizontal scroll bar for the list view. I have more columns so that it cannot fit in the current width. Regards, Sivaprasad C

Re: [qooxdoo-devel] TabView change tab event

2006-03-06 Thread Sebastian Werner
Yue schrieb: Hi I use this to intercept tab change event, but it does not seem to work. Could anyone help? tabview.getBar().getManager().addEventListener("changeSelection", onPageChange); In this case the name of the event is "changeSelected" - not "changeSelection". Sebastian Regards Y

Re: [qooxdoo-devel] Strange behaviour with layouting...

2006-03-06 Thread Kent Olsson
I am trying to do that, but I haven't got it working yet. Kent On Mon, 2006-03-06 at 09:27 +0100, Sebastian Werner wrote: > Kent Olsson schrieb: > > Hej Sebastian! > > > > Can you tell me why the nested vertical and horizontal box layouts do not > > adjust? I attach an image showing what happen

Re: [qooxdoo-devel] QxTree in object

2006-03-06 Thread Sebastian Werner
Hi Petr, this was a bug in qooxoo. Should be fixed now in CVS. Sebastian Petr Šimek schrieb: Hi qooxdoo people, when I use QxTree as property of my object (child of QxDockLayout), everything seems ok, but I get this message from qooxdoo debugger: QxTree[HASHCODE:67] 000375:Failed to execute

Re: [qooxdoo-devel] TabView change tab event

2006-03-06 Thread Yue
>I use this to intercept tab change event, but it does not seem >to work. Could anyone help? > >tabview.getBar().getManager().addEventListener("changeSelection", >onPageChange); I have found it. The bar should be radio selector and thus the name is: tabview.getBar().getManager().addEventListene

Re: [qooxdoo-devel] Strange behaviour with layouting...

2006-03-06 Thread Sebastian Werner
Kent Olsson schrieb: Hej Sebastian! Can you tell me why the nested vertical and horizontal box layouts do not adjust? I attach an image showing what happens to the widgets. I actually only have values for the message and its button pane., but it overlays att (0, 0) I can not have fixed size, b