ok,
when i teit the testbrowser works fine
ok, here is the code i use now
getBaseLayout : function()
{
var container = new qx.ui.container.Composite(new
qx.ui.layout.Grow).set({
padding:0,
decorator: null
});
splitpane = new qx.ui.splitpane.Pane("horizontal").set({
padding:0,
decorator: null
});
container.add(splitpane);
var splitpane2 = new qx.ui.splitpane.Pane("vertical").set({
decorator: null
});
var container1 = new qx.ui.container.Composite(new
qx.ui.layout.Grow).set({
minWidth:5,
padding:0,
decorator: "main"
});
var container2 = new qx.ui.container.Composite(new
qx.ui.layout.Grow).set({
minHeight:5,
padding:0,
decorator: "main"
});
var container3 = new qx.ui.container.Composite(new
qx.ui.layout.Grow).set({
minHeight:5,
padding:0,
decorator: "main"
});
splitpane.add(container1,1);
splitpane.add(splitpane2,1);
splitpane2.add(container2,1);
splitpane2.add(container3,2);
return container;
> Same problem.
>
> Cheers,
> Fritz
>
> On Wed, 27 Jan 2010, Stefan Meyer wrote:
>
>
>> Hello,
>>
>> i post a new message with a new link after this mail
>>
>> sorry
>>
>>> Hi,
>>>
>>> On Wed, 27 Jan 2010, [email protected] wrote:
>>>
>>>
>>>
>>>> thank you for the code
>>>>
>>>> i try the changes below(my example scaled in a scaled root. Theirfor
>>>> this is shown as a minilayout. i hope you can fix it)
>>>>
>>>>
>>> I can't deal with the URL you sent. It seems either broken, too long, or
>>> somehow formatted.
>>>
>>> Please try with the latest playground (1.0.1) at
>>> http://demo.qooxdoo.org/current/playground and use the new "Shorten URL"
>>> button.
>>>
>>>
>>>
>>>> 2 things about it
>>>>
>>>> 1. How can i make the panes inside proportinal at start? the left
>>>> pane should have only 40% and the right 60 %
>>>>
>>>>
>>> Use the second parameter of the add method. See
>>> http://demo.qooxdoo.org/1.0.1/apiviewer/#qx.ui.splitpane.Pane
>>>
>>>
>>>
>>>> 2. How can i add some little borders ad the outer lines. like the
>>>> splitter have? In my own old version their alwys be some borders.
>>>>
>>>>
>>> My example had borders due to the decorator in the outer container. Apart
>>> from that I don't know much about decoration and such things.
>>>
>>> Cheers,
>>> Fritz
>>>
>>> P.S.: I am still under the impression you are trying to achieve too much
>>> with too little knowledge and not enough (careful) manual and
>>> documentation study.
>>>
>>>
>>>
>>>> Thanks for help.:)
>>>>
>>>> http://demo.qooxdoo.org/current/playground/#%7B%22code%22%3A%20%22%2520%2520%2520%2520%2520%2520%2520%2520var%2520container%2520%253D%2520new%2520qx.ui.container.Composite%28new%2520qx.ui.layout.Grow%29.set%28%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520padding%253A0%252C%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520decorator%253A%2520null%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%257D%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520splitpane%2520%253D%2520new%2520qx.ui.splitpane.Pane%28%2522horizontal%2522%29.set%28%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520padding%253A0%252C%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520decorator%253A%2520null%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%257D%29%253B%250A%2520%2520%2520%2520%2520%2520%252
>>>>
> 0
>
>> %
>>
>>> 25
>>>
>>>
>>>> 20%250A%2520%2520%2520%2520%2520%2520%2520%2520container.add%28splitpane%29%253B%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520var%2520splitpane2%2520%253D%2520new%2520qx.ui.splitpane.Pane%28%2522vertical%2522%29.set%28%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520decorator%253A%2520null%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%257D%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520var%2520container1%2520%253D%2520new%2520qx.ui.container.Composite%28new%2520qx.ui.layout.Grow%29.set%28%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520minWidth%253A5%252C%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520padding%253A0%252C%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520decorator%253A%2520%2522main%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%252
>>>>
> 0
>
>> %
>>
>>> 2
>>>
>>>
>>>> 57D%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520var%2520container2%2520%253D%2520new%2520qx.ui.container.Composite%28new%2520qx.ui.layout.Grow%29.set%28%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520minHeight%253A5%252C%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520padding%253A0%252C%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520decorator%253A%2520%2522main%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%257D%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520var%2520container3%2520%253D%2520new%2520qx.ui.container.Composite%28new%2520qx.ui.layout.Grow%29.set%28%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520minHeight%253A5%252C%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520padding%253A0%252C
>>>>
> %
>
>> 2
>>
>>> 5
>>>
>>>
>>>> 20%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520decorator%253A%2520%2522main%2522%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%257D%29%253B%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520splitpane.add%28container1%252C1%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520splitpane.add%28splitpane2%252C1%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520splitpane2.add%28container2%252C1%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520splitpane2.add%28container3%252C2%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520this.getRoot%28%29.add%28container%252C%2520%257Bleft%253A%252040%252C%2520top%253A%252030%257D%29%253B%250A%2520%2520%2520%2520%2520%2520%2520%2520%252F%252Freturn%2520container%253B%22%7D
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> 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
>>
>>
>>
>
>
------------------------------------------------------------------------------
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