source: trunk/web/addons/job_monarch/lib/extjs/examples/layout-browser/layouts/combination.js @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 7.7 KB
Line 
1/*
2 * Ext JS Library 2.2.1
3 * Copyright(c) 2006-2009, Ext JS, LLC.
4 * licensing@extjs.com
5 *
6 * http://extjs.com/license
7 */
8
9/*
10 * ================  TabPanel with nested layouts  =======================
11 */
12// fake grid data used below in the tabsNestedLayouts config
13var myData = [
14    ['3m Co',71.72,0.02,0.03,'9/1 12:00am'],
15    ['Alcoa Inc',29.01,0.42,1.47,'9/1 12:00am'],
16    ['Altria Group Inc',83.81,0.28,0.34,'9/1 12:00am'],
17    ['American Express Company',52.55,0.01,0.02,'9/1 12:00am'],
18    ['American International Group, Inc.',64.13,0.31,0.49,'9/1 12:00am'],
19    ['AT&T Inc.',31.61,-0.48,-1.54,'9/1 12:00am'],
20    ['Boeing Co.',75.43,0.53,0.71,'9/1 12:00am'],
21    ['Caterpillar Inc.',67.27,0.92,1.39,'9/1 12:00am'],
22    ['Citigroup, Inc.',49.37,0.02,0.04,'9/1 12:00am'],
23    ['E.I. du Pont de Nemours and Company',40.48,0.51,1.28,'9/1 12:00am'],
24    ['Exxon Mobil Corp',68.1,-0.43,-0.64,'9/1 12:00am'],
25    ['General Electric Company',34.14,-0.08,-0.23,'9/1 12:00am'],
26    ['General Motors Corporation',30.27,1.09,3.74,'9/1 12:00am'],
27    ['Hewlett-Packard Co.',36.53,-0.03,-0.08,'9/1 12:00am'],
28    ['Honeywell Intl Inc',38.77,0.05,0.13,'9/1 12:00am'],
29    ['Intel Corporation',19.88,0.31,1.58,'9/1 12:00am'],
30    ['International Business Machines',81.41,0.44,0.54,'9/1 12:00am'],
31    ['Johnson & Johnson',64.72,0.06,0.09,'9/1 12:00am'],
32    ['JP Morgan & Chase & Co',45.73,0.07,0.15,'9/1 12:00am'],
33    ['McDonald\'s Corporation',36.76,0.86,2.40,'9/1 12:00am'],
34    ['Merck & Co., Inc.',40.96,0.41,1.01,'9/1 12:00am'],
35    ['Microsoft Corporation',25.84,0.14,0.54,'9/1 12:00am'],
36    ['Pfizer Inc',27.96,0.4,1.45,'9/1 12:00am'],
37    ['The Coca-Cola Company',45.07,0.26,0.58,'9/1 12:00am'],
38    ['The Home Depot, Inc.',34.64,0.35,1.02,'9/1 12:00am'],
39    ['The Procter & Gamble Company',61.91,0.01,0.02,'9/1 12:00am'],
40    ['United Technologies Corporation',63.26,0.55,0.88,'9/1 12:00am'],
41    ['Verizon Communications',35.57,0.39,1.11,'9/1 12:00am'],
42    ['Wal-Mart Stores, Inc.',45.45,0.73,1.63,'9/1 12:00am']
43];
44   
45var tabsNestedLayouts = {
46        xtype: 'tabpanel',
47        id: 'tabs-nested-layouts-panel',
48        title: 'TabPanel with Nested Layouts',
49        activeTab: 0,
50        items:[{
51                title: 'Foo',
52                layout: 'border',
53                items: [{
54                        region: 'north',
55                        title: 'North',
56                        height: 75,
57                        maxSize: 150,
58                        margins: '5 5 0 5',
59                        bodyStyle: 'padding:10px;',
60                        split: true,
61                        html: 'Some content'
62                },{
63                        xtype: 'tabpanel',
64                        plain: true,
65                        region: 'center',
66                        margins: '0 5 5 5',
67                        activeTab: 0,
68                        items: [{
69                                title: 'Inner Tab 1',
70                                bodyStyle: 'padding:10px;',
71                                html: 'See Inner Tab 2 for another nested BorderLayout.'
72                        },{
73                                title: 'Inner Tab 2',
74                                cls: 'inner-tab-custom', // custom styles in layout-browser.css
75                                layout: 'border',
76                // Make sure IE can still calculate dimensions after a resize when the tab is not active.
77                // With display mode, if the tab is rendered but hidden, IE will mess up the layout on show:
78                hideMode: Ext.isIE ? 'offsets' : 'display', 
79                                items: [{
80                                        title: 'West',
81                                        region: 'west',
82                                        collapsible: true,
83                                        width: 150,
84                                        minSize: 100,
85                                        maxSize: 350,
86                                        margins: '5 0 5 5',
87                                        cmargins: '5 5 5 5',
88                                        html: 'Hello',
89                                        bodyStyle:'padding:10px;',
90                                        split: true
91                                },{
92                                        xtype: 'tabpanel',
93                                        region: 'center',
94                                        margins: '5 5 5 0',
95                                        tabPosition: 'bottom',
96                                        activeTab: 0,
97                                        items: [{
98                                                // Panels that are used as tabs do not have title bars since the tab
99                                                // itself is the title container.  If you want to have a full title
100                                                // bar within a tab, you can easily nest another panel within the tab
101                                                // with layout:'fit' to acheive that:
102                                                title: 'Bottom Tab',
103                                                layout: 'fit',
104                                                items: {
105                                                        title: 'Interior Content',
106                                                        bodyStyle:'padding:10px;',
107                                                        border: false,
108                                                        html: 'See the next tab for a nested grid. The grid is not rendered until its tab is first accessed.'
109                                                }
110                                        },{
111                                                // A common mistake when adding grids to a layout is creating a panel first,
112                                                // then adding the grid to it.  GridPanel (xtype:'grid') is a Panel subclass,
113                                                // so you can add it directly as an item into a container.  Typically you will
114                                                // want to specify layout:'fit' on GridPanels so that they'll size along with
115                                                // their container and take up the available space.
116                                                title: 'Nested Grid',
117                                                xtype: 'grid',
118                                                layout: 'fit',
119                                        store: new Ext.data.SimpleStore({
120                                                fields: [
121                                                   {name: 'company'},
122                                                   {name: 'price', type: 'float'},
123                                                   {name: 'change', type: 'float'},
124                                                   {name: 'pctChange', type: 'float'},
125                                                   {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'}
126                                                ]
127                                            }),
128                                        columns: [
129                                            {id:'company',header: "Company", width: 160, sortable: true, dataIndex: 'company'},
130                                            {header: "Price", width: 75, sortable: true, renderer: 'usMoney', dataIndex: 'price'},
131                                            {header: "Change", width: 75, sortable: true, dataIndex: 'change'},
132                                            {header: "% Change", width: 75, sortable: true, dataIndex: 'pctChange'},
133                                            {header: "Last Updated", width: 85, sortable: true, renderer: Ext.util.Format.dateRenderer('m/d/Y'), dataIndex: 'lastChange'}
134                                        ],
135                                        stripeRows: true,
136                                        autoExpandColumn: 'company',
137                                       
138                                        // Add a listener to load the data only after the grid is rendered:
139                                        listeners: {
140                                                render: function(){
141                                                        this.store.loadData(myData);
142                                                }
143                                        }
144                                        }]
145                                }]
146                        }]
147                }]
148        },{
149                title: 'Bar',
150                bodyStyle: 'padding:10px;',
151                html: 'Nothing to see here.'
152        }]
153};
154
155/*
156 * ================  Absolute Layout Form  =======================
157 */
158var absform = new Ext.form.FormPanel({
159    baseCls: 'x-plain',
160    layout:'absolute',
161    url:'save-form.php',
162    border: true,
163    defaultType: 'textfield',
164
165    items: [{
166        x: 0,
167        y: 5,
168        xtype: 'label',
169        text: 'From:'
170    },{
171        x: 55,
172        y: 0,
173        name: 'from',
174        anchor:'100%'  // anchor width by %
175    },{
176        x: 0,
177        y: 32,
178        xtype: 'label',
179        text: 'To:'
180    },{
181        // The button is not a Field subclass, so it must be
182        // wrapped in a panel for proper positioning to work
183        xtype: 'panel',
184        x: 55,
185        y: 27,
186        items: {
187                xtype: 'button',
188                text: 'Contacts...'
189        }
190    },{
191        x: 135,
192        y: 27,
193        name: 'to',
194        anchor: '100%'  // anchor width by %
195    },{
196        x: 0,
197        y: 59,
198        xtype: 'label',
199        text: 'Subject:'
200    },{
201        x: 55,
202        y: 54,
203        name: 'subject',
204        anchor: '100%'  // anchor width by %
205    },{
206        x:0,
207        y: 81,
208        xtype: 'textarea',
209        name: 'msg',
210        anchor: '100% 100%'  // anchor width and height
211    }]
212});
213
214var absoluteForm = {
215    title: 'Absolute Layout Form',
216    id: 'abs-form-panel',
217    layout: 'fit',
218    bodyStyle: 'padding:15px;',
219    items: {
220        title: 'New Email',
221        cls: 'email-form',
222            layout: 'fit',
223            frame: true,
224            bodyStyle: 'padding:10px 5px 5px;',
225            items: absform,
226           
227            tbar: [{
228                text: 'Send',
229                iconCls: 'icon-send'
230            },'-',{
231                text: 'Save',
232                iconCls: 'icon-save'
233            },{
234                text: 'Check Spelling',
235                iconCls: 'icon-spell'
236            },'-',{
237                text: 'Print',
238                iconCls: 'icon-print'
239            },'->',{
240                text: 'Attach a File',
241                iconCls: 'icon-attach'
242            }]
243    }
244};
Note: See TracBrowser for help on using the repository browser.