Pman.Tab.Builder.js
[Pman.Builder] / Pman.Tab.Builder.js
1 //<script type="text/javascript">
2
3 // Auto generated file - created by app.Builder.js- do not edit directly (at present!)
4
5
6
7 // register the module first
8 Pman.on('beforeload', function()
9 {
10     Pman.register({
11         modKey : '750-Pman.Tab.Builder',
12         module : Pman.Tab.Builder,
13         region : 'center',
14         parent : Pman,
15         name : "Pman.Tab.Builder",
16         disabled : false, 
17         permname: 'Builder' 
18     });
19 });
20
21 Pman.Tab.Builder = new Roo.util.Observable({
22
23     panel : false,
24     disabled : false,
25     parentLayout:  false,
26
27     add : function(parentLayout, region)
28     {
29
30         var _this = this;
31         this.parentLayout = parentLayout;
32
33         this.panel = parentLayout.addxtype({
34             xtype: 'NestedLayoutPanel',
35             xns: Roo,
36             title : "Customize",
37             layout : {
38                 xtype: 'BorderLayout',
39                 xns: Roo,
40                 north : {
41                     xtype: 'LayoutRegion',
42                     xns: Roo,
43                     height : 26
44                 },
45                 west : {
46                     xtype: 'LayoutRegion',
47                     xns: Roo,
48                     split : true,
49                     width : 255
50                 },
51                 center : {
52                     xtype: 'LayoutRegion',
53                     xns: Roo
54                 },
55                 east : {
56                     xtype: 'LayoutRegion',
57                     xns: Roo,
58                     collapsed : true,
59                     split : true,
60                     width : 255,
61                     collapsible : true
62                 }
63             }
64         });
65         this.layout = this.panel.layout;
66
67     }
68 });