Hello, 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) 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 % 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. 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%2520%2520%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%2520%257D%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%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%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
