HEre ist the code of my actual splitpane. the borders at top and bottom 
to big too


qx.Class.define("makebiz.modules.home.Main", {
         extend: qx.core.Object,
         members :
             {
             getBaseLayout : function()
                 {
                 var splitpane_main = new 
qx.ui.splitpane.Pane("horizontal");

                 var container_left = new qx.ui.container.Composite(new 
qx.ui.layout.Grow).set({
                    maxWidth:460,
                    minWidth:100,
                    width:200,
                    decorator: "main"
                    });

                 var container_right = new qx.ui.container.Composite(new 
qx.ui.layout.Grow).set({
                    decorator: "main"
                    });

                 splitpane_main.add(container_left, 0);
                 splitpane_main.add(container_right,1);

                 splitpane_main.add(this.getRightSplitpane());
                 return splitpane_main;
                 },

             getRightSplitpane: function()
                 {
                 /* Rechten Bereich mit Splitpane teilen*/
                 var splitpane_right = new qx.ui.splitpane.Pane("vertical");

                 var container_righttop = new 
qx.ui.container.Composite(new qx.ui.layout.Grow).set({
                     minHeight:100,
                     height:200,
                     decorator: "main"
                     });

                 var container_rightbottom = new 
qx.ui.container.Composite(new qx.ui.layout.Grow).set({
                     minHeight:100,
                     decorator: "main"
                     });
                 splitpane_right.add(container_righttop, 0);
                 splitpane_right.add(container_rightbottom,1);
                 return(splitpane_right);
                 }
             }
      });


> Try
>
>           splitpane.setDecorator(null);
>
> (on all (sub)splitpanes) to remove the double border.
>
> Cheers,
> Fritz
>
> On Wed, 27 Jan 2010, [email protected] wrote:
>
>    
>> Hello,
>>
>> i want to make a layout like  for example  thudnerbird.
>>
>> I split   the screen in two half and use a splitpane for this. then i
>> want to split vertical on the left to but  then i cant size the main
>> splitpanes.
>>
>> How can i fix this problem? i try to add  the  subsplitpane on the
>> right  the inherite container but then its looks like a double  border.
>> not very good:(
>>
>>
>>
>> ------------------------------------------------------------------------------
>> The Planet: dedicated and managed hosting, cloud storage, colocation
>> Stay online with enterprise data centers and the best network in the business
>> Choose flexible plans and management services without long-term contracts
>> Personal 24x7 support from experience hosting pros just a phone call away.
>> http://p.sf.net/sfu/theplanet-com
>> _______________________________________________
>> qooxdoo-devel mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>>
>>
>>      
>    


------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to