Hello,
i try this example from the dock  page but nothing happens

     var container = new qx.ui.container.Composite(new 
qx.ui.layout.VBox(20)).set({
        padding: 20
      })
      scroll.add(container);
     
      // y-axis first, flex growing
      var dock = new qx.ui.layout.Dock();
      dock.setSort("y");

      var widget = (new qx.ui.container.Composite(dock)).set(
      {
        decorator: "main",
        backgroundColor: "yellow",
        width:450,
        height:250,
        allowGrowX : false
      });

      var w1 = new qx.ui.core.Widget().set({decorator: "main", 
backgroundColor: "red"});
      var w2 = new qx.ui.core.Widget().set({decorator: "main", 
backgroundColor: "blue"});
      var w3 = new qx.ui.core.Widget().set({decorator: "main", 
backgroundColor: "orange"});
      var w4 = new qx.ui.core.Widget().set({decorator: "main", 
backgroundColor: "green"});
      var w5 = new qx.ui.core.Widget().set({decorator: "main", 
backgroundColor: "fuchsia"});

      widget.add(w1, {edge:"north"});
      widget.add(w2, {edge:"west"});
      widget.add(w3, {edge:"south"});
      widget.add(w4, {edge:"east"});
      widget.add(w5, {edge:"center"});

      container.add(widget);

d
>>
>>
>> On Sat, Jan 2, 2010 at 9:36 AM, Guilherme Aiolfi <[email protected] 
>> <mailto:[email protected]>> wrote:
>>
>>     Looks more a VBox layout to
>>     me: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.layout.VBox
>>
>>
>>     On Sat, Jan 2, 2010 at 3:03 PM, Jean-Baptiste BRIAUD -- Novlog
>>     <[email protected] <mailto:[email protected]>> wrote:
>>
>>         No need to make a new one, it already exists : Dock
>>         http://demo.qooxdoo.org/current/apiviewer/#qx.ui.layout.Dock
>>
>>         On Jan 2, 2010, at 17:19 , [email protected]
>>         <mailto:[email protected]> wrote:
>>
>>         > is their any  tutorial how to make a simple layout like this
>>          with full
>>         > resize capabilities
>>         >
>>         > --------------------------------------
>>         > I                                                i
>>         > --------------------------------------
>>         > --------------------------------------
>>         > I                                                i
>>         > I                                                i
>>         > I                                                i
>>         > I                                                i
>>         > I                                                i
>>         > I                                                i
>>         > --------------------------------------
>>         > --------------------------------------
>>         > I                                                i
>>
>>     
>
>
> ------------------------------------------------------------------------------
> This SF.Net email is sponsored by the Verizon Developer Community
> Take advantage of Verizon's best-in-class app development support
> A streamlined, 14 day to market process makes app distribution fast and easy
> Join now and get one step closer to millions of Verizon customers
> http://p.sf.net/sfu/verizon-dev2dev 
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>   


------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to