Hi Skar,

oh, yes, I can confirm that the vertical separator is broken on trunk 
(rev. 20972).

Could you please open a bug report for that?

Thanks,
Chris

skar schrieb:
> 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.
>
>   


-- 
Christian Schmidt
Software Entwickler

1&1 Internet AG - Web Technologies
Ernst-Frey-Straße 9 · DE-76135 Karlsruhe
[email protected]

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


------------------------------------------------------------------------------
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