Hi,

I had the following code which should show some vertical separator lines 
and it worked in trunk 20929. When I upgraded to 20972, it stopped 
working. If I change to 20929, it works again.

> main  : function() {
>       // Call super class
>       this.base(arguments);
>
>       // Enable logging in debug variant
>       if (qx.core.Variant.isSet("qx.debug", "on")) {
>           // support native logging capabilities, e.g. Firebug for Firefox
>           qx.log.appender.Native;
>           // support additional cross-browser console. Press F7 to 
> toggle visibility
>           qx.log.appender.Console;
>       }
>
>       var doc = this.getRoot();
>       var vbox_layout = new qx.ui.layout.VBox().set({
>         spacing : 10
>       });
>       this.vbox = new qx.ui.container.Composite(vbox_layout).set({
>         paddingTop  : 10,
>         paddingBottom  : 10
>       });
>       var layout = new qx.ui.layout.VBox().set({
>         spacing : 10,
>         separator: "separator-vertical"
>       });
>       this.container = new qx.ui.container.Composite(layout).set({
>         paddingTop  : 10,
>         paddingBottom  : 10
>       });
>
>       this.button = new qx.ui.form.Button("add elements");
>       this.button.addListener("execute",function(e){
>         for(i=0;i<5;i++){
>           var c = new qx.ui.container.Composite(new qx.ui.layout.VBox());
>           c.add(new qx.ui.basic.Label("I'm the " + i + "th label!!!"));
>           this.container.add(c);
>         }
>       },this);
>       doc.add(this.button, {top:10, left:10});
>       doc.add(this.vbox, {top:50, left:10});
>       this.vbox.add(this.container);
>
>     }

cheers,
skar.

-- 
--
The life so short, the craft so long to learn. 


------------------------------------------------------------------------------
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to