Re: [qooxdoo-devel] Error putting a table in a TabViewPage

2006-12-12 Thread Jim Hunter
Please provide a sample of your code. I place tables on all sorts of controls, including Tabs, with no problems. It must be something in the way you are trying to do it, and with code examples we might be able to pinpoint your problem. Jim On 12/12/06, Henric Johansson <[EMAIL PROTECTED]> wrote

Re: [qooxdoo-devel] How to move componemts in the center of IE?

2006-12-12 Thread Daniel Gagnon
> Hi all, > Here I made a GroupBox >var fieldSet = new qx.ui.groupbox.GroupBox("Login"); > and some TextField in it,then I want it will shown in the center of user's > explorer ,Is there any properties ? It's simply : centerToBrowser() -

Re: [qooxdoo-devel] Changing the style of a splitpane

2006-12-12 Thread CSBrown
Having posted this, I worked out the problem, I had containers inside each side of the splitpane with a raised border which looked like it was part of the splitter. Chris. -- View this message in context: http://www.nabble.com/Changing-the-style-of-a-splitpane-tf2807159.html#a7833145 Sent from

Re: [qooxdoo-devel] Tooltip

2006-12-12 Thread Henric Johansson
Hello, I am responding on behalf of Andréas Kühne. This solution works perfectly, thanks! :) /Henric Mindset AB > -Ursprungligt meddelande- > Från: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] För > Matthias Reuter > Skickat: den 8 december 2006 09:50 > Till: qooxdoo Development > Äm

[qooxdoo-devel] Error putting a table in a TabViewPage

2006-12-12 Thread Henric Johansson
Hello! I have trouble putting a table in a TabViewPage in our application. I get this error: 014463 ERROR: qx.event.handler.EventHandler[28]: Failed to handle mouse event: TypeError - $g has no properties at qx.js:1 at qx.js:1 at qx.js:1 at qx.js:1 ... I can't recreate it in an example,

[qooxdoo-devel] Changing the style of a splitpane

2006-12-12 Thread CSBrown
Is it possible to change the style of a splitpane to use a flat splitter rather than the default style of a raised splitter? Can the colour of the splitter be changed? So far I've tried various settings but have only managed to change the centre section of the splitter leaving a raised grey borde

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-12 Thread Alex D.
Firebug is an absolute "must have" for any java-script (and especially qooxdoo) developer. It helps u to debug your app so you can forget alert(). See hier: http://www.getfirebug.com/ Hope that helps alex d. Hi all, It returns... alert(parent.getChildren()[0]); [object qx.ui.embeded.HtmlEmbe

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-12 Thread Dietrich Streifert
Try to first create a static example without rpc. Create it based on the frontend/demo/demo/build/html/test/* files of the qooxdoo sdk. You can take the Tree_1.html file as a starting point. If you got this working go ahead using your rpc code. When this does not work post your example which s

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-12 Thread Yasu Takahashi
Hi again, alert(parent); returns... [Object qx.ui.treefullcontrol.TreeFolder] alert(parent.getContainerObject()) returns... undefined mmm... Not working.. On 12/12/06, Dietrich Streifert <[EMAIL PROTECTED]> wrote: Hi, try the getContainerObject() method of TreeFolder and on the result the

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-12 Thread Dietrich Streifert
Each qooxdoo object has the methods debug, info and error for logging purpose. With this methods you can output debug messages to a console window. Please use the qooxdoo wiki and try first to find answers there http://www.qooxdoo.org The logging system is described here: http://qooxdoo.org

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-12 Thread Yasu Takahashi
Hi all, If I do alert(parent.getChildren()); [object qx.ui.embeded.HtmlEmbeded],[object qx.ui.basic.Image],[object qx.ui.basic.Label] is returned. Thank you. On 12/12/06, Yasu Takahashi <[EMAIL PROTECTED]> wrote: Hi all, It returns... alert(parent.getChildren()[0]); [object qx.ui.embeded.

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-12 Thread Dietrich Streifert
Hi, try the getContainerObject() method of TreeFolder and on the result the getChildren() method. This should contain the TreeFolder and TreeFile instances. Yasu Takahashi schrieb: Hi all, It returns... alert(parent.getChildren()[0]); [object qx.ui.embeded.HtmlEmbeded] alert(parent.getChi

Re: [qooxdoo-devel] Problem getting children of tree element (qx.ui.tree)

2006-12-12 Thread Yasu Takahashi
Hi all, It returns... alert(parent.getChildren()[0]); [object qx.ui.embeded.HtmlEmbeded] alert(parent.getChildren()[1]); [object qx.ui.basic.Image] alert(parent.getChildren()[2]); [object qx.ui.basic.Label] None of them seems treeFolder or treeFile... I cannot figure out this problem for so