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/Region.js"></script>
33     <script type="text/javascript" src="../../Roo/bootstrap/layout/Split.js"></script>
34
35     <script type="text/javascript" src="../../Roo/bootstrap/layout/Center.js"></script>
36         <script type="text/javascript">
37
38 Roo.namespace("Dashboard");
39     </script>
40      
41          <script type="text/javascript" src="Dashboard.Header1.js"></script>
42
43      
44      
45      
46     <style type="text/css">
47 .navbar {
48     padding: 0;
49 }
50 /*
51  
52 .table-body-fixed tbody {
53    overflow-y: scroll;
54   width: 100%;
55 }
56 .table-body-fixed  thead,
57 .table-body-fixed  tbody,
58  
59 .table-body-fixed th   {
60   display: block;
61 }
62 .table-body-fixed thead {
63     overflow:  hidden;
64 }
65
66
67 .table-body-fixed tbody td, 
68 .table-body-fixed thead > tr> th {
69   float: left;
70   border-bottom-width: 0;
71 }
72  .table-body-fixed thead > tr,
73 .table-body-fixed tbody > tr
74 {
75     display: block;
76     overflow: hidden;
77 }
78 */
79         </style>
80         <script type="text/javascript">
81
82 Roo.namespace("Example");
83
84 Example.Nested = new Roo.XComponent({
85     part     :  ["example", "nested" ],
86     order    : '001-Example-Nested',
87     region   : 'center',
88     parent   : false,
89     name     : "unnamed module",
90     disabled : false, 
91     permname : '', 
92     _tree : function()
93     {
94         var _this = this;
95         var MODULE = this;
96         return {
97             is_root : true,
98             xtype : 'Border',
99             xns : Roo.bootstrap.layout,
100             el : document.body, // border layout can be applied to the outer one...
101             west: {
102                 xtype : 'Region',
103                 xns: Roo.bootstrap.layout,
104                 split:true,
105                 tabPosition: 'top',
106                 initialSize: 400,
107                 titlebar: false,
108                // collapsible: true,
109                 minSize: 100,
110                 maxSize: 500,
111                 cls : 'hidden-xs'
112             },
113             north: {
114                 xtype : 'Region',
115                 xns: Roo.bootstrap.layout,
116                 overflow : 'visible',
117                 
118                 initialSize: 50,
119                 titlebar: false
120                
121             },
122             center: {
123                 xtype : 'Region',
124                 xns: Roo.bootstrap.layout,
125                 autoScroll: false,
126                 tabPosition:'top',
127                  titlebar: false
128             },
129             items : [
130                 {
131                     xtype : 'Content',
132                     xns: Roo.bootstrap.panel,
133                     title : "Title west" ,
134                     fitToFrame:true,
135                     closable:false,
136                     region : 'north',
137                     items : [
138                         {
139                             bar : true,
140                             position : 'static-top',
141                             xtype : 'NavHeaderbar',
142                             tag : 'nav',
143                             xns : Roo.bootstrap,
144                             items : [
145                                 {
146                                     cls : 'navbar-btn sidebar-toggle',
147                                     xtype : 'Link',
148                                     xns : Roo.bootstrap,
149                                     html : '<span class=\"icon-bar\"></span><span class=\"icon-bar\"></span><span class=\"icon-bar\"></span>'
150                                 },
151                                 {
152                                     xtype : 'NavGroup',
153                                     align : 'right',
154                                     xns : Roo.bootstrap,
155                                     items : [
156                                         {
157                                             menu : {
158                                                 xtype : 'Menu',
159                                                 xns : Roo.bootstrap,
160                                                 items : [
161                                                     {
162                                                         xtype : 'MenuItem',
163                                                         xns : Roo.bootstrap,
164                                                         html : 'test'
165                                                     }
166                                                 ]
167         
168                                             },
169                                             xtype : 'NavItem',
170                                             xns : Roo.bootstrap,
171                                             html : 'test',
172                                             items : [
173         
174                                             ]
175         
176                                         },
177                                         {
178                                             xtype : 'NavItem',
179                                             xns : Roo.bootstrap,
180                                             html : 'test'
181                                         }
182                                     ]
183         
184                                 }
185                             ]
186         
187                         }
188                     ]
189                     
190                 },
191              
192                 {
193                     xtype : 'Content',
194                     xns: Roo.bootstrap.panel,
195                     title : "Title west" ,
196                     fitToFrame:true,
197                     closable:false,
198                     region : 'west',
199                     html : 'some body west'
200                     
201                 },
202                 {
203                     xtype : 'Grid',
204                     xns: Roo.bootstrap.panel,
205                     title : "Test Grid",
206                     fitToFrame:true,
207                     closable:false,
208                     region : 'west',
209                     listeners : {
210                             activate : function()
211                             {
212                                 this.grid.store.load.defer(100, this.grid.store);
213                             }
214                         },
215                     toolbar : {
216                         xtype: 'NavSimplebar',
217                         xns : Roo.bootstrap,
218                         items: [
219                             {
220                                 xtype: 'NavGroup',
221                                 xns: Roo.bootstrap,
222                                 items : [
223                                     {
224                                         xtype: 'NavItem',
225                                         xns: Roo.bootstrap,
226                                         html: 'a button'
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                             },
378                         ]
379                     }
380                 
381                     
382                 }
383                  
384             ]   
385             
386         }
387     }
388 });
389   
390    Roo.onReady(function() {
391         Roo.XComponent.is_alt = true;
392           Roo.XComponent.build();
393           //dRoo.bootstrap.Tooltip.init();
394       });
395   
396         </script>
397 </head>
398 <body class="xtheme-gray">
399
400  </body>
401 </html>