Hi Andy, if I understood you question correctly. Then you want to change the look of the splitpane, right?
You can define your own appearance to override the look for the splitpane. Have a look at the class "qx.ui.splitpane.Pane". It defines a property "appearance" with the value "splitpane". The value of the property is the key in the appearance "qx.theme.modern.Appearance". See at the code sipped below, it overrides the appearance from the modern theme, I hope it will answer your question. You can also take a look at the wiki: http://qooxdoo.org/documentation/0.8/ui_appearance If you have any questions please ask. Cheers, Chris --- Code Snipped --- qx.Theme.define("test.theme.Appearance", { extend : qx.theme.modern.Appearance, appearances : { "splitpane" : { style : function(states) { return { decorator : "splitpane" }; } }, "splitpane/splitter" : { style : function(states) { return { width : states.horizontal ? 10 : undefined, height : states.vertical ? 10 : undefined, backgroundColor : "#FFFFFF" }; } }, "splitpane/splitter/knob" : { style : function(states) { return { source : states.horizontal ? "decoration/splitpane/knob-horizontal.png" : "decoration/splitpane/knob-vertical.png" }; } }, "splitpane/slider" : { style : function(states) { return { width : states.horizontal ? 10 : undefined, height : states.vertical ? 10 : undefined, backgroundColor : "background-splitpane" }; } } } }); Andy Fuchs schrieb: > Just a short question: > > How can I get rid of the grey separator lines ('frames') of the grid or > splitpane layouts? I'd like to put the panes seemlessly together. > > andy > > > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > SourcForge Community > SourceForge wants to tell your story. > http://p.sf.net/sfu/sf-spreadtheword > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > -- Christian Schmidt Software Engineer Core Development :: Web Technologies 1&1 Internet AG Ernst-Frey-Str. 9 76135 Karlsruhe, Germany http://www.1und1.de Amtsgericht Montabaur / HRB 6484 Vorstände: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas Gottschlich, Robert Hoffmann, Markus Huhn, Hans-Henning Kettler, Dr. Oliver Mauss, Jan Oetjen Aufsichtsratsvorsitzender: Michael Scheeren ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
