Roo/bootstrap/panel/Grid.js
[roojs1] / Roo / bootstrap / panel / Grid.js
1
2 /**
3  * @class Roo.bootstrap.panel.Grid
4  * @extends Roo.bootstrap.panel.Content
5  * @constructor
6  * Create a new GridPanel.
7  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
8  * @param {String/Object} config A string to set only the panel's title, or a config object
9
10   new Roo.bootstrap.panel.Grid({
11                 grid: .....
12                 ....
13   }
14
15  */
16
17
18
19 Roo.bootstrap.panel.Grid = function(config){
20     
21   
22     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
23         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
24
25     
26     if(this.toolbar){
27         var tool_el = this.el.createChild();    
28         this.toolbar = Roo.factory(this.toolbar);
29         this.toolbar.render(tool_el);
30         
31     }
32     this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
33     config.el = this.wrapper;
34     
35     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
36     
37   
38     // xtype created footer. - not sure if will work as we normally have to render first..
39     if (this.footer && !this.footer.el && this.footer.xtype) {
40         
41         var ctr = this.grid.getView().getFooterPanel(true);
42         this.footer.dataSource = this.grid.dataSource;
43         this.footer = Roo.factory(this.footer, Roo);
44         this.footer.render(ctr);
45         
46     }
47     
48     
49     config.grid.monitorWindowResize = false; // turn off autosizing
50     config.grid.autoHeight = false;
51     config.grid.autoWidth = false;
52     this.grid = config.grid;
53     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54     
55      
56 };
57
58 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
59     getId : function(){
60         return this.grid.id;
61     },
62     
63     /**
64      * Returns the grid for this panel
65      * @return {Roo.bootstrap.Table} 
66      */
67     getGrid : function(){
68         return this.grid;    
69     },
70     
71     setSize : function(width, height){
72         if(!this.ignoreResize(width, height)){
73             var grid = this.grid;
74             var size = this.adjustForComponents(width, height);
75             grid.getGridEl().setSize(size.width, size.height);
76             /*
77             var thd = grid.getGridEl().select('thead',true).first();
78             var tbd = grid.getGridEl().select('tbody', true).first();
79             if (tbd) {
80                 tbd.setSize(width, height - thd.getHeight());
81             }
82             */
83             grid.autoSize();
84         }
85     },
86      
87     
88     
89     beforeSlide : function(){
90         this.grid.getView().scroller.clip();
91     },
92     
93     afterSlide : function(){
94         this.grid.getView().scroller.unclip();
95     },
96     
97     destroy : function(){
98         this.grid.destroy();
99         delete this.grid;
100         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
101     }
102 });