examples/bootstrap/nested.html
[roojs1] / examples / bootstrap / nested.html
1 <!--
2
3 porting tst for layout classes from original roo library into bootstrap one.
4
5
6 -->
7 <html>
8 <head>
9   <title>Nested Layout</title>
10       <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
11
12    <!-- Bootstrap -->
13     <link rel="stylesheet" href="../../css-bootstrap/bootstrap.min.css">
14        
15     <link href="../../css-bootstrap/font-awesome.css" rel="stylesheet" type="text/css" />
16    
17     <link href="../../css-bootstrap/roojs-bootstrap-debug.css" rel="stylesheet" type="text/css" />
18     
19   <!--  <link href="../../../bootswatch/material-kit/css/material-kit.css" rel="stylesheet"> -->
20
21     
22         
23     <script type="text/javascript" src="../../roojs-core-debug.js"></script>
24     <!-- bootstrap js.. needs to compile it later.. -->
25     <script type="text/javascript" src="../../roojs-bootstrap-debug.js"></script>
26
27   <!--
28   <script type="text/javascript" src="../../Roo/bootstrap/panel/Grid.js"></script>
29   <script type="text/javascript" src="../../Roo/bootstrap/Table.js"></script>
30   <script type="text/javascript" src="../../Roo/bootstrap/Input.js"></script>
31     -->
32     <script type="text/javascript" src="../../Roo/bootstrap/layout/Manager.js"></script>
33     <script type="text/javascript" src="../../Roo/bootstrap/layout/Border.js"></script>
34     <script type="text/javascript" src="../../Roo/bootstrap/layout/Region.js"></script>
35     <script type="text/javascript" src="../../Roo/bootstrap/layout/Split.js"></script>
36
37     <script type="text/javascript" src="../../Roo/bootstrap/layout/Center.js"></script>
38     <script type="text/javascript" src="../../Roo/bootstrap/Modal.js"></script>
39     <script type="text/javascript" src="./nested-dialog.js"></script>
40
41     <style type="text/css">
42 .navbar {
43     padding: 0;
44 }
45 /*
46  
47 .table-body-fixed tbody {
48    overflow-y: scroll;
49   width: 100%;
50 }
51 .table-body-fixed  thead,
52 .table-body-fixed  tbody,
53  
54 .table-body-fixed th   {
55   display: block;
56 }
57 .table-body-fixed thead {
58     overflow:  hidden;
59 }
60
61
62 .table-body-fixed tbody td, 
63 .table-body-fixed thead > tr> th {
64   float: left;
65   border-bottom-width: 0;
66 }
67  .table-body-fixed thead > tr,
68 .table-body-fixed tbody > tr
69 {
70     display: block;
71     overflow: hidden;
72 }
73 */
74         </style>
75         <script type="text/javascript">
76
77 Roo.namespace("Example");
78
79 Example.Nested = new Roo.XComponent({
80     part     :  ["example", "nested" ],
81     order    : '001-Example-Nested',
82     region   : 'center',
83     parent   : false,
84     name     : "unnamed module",
85     disabled : false, 
86     permname : '', 
87     _tree : function()
88     {
89         var _this = this;
90         var MODULE = this;
91         return {
92             is_root : true,
93             xtype : 'Border',
94             xns : Roo.bootstrap.layout,
95             el : document.body, // border layout can be applied to the outer one...
96             west: {
97                 xtype : 'Region',
98                 xns: Roo.bootstrap.layout,
99                 split:true,
100                 tabPosition: 'top',
101                 initialSize: 400,
102                 titlebar: false,
103                // collapsible: true,
104                 minSize: 100,
105                 maxSize: 500,
106                 cls : 'hidden-xs'
107             },
108             north: {
109                 xtype : 'Region',
110                 xns: Roo.bootstrap.layout,
111                 overflow : 'visible',
112                 
113                 initialSize: 50,
114                 titlebar: false
115                
116             },
117             center: {
118                 xtype : 'Region',
119                 xns: Roo.bootstrap.layout,
120                 autoScroll: false,
121                 tabPosition:'top',
122                  titlebar: false
123             },
124             items : [
125                 {
126                     xtype : 'Content',
127                     xns: Roo.bootstrap.panel,
128                     title : "Title west" ,
129                     fitToFrame:true,
130                     closable:false,
131                     region : 'north',
132                     items : [
133                         {
134                             bar : true,
135                             position : 'static-top',
136                             xtype : 'NavHeaderbar',
137                             tag : 'nav',
138                             xns : Roo.bootstrap,
139                             items : [
140                                 {
141                                     cls : 'navbar-btn sidebar-toggle',
142                                     xtype : 'Link',
143                                     xns : Roo.bootstrap,
144                                     html : '<span class=\"icon-bar\"></span><span class=\"icon-bar\"></span><span class=\"icon-bar\"></span>'
145                                 },
146                                 {
147                                     xtype : 'NavGroup',
148                                     align : 'right',
149                                     xns : Roo.bootstrap,
150                                     items : [
151                                         {
152                                             menu : {
153                                                 xtype : 'Menu',
154                                                 xns : Roo.bootstrap,
155                                                 items : [
156                                                     {
157                                                         xtype : 'MenuItem',
158                                                         xns : Roo.bootstrap,
159                                                         html : 'test'
160                                                     }
161                                                 ]
162         
163                                             },
164                                             xtype : 'NavItem',
165                                             xns : Roo.bootstrap,
166                                             html : 'test',
167                                             items : [
168         
169                                             ]
170         
171                                         },
172                                         {
173                                             xtype : 'NavItem',
174                                             xns : Roo.bootstrap,
175                                             html : 'test'
176                                         }
177                                     ]
178         
179                                 }
180                             ]
181         
182                         }
183                     ]
184                     
185                 },
186              
187                 {
188                     xtype : 'Content',
189                     xns: Roo.bootstrap.panel,
190                     title : "Title west" ,
191                     fitToFrame:true,
192                     closable:false,
193                     region : 'west',
194                     html : 'some body west'
195                     
196                 },
197                 {
198                     xtype : 'Grid',
199                     xns: Roo.bootstrap.panel,
200                     title : "Test Grid",
201                     fitToFrame:true,
202                     closable:false,
203                     region : 'west',
204                     listeners : {
205                             activate : function()
206                             {
207                                 this.grid.store.load.defer(100, this.grid.store);
208                             }
209                         },
210                     toolbar : {
211                         xtype: 'NavSimplebar',
212                         xns : Roo.bootstrap,
213                         items: [
214                             {
215                                 xtype: 'NavGroup',
216                                 xns: Roo.bootstrap,
217                                 items : [
218                                     {
219                                         xtype: 'NavItem',
220                                         xns: Roo.bootstrap,
221                                         html: 'show dialog',
222                                         listeners : {
223                                             click : function() {
224                                                 Example.NestedDialog.show({});
225                                             }
226                                         }
227                                         
228                                     },
229                                     {
230                                         xtype: 'Input',
231                                         xns: Roo.bootstrap,
232                                         placeholder: 'a text input'
233                                         
234                                     }
235                                 ]
236                             }
237                         ]
238                         
239                     },
240                     grid : {
241                         loadMask : true,
242                         striped : true,
243                         xns : Roo.bootstrap,
244                         xtype : 'Table',
245                         cls : 'table-fixed',
246                          store : {
247                             xns : Roo.data,
248                             xtype : 'Store',
249                          
250                             proxy : {
251                                 xns : Roo.data,
252                                 xtype : 'MemoryProxy',
253                                 data: [
254                                     ['3m Co',71.72,0.02,0.03,'9/1 12:00am'],
255                                     ['Alcoa Inc',29.01,0.42,1.47,'9/1 12:00am'],
256                                     ['Altria Group Inc',83.81,0.28,0.34,'9/1 12:00am'],
257                                     ['American Express Company',52.55,0.01,0.02,'9/1 12:00am'],
258                                     ['American International Group, Inc.',64.13,0.31,0.49,'9/1 12:00am'],
259                                     ['AT&T Inc.',31.61,-0.48,-1.54,'9/1 12:00am'],
260                                     ['Boeing Co.',75.43,0.53,0.71,'9/1 12:00am'],
261                                     ['Caterpillar Inc.',67.27,0.92,1.39,'9/1 12:00am'],
262                                     ['Citigroup, Inc.',49.37,0.02,0.04,'9/1 12:00am'],
263                                     ['E.I. du Pont de Nemours and Company',40.48,0.51,1.28,'9/1 12:00am'],
264                                     ['Exxon Mobil Corp',68.1,-0.43,-0.64,'9/1 12:00am'],
265                                     ['General Electric Company',34.14,-0.08,-0.23,'9/1 12:00am'],
266                                     ['General Motors Corporation',30.27,1.09,3.74,'9/1 12:00am'],
267                                     ['Hewlett-Packard Co.',36.53,-0.03,-0.08,'9/1 12:00am'],
268                                     ['Honeywell Intl Inc',38.77,0.05,0.13,'9/1 12:00am'],
269                                     ['Intel Corporation',19.88,0.31,1.58,'9/1 12:00am'],
270                                     ['International Business Machines',81.41,0.44,0.54,'9/1 12:00am'],
271                                     ['Johnson & Johnson',64.72,0.06,0.09,'9/1 12:00am'],
272                                     ['JP Morgan & Chase & Co',45.73,0.07,0.15,'9/1 12:00am'],
273                                     ['McDonald\'s Corporation',36.76,0.86,2.40,'9/1 12:00am'],
274                                     ['Merck & Co., Inc.',40.96,0.41,1.01,'9/1 12:00am'],
275                                     ['Microsoft Corporation',25.84,0.14,0.54,'9/1 12:00am'],
276                                     ['Pfizer Inc',27.96,0.4,1.45,'9/1 12:00am'],
277                                     ['The Coca-Cola Company',45.07,0.26,0.58,'9/1 12:00am'],
278                                     ['The Home Depot, Inc.',34.64,0.35,1.02,'9/1 12:00am'],
279                                     ['The Procter & Gamble Company',61.91,0.01,0.02,'9/1 12:00am'],
280                                     ['United Technologies Corporation',63.26,0.55,0.88,'9/1 12:00am'],
281                                     ['Verizon Communications',35.57,0.39,1.11,'9/1 12:00am'],
282                                     ['Wal-Mart Stores, Inc.',45.45,0.73,1.63,'9/1 12:00am'],
283                                     ['Walt Disney Company (The) (Holding Company)',29.89,0.24,0.81,'9/1 12:00am']
284                                 ]
285                             },
286                             reader : {
287                            
288                                 xns : Roo.data,
289                                 xtype : 'ArrayReader',
290                                 fields: [
291                                     {name: 'company'},
292                                     {name: 'price', type: 'float'},
293                                     {name: 'change', type: 'float'},
294                                     {name: 'pctChange', type: 'float'},
295                                     {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'}
296                                 ]
297                             },
298                         },
299                         cm : [
300                             
301                             {
302                                 id:'company',
303                                 header: "Company",
304                                 width: 160,
305                                 sortable: true,
306                                 locked:false,
307                                 dataIndex: 'company',
308                                 xns : Roo.grid,
309                                 xtype : 'ColumnModel'
310                             },
311                             {
312                                 header: "Price",
313                                width: 160,
314                                 sortable: true,
315                                 renderer: Roo.util.Format.usMoney,
316                                 dataIndex: 'price',
317                                 xns : Roo.grid,
318                                 xtype : 'ColumnModel'
319                             }
320                             
321                         ]
322                         
323                     }
324                 
325                 },
326                 {
327                     xtype : 'Content',
328                     xns: Roo.bootstrap.panel,
329                     title : "Title Center",
330                     fitToFrame:true,
331                     closable:false,
332                     region : 'center',
333                     html : 'some body center'
334                     
335                 },
336                 
337                 {
338                     xtype : 'Nest',
339                     title : "Title Nest Center",
340                     
341                     xns: Roo.bootstrap.panel,
342                     region : 'center',
343                     
344                     layout : {
345                         xtype : 'Border',
346                         xns: Roo.bootstrap.layout,
347                         south: {
348                             xtype : 'Region',
349                             xns: Roo.bootstrap.layout,
350                                 split:true,
351                                 initialSize: 200,
352                                 minSize: 100,
353                                 maxSize: 400,
354                                 autoScroll:true,
355                                 collapsible:true,
356                                 titlebar: true
357                             },
358                             center: {
359                             xtype : 'Region',
360                             xns: Roo.bootstrap.layout,
361                                 autoScroll:true,
362                             },
363                         items : [
364                             {
365                                 xtype : 'Content',
366                                 xns: Roo.bootstrap.panel,
367                                 title : "More Info",
368                                 region : 'south',
369                                 html : 'some body south'
370                             },
371                             {
372                                 xtype : 'Content',
373                                 xns: Roo.bootstrap.panel,
374                                 title : "the body",
375                                 region : 'center',
376                                 html : 'some body center',
377                                 toolbar : {
378                                     xtype: 'NavSimplebar',
379                                     xns : Roo.bootstrap,
380                                     items: [
381                                         {
382                                             xtype: 'NavGroup',
383                                             xns: Roo.bootstrap,
384                                             items : [
385                                                 {
386                                                     xtype: 'NavItem',
387                                                     xns: Roo.bootstrap,
388                                                     html: 'show dialog',
389                                                     listeners : {
390                                                         click : function() {
391                                                             Example.NestedDialog.show({});
392                                                         }
393                                                     }
394                                                     
395                                                 },
396                                                 {
397                                                     xtype: 'Input',
398                                                     xns: Roo.bootstrap,
399                                                     placeholder: 'a text input'
400                                                     
401                                                 }
402                                             ]
403                                         }
404                                     ]
405                                     
406                                 },
407                             },
408                         ]
409                     }
410                 
411                     
412                 }
413                  
414             ]   
415             
416         }
417     }
418 });
419   
420    Roo.onReady(function() {
421         Roo.XComponent.is_alt = true;
422           Roo.XComponent.build();
423           //dRoo.bootstrap.Tooltip.init();
424       });
425   
426         </script>
427 </head>
428 <body class="xtheme-gray">
429
430  </body>
431 </html>
432