360b554cba4a225385428b035781a7b5877a4c4a
[roojs1] / Roo / bootstrap / Table.js
1 /*
2  * - LGPL
3  *
4  * table
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.Table
10  * @extends Roo.bootstrap.Component
11  * Bootstrap Table class
12  * @cfg {String} cls table class
13  * @cfg {String} align (left|center|right) Specifies the alignment of a table according to surrounding text
14  * @cfg {String} bgcolor Specifies the background color for a table
15  * @cfg {Number} border Specifies whether the table cells should have borders or not
16  * @cfg {Number} cellpadding Specifies the space between the cell wall and the cell content
17  * @cfg {Number} cellspacing Specifies the space between cells
18  * @cfg {String} frame Specifies which parts of the outside borders that should be visible
19  * @cfg {String} rules Specifies which parts of the inside borders that should be visible
20  * @cfg {String} sortable Specifies that the table should be sortable
21  * @cfg {String} summary Specifies a summary of the content of a table
22  * @cfg {Number} width Specifies the width of a table
23  * @cfg {String} layout table layout (auto | fixed | initial | inherit)
24  * 
25  * @cfg {boolean} striped Should the rows be alternative striped
26  * @cfg {boolean} bordered Add borders to the table
27  * @cfg {boolean} hover Add hover highlighting
28  * @cfg {boolean} condensed Format condensed
29  * @cfg {boolean} responsive Format condensed
30  * @cfg {Boolean} loadMask (true|false) default false
31  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
32  * @cfg {Boolean} headerShow (true|false) generate thead, default true
33  * @cfg {Boolean} rowSelection (true|false) default false
34  * @cfg {Boolean} cellSelection (true|false) default false
35  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header
36  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
37  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
38  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
39  
40  * 
41  * @constructor
42  * Create a new Table
43  * @param {Object} config The config object
44  */
45
46 Roo.bootstrap.Table = function(config){
47     Roo.bootstrap.Table.superclass.constructor.call(this, config);
48     
49   
50     
51     // BC...
52     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
53     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
54     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
55     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
56     
57     this.sm = this.sm || {xtype: 'RowSelectionModel'};
58     if (this.sm) {
59         this.sm.grid = this;
60         this.selModel = Roo.factory(this.sm, Roo.bootstrap.Table);
61         this.sm = this.selModel;
62         this.sm.xmodule = this.xmodule || false;
63     }
64     
65     if (this.cm && typeof(this.cm.config) == 'undefined') {
66         this.colModel = new Roo.grid.ColumnModel(this.cm);
67         this.cm = this.colModel;
68         this.cm.xmodule = this.xmodule || false;
69     }
70     if (this.store) {
71         this.store= Roo.factory(this.store, Roo.data);
72         this.ds = this.store;
73         this.ds.xmodule = this.xmodule || false;
74          
75     }
76     if (this.footer && this.store) {
77         this.footer.dataSource = this.ds;
78         this.footer = Roo.factory(this.footer);
79     }
80     
81     /** @private */
82     this.addEvents({
83         /**
84          * @event cellclick
85          * Fires when a cell is clicked
86          * @param {Roo.bootstrap.Table} this
87          * @param {Roo.Element} el
88          * @param {Number} rowIndex
89          * @param {Number} columnIndex
90          * @param {Roo.EventObject} e
91          */
92         "cellclick" : true,
93         /**
94          * @event celldblclick
95          * Fires when a cell is double clicked
96          * @param {Roo.bootstrap.Table} this
97          * @param {Roo.Element} el
98          * @param {Number} rowIndex
99          * @param {Number} columnIndex
100          * @param {Roo.EventObject} e
101          */
102         "celldblclick" : true,
103         /**
104          * @event rowclick
105          * Fires when a row is clicked
106          * @param {Roo.bootstrap.Table} this
107          * @param {Roo.Element} el
108          * @param {Number} rowIndex
109          * @param {Roo.EventObject} e
110          */
111         "rowclick" : true,
112         /**
113          * @event rowdblclick
114          * Fires when a row is double clicked
115          * @param {Roo.bootstrap.Table} this
116          * @param {Roo.Element} el
117          * @param {Number} rowIndex
118          * @param {Roo.EventObject} e
119          */
120         "rowdblclick" : true,
121         /**
122          * @event mouseover
123          * Fires when a mouseover occur
124          * @param {Roo.bootstrap.Table} this
125          * @param {Roo.Element} el
126          * @param {Number} rowIndex
127          * @param {Number} columnIndex
128          * @param {Roo.EventObject} e
129          */
130         "mouseover" : true,
131         /**
132          * @event mouseout
133          * Fires when a mouseout occur
134          * @param {Roo.bootstrap.Table} this
135          * @param {Roo.Element} el
136          * @param {Number} rowIndex
137          * @param {Number} columnIndex
138          * @param {Roo.EventObject} e
139          */
140         "mouseout" : true,
141         /**
142          * @event rowclass
143          * Fires when a row is rendered, so you can change add a style to it.
144          * @param {Roo.bootstrap.Table} this
145          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
146          */
147         'rowclass' : true,
148           /**
149          * @event rowsrendered
150          * Fires when all the  rows have been rendered
151          * @param {Roo.bootstrap.Table} this
152          */
153         'rowsrendered' : true,
154         /**
155          * @event contextmenu
156          * The raw contextmenu event for the entire grid.
157          * @param {Roo.EventObject} e
158          */
159         "contextmenu" : true,
160         /**
161          * @event rowcontextmenu
162          * Fires when a row is right clicked
163          * @param {Roo.bootstrap.Table} this
164          * @param {Number} rowIndex
165          * @param {Roo.EventObject} e
166          */
167         "rowcontextmenu" : true,
168         /**
169          * @event cellcontextmenu
170          * Fires when a cell is right clicked
171          * @param {Roo.bootstrap.Table} this
172          * @param {Number} rowIndex
173          * @param {Number} cellIndex
174          * @param {Roo.EventObject} e
175          */
176          "cellcontextmenu" : true,
177          /**
178          * @event headercontextmenu
179          * Fires when a header is right clicked
180          * @param {Roo.bootstrap.Table} this
181          * @param {Number} columnIndex
182          * @param {Roo.EventObject} e
183          */
184         "headercontextmenu" : true
185     });
186 };
187
188 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
189     
190     cls: false,
191     align: false,
192     bgcolor: false,
193     border: false,
194     cellpadding: false,
195     cellspacing: false,
196     frame: false,
197     rules: false,
198     sortable: false,
199     summary: false,
200     width: false,
201     striped : false,
202     scrollBody : false,
203     bordered: false,
204     hover:  false,
205     condensed : false,
206     responsive : false,
207     sm : false,
208     cm : false,
209     store : false,
210     loadMask : false,
211     footerShow : true,
212     headerShow : true,
213   
214     rowSelection : false,
215     cellSelection : false,
216     layout : false,
217     
218     // Roo.Element - the tbody
219     mainBody: false,
220     // Roo.Element - thead element
221     mainHead: false,
222     
223     container: false, // used by gridpanel...
224     
225     lazyLoad : false,
226     
227     CSS : Roo.util.CSS,
228     
229     auto_hide_footer : false,
230     
231     getAutoCreate : function()
232     {
233         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
234         
235         cfg = {
236             tag: 'table',
237             cls : 'table',
238             cn : []
239         };
240         if (this.scrollBody) {
241             cfg.cls += ' table-body-fixed';
242         }    
243         if (this.striped) {
244             cfg.cls += ' table-striped';
245         }
246         
247         if (this.hover) {
248             cfg.cls += ' table-hover';
249         }
250         if (this.bordered) {
251             cfg.cls += ' table-bordered';
252         }
253         if (this.condensed) {
254             cfg.cls += ' table-condensed';
255         }
256         if (this.responsive) {
257             cfg.cls += ' table-responsive';
258         }
259         
260         if (this.cls) {
261             cfg.cls+=  ' ' +this.cls;
262         }
263         
264         // this lot should be simplifed...
265         var _t = this;
266         var cp = [
267             'align',
268             'bgcolor',
269             'border',
270             'cellpadding',
271             'cellspacing',
272             'frame',
273             'rules',
274             'sortable',
275             'summary',
276             'width'
277         ].forEach(function(k) {
278             if (_t[k]) {
279                 cfg[k] = _t[k];
280             }
281         });
282         
283         
284         if (this.layout) {
285             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
286         }
287         
288         if(this.store || this.cm){
289             if(this.headerShow){
290                 cfg.cn.push(this.renderHeader());
291             }
292             
293             cfg.cn.push(this.renderBody());
294             
295             if(this.footerShow){
296                 cfg.cn.push(this.renderFooter());
297             }
298             // where does this come from?
299             //cfg.cls+=  ' TableGrid';
300         }
301         
302         return { cn : [ cfg ] };
303     },
304     
305     initEvents : function()
306     {   
307         if(!this.store || !this.cm){
308             return;
309         }
310         if (this.selModel) {
311             this.selModel.initEvents();
312         }
313         
314         
315         //Roo.log('initEvents with ds!!!!');
316         
317         this.mainBody = this.el.select('tbody', true).first();
318         this.mainHead = this.el.select('thead', true).first();
319         this.mainFoot = this.el.select('tfoot', true).first();
320         
321         
322         
323         
324         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
325             e.on('click', this.sort, this);
326         }, this);
327         
328         this.mainBody.on("click", this.onClick, this);
329         this.mainBody.on("dblclick", this.onDblClick, this);
330         
331         // why is this done????? = it breaks dialogs??
332         //this.parent().el.setStyle('position', 'relative');
333         
334         
335         if (this.footer) {
336             this.footer.parentId = this.id;
337             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
338             
339             if(this.lazyLoad){
340                 this.el.select('tfoot tr td').first().addClass('hide');
341             }
342         } 
343         
344         if(this.loadMask) {
345             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
346         }
347         
348         this.store.on('load', this.onLoad, this);
349         this.store.on('beforeload', this.onBeforeLoad, this);
350         this.store.on('update', this.onUpdate, this);
351         this.store.on('add', this.onAdd, this);
352         this.store.on("clear", this.clear, this);
353         
354         this.el.on("contextmenu", this.onContextMenu, this);
355         
356         this.mainBody.on('scroll', this.onBodyScroll, this);
357         
358         this.cm.on("headerchange", this.onHeaderChange, this);
359         
360         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
361         
362     },
363     
364     onContextMenu : function(e, t)
365     {
366         this.processEvent("contextmenu", e);
367     },
368     
369     processEvent : function(name, e)
370     {
371         if (name != 'touchstart' ) {
372             this.fireEvent(name, e);    
373         }
374         
375         var t = e.getTarget();
376         
377         var cell = Roo.get(t);
378         
379         if(!cell){
380             return;
381         }
382         
383         if(cell.findParent('tfoot', false, true)){
384             return;
385         }
386         
387         if(cell.findParent('thead', false, true)){
388             
389             if(e.getTarget().nodeName.toLowerCase() != 'th'){
390                 cell = Roo.get(t).findParent('th', false, true);
391                 if (!cell) {
392                     Roo.log("failed to find th in thead?");
393                     Roo.log(e.getTarget());
394                     return;
395                 }
396             }
397             
398             var cellIndex = cell.dom.cellIndex;
399             
400             var ename = name == 'touchstart' ? 'click' : name;
401             this.fireEvent("header" + ename, this, cellIndex, e);
402             
403             return;
404         }
405         
406         if(e.getTarget().nodeName.toLowerCase() != 'td'){
407             cell = Roo.get(t).findParent('td', false, true);
408             if (!cell) {
409                 Roo.log("failed to find th in tbody?");
410                 Roo.log(e.getTarget());
411                 return;
412             }
413         }
414         
415         var row = cell.findParent('tr', false, true);
416         var cellIndex = cell.dom.cellIndex;
417         var rowIndex = row.dom.rowIndex - 1;
418         
419         if(row !== false){
420             
421             this.fireEvent("row" + name, this, rowIndex, e);
422             
423             if(cell !== false){
424             
425                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
426             }
427         }
428         
429     },
430     
431     onMouseover : function(e, el)
432     {
433         var cell = Roo.get(el);
434         
435         if(!cell){
436             return;
437         }
438         
439         if(e.getTarget().nodeName.toLowerCase() != 'td'){
440             cell = cell.findParent('td', false, true);
441         }
442         
443         var row = cell.findParent('tr', false, true);
444         var cellIndex = cell.dom.cellIndex;
445         var rowIndex = row.dom.rowIndex - 1; // start from 0
446         
447         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
448         
449     },
450     
451     onMouseout : function(e, el)
452     {
453         var cell = Roo.get(el);
454         
455         if(!cell){
456             return;
457         }
458         
459         if(e.getTarget().nodeName.toLowerCase() != 'td'){
460             cell = cell.findParent('td', false, true);
461         }
462         
463         var row = cell.findParent('tr', false, true);
464         var cellIndex = cell.dom.cellIndex;
465         var rowIndex = row.dom.rowIndex - 1; // start from 0
466         
467         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
468         
469     },
470     
471     onClick : function(e, el)
472     {
473         var cell = Roo.get(el);
474         
475         if(!cell || (!this.cellSelection && !this.rowSelection)){
476             return;
477         }
478         
479         if(e.getTarget().nodeName.toLowerCase() != 'td'){
480             cell = cell.findParent('td', false, true);
481         }
482         
483         if(!cell || typeof(cell) == 'undefined'){
484             return;
485         }
486         
487         var row = cell.findParent('tr', false, true);
488         
489         if(!row || typeof(row) == 'undefined'){
490             return;
491         }
492         
493         var cellIndex = cell.dom.cellIndex;
494         var rowIndex = this.getRowIndex(row);
495         
496         // why??? - should these not be based on SelectionModel?
497         if(this.cellSelection){
498             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
499         }
500         
501         if(this.rowSelection){
502             this.fireEvent('rowclick', this, row, rowIndex, e);
503         }
504         
505         
506     },
507         
508     onDblClick : function(e,el)
509     {
510         var cell = Roo.get(el);
511         
512         if(!cell || (!this.cellSelection && !this.rowSelection)){
513             return;
514         }
515         
516         if(e.getTarget().nodeName.toLowerCase() != 'td'){
517             cell = cell.findParent('td', false, true);
518         }
519         
520         if(!cell || typeof(cell) == 'undefined'){
521             return;
522         }
523         
524         var row = cell.findParent('tr', false, true);
525         
526         if(!row || typeof(row) == 'undefined'){
527             return;
528         }
529         
530         var cellIndex = cell.dom.cellIndex;
531         var rowIndex = this.getRowIndex(row);
532         
533         if(this.cellSelection){
534             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
535         }
536         
537         if(this.rowSelection){
538             this.fireEvent('rowdblclick', this, row, rowIndex, e);
539         }
540     },
541     
542     sort : function(e,el)
543     {
544         var col = Roo.get(el);
545         
546         if(!col.hasClass('sortable')){
547             return;
548         }
549         
550         var sort = col.attr('sort');
551         var dir = 'ASC';
552         
553         if(col.select('i', true).first().hasClass('fa-arrow-up')){
554             dir = 'DESC';
555         }
556         
557         this.store.sortInfo = {field : sort, direction : dir};
558         
559         if (this.footer) {
560             Roo.log("calling footer first");
561             this.footer.onClick('first');
562         } else {
563         
564             this.store.load({ params : { start : 0 } });
565         }
566     },
567     
568     renderHeader : function()
569     {
570         var header = {
571             tag: 'thead',
572             cn : []
573         };
574         
575         var cm = this.cm;
576         this.totalWidth = 0;
577         
578         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
579             
580             var config = cm.config[i];
581             
582             var c = {
583                 tag: 'th',
584                 cls : 'x-hcol-' + i,
585                 style : '',
586                 
587                 html: cm.getColumnHeader(i)
588             };
589             
590             var tooltip = cm.getColumnTooltip(i);
591             if (tooltip) {
592                 c.tooltip = tooltip;
593             }
594             
595             
596             var hh = '';
597             
598             if(typeof(config.sortable) != 'undefined' && config.sortable){
599                 c.cls = 'sortable';
600                 c.html = '<i class="fa"></i>' + c.html;
601             }
602             
603             // could use BS4 hidden-..-down 
604             
605             if(typeof(config.lgHeader) != 'undefined'){
606                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
607             }
608             
609             if(typeof(config.mdHeader) != 'undefined'){
610                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
611             }
612             
613             if(typeof(config.smHeader) != 'undefined'){
614                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
615             }
616             
617             if(typeof(config.xsHeader) != 'undefined'){
618                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
619             }
620             
621             if(hh.length){
622                 c.html = hh;
623             }
624             
625             if(typeof(config.tooltip) != 'undefined'){
626                 c.tooltip = config.tooltip;
627             }
628             
629             if(typeof(config.colspan) != 'undefined'){
630                 c.colspan = config.colspan;
631             }
632             
633             if(typeof(config.hidden) != 'undefined' && config.hidden){
634                 c.style += ' display:none;';
635             }
636             
637             if(typeof(config.dataIndex) != 'undefined'){
638                 c.sort = config.dataIndex;
639             }
640             
641            
642             
643             if(typeof(config.align) != 'undefined' && config.align.length){
644                 c.style += ' text-align:' + config.align + ';';
645             }
646             
647             if(typeof(config.width) != 'undefined'){
648                 c.style += ' width:' + config.width + 'px;';
649                 this.totalWidth += config.width;
650             } else {
651                 this.totalWidth += 100; // assume minimum of 100 per column?
652             }
653             
654             if(typeof(config.cls) != 'undefined'){
655                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
656             }
657             
658             ['xs','sm','md','lg'].map(function(size){
659                 
660                 if(typeof(config[size]) == 'undefined'){
661                     return;
662                 }
663                  
664                 if (!config[size]) { // 0 = hidden
665                     // BS 4 '0' is treated as hide that column and below.
666                     c.cls += ' hidden-' + size + ' hidden' + size + '-down';
667                     return;
668                 }
669                 
670                 c.cls += ' col-' + size + '-' + config[size] + (
671                     size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
672                 );
673                 
674                 
675             });
676             
677             header.cn.push(c)
678         }
679         
680         return header;
681     },
682     
683     renderBody : function()
684     {
685         var body = {
686             tag: 'tbody',
687             cn : [
688                 {
689                     tag: 'tr',
690                     cn : [
691                         {
692                             tag : 'td',
693                             colspan :  this.cm.getColumnCount()
694                         }
695                     ]
696                 }
697             ]
698         };
699         
700         return body;
701     },
702     
703     renderFooter : function()
704     {
705         var footer = {
706             tag: 'tfoot',
707             cn : [
708                 {
709                     tag: 'tr',
710                     cn : [
711                         {
712                             tag : 'td',
713                             colspan :  this.cm.getColumnCount()
714                         }
715                     ]
716                 }
717             ]
718         };
719         
720         return footer;
721     },
722     
723     
724     
725     onLoad : function()
726     {
727 //        Roo.log('ds onload');
728         this.clear();
729         
730         var _this = this;
731         var cm = this.cm;
732         var ds = this.store;
733         
734         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
735             e.select('i', true).removeClass(['fa-arrow-up', 'fa-arrow-down']);
736             if (_this.store.sortInfo) {
737                     
738                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
739                     e.select('i', true).addClass(['fa-arrow-up']);
740                 }
741                 
742                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
743                     e.select('i', true).addClass(['fa-arrow-down']);
744                 }
745             }
746         });
747         
748         var tbody =  this.mainBody;
749               
750         if(ds.getCount() > 0){
751             ds.data.each(function(d,rowIndex){
752                 var row =  this.renderRow(cm, ds, rowIndex);
753                 
754                 tbody.createChild(row);
755                 
756                 var _this = this;
757                 
758                 if(row.cellObjects.length){
759                     Roo.each(row.cellObjects, function(r){
760                         _this.renderCellObject(r);
761                     })
762                 }
763                 
764             }, this);
765         }
766         
767         var tfoot = this.el.select('tfoot', true).first();
768         
769         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
770             
771             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
772             
773             var total = this.ds.getTotalCount();
774             
775             if(this.footer.pageSize < total){
776                 this.mainFoot.show();
777             }
778         }
779         
780         Roo.each(this.el.select('tbody td', true).elements, function(e){
781             e.on('mouseover', _this.onMouseover, _this);
782         });
783         
784         Roo.each(this.el.select('tbody td', true).elements, function(e){
785             e.on('mouseout', _this.onMouseout, _this);
786         });
787         this.fireEvent('rowsrendered', this);
788         
789         this.autoSize();
790     },
791     
792     
793     onUpdate : function(ds,record)
794     {
795         this.refreshRow(record);
796         this.autoSize();
797     },
798     
799     onRemove : function(ds, record, index, isUpdate){
800         if(isUpdate !== true){
801             this.fireEvent("beforerowremoved", this, index, record);
802         }
803         var bt = this.mainBody.dom;
804         
805         var rows = this.el.select('tbody > tr', true).elements;
806         
807         if(typeof(rows[index]) != 'undefined'){
808             bt.removeChild(rows[index].dom);
809         }
810         
811 //        if(bt.rows[index]){
812 //            bt.removeChild(bt.rows[index]);
813 //        }
814         
815         if(isUpdate !== true){
816             //this.stripeRows(index);
817             //this.syncRowHeights(index, index);
818             //this.layout();
819             this.fireEvent("rowremoved", this, index, record);
820         }
821     },
822     
823     onAdd : function(ds, records, rowIndex)
824     {
825         //Roo.log('on Add called');
826         // - note this does not handle multiple adding very well..
827         var bt = this.mainBody.dom;
828         for (var i =0 ; i < records.length;i++) {
829             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
830             //Roo.log(records[i]);
831             //Roo.log(this.store.getAt(rowIndex+i));
832             this.insertRow(this.store, rowIndex + i, false);
833             return;
834         }
835         
836     },
837     
838     
839     refreshRow : function(record){
840         var ds = this.store, index;
841         if(typeof record == 'number'){
842             index = record;
843             record = ds.getAt(index);
844         }else{
845             index = ds.indexOf(record);
846             if (index < 0) {
847                 return; // should not happen - but seems to 
848             }
849         }
850         this.insertRow(ds, index, true);
851         this.autoSize();
852         this.onRemove(ds, record, index+1, true);
853         this.autoSize();
854         //this.syncRowHeights(index, index);
855         //this.layout();
856         this.fireEvent("rowupdated", this, index, record);
857     },
858     
859     insertRow : function(dm, rowIndex, isUpdate){
860         
861         if(!isUpdate){
862             this.fireEvent("beforerowsinserted", this, rowIndex);
863         }
864             //var s = this.getScrollState();
865         var row = this.renderRow(this.cm, this.store, rowIndex);
866         // insert before rowIndex..
867         var e = this.mainBody.createChild(row,this.getRowDom(rowIndex));
868         
869         var _this = this;
870                 
871         if(row.cellObjects.length){
872             Roo.each(row.cellObjects, function(r){
873                 _this.renderCellObject(r);
874             })
875         }
876             
877         if(!isUpdate){
878             this.fireEvent("rowsinserted", this, rowIndex);
879             //this.syncRowHeights(firstRow, lastRow);
880             //this.stripeRows(firstRow);
881             //this.layout();
882         }
883         
884     },
885     
886     
887     getRowDom : function(rowIndex)
888     {
889         var rows = this.el.select('tbody > tr', true).elements;
890         
891         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
892         
893     },
894     // returns the object tree for a tr..
895   
896     
897     renderRow : function(cm, ds, rowIndex) 
898     {
899         var d = ds.getAt(rowIndex);
900         
901         var row = {
902             tag : 'tr',
903             cls : 'x-row-' + rowIndex,
904             cn : []
905         };
906             
907         var cellObjects = [];
908         
909         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
910             var config = cm.config[i];
911             
912             var renderer = cm.getRenderer(i);
913             var value = '';
914             var id = false;
915             
916             if(typeof(renderer) !== 'undefined'){
917                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
918             }
919             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
920             // and are rendered into the cells after the row is rendered - using the id for the element.
921             
922             if(typeof(value) === 'object'){
923                 id = Roo.id();
924                 cellObjects.push({
925                     container : id,
926                     cfg : value 
927                 })
928             }
929             
930             var rowcfg = {
931                 record: d,
932                 rowIndex : rowIndex,
933                 colIndex : i,
934                 rowClass : ''
935             };
936
937             this.fireEvent('rowclass', this, rowcfg);
938             
939             var td = {
940                 tag: 'td',
941                 // this might end up displaying HTML?
942                 // this is too messy... - better to only do it on columsn you know are going to be too long
943                 //tooltip : (typeof(value) === 'object') ? '' : value,
944                 cls : rowcfg.rowClass + ' x-col-' + i,
945                 style: '',
946                 html: (typeof(value) === 'object') ? '' : value
947             };
948             
949             if (id) {
950                 td.id = id;
951             }
952             
953             if(typeof(config.colspan) != 'undefined'){
954                 td.colspan = config.colspan;
955             }
956             
957             if(typeof(config.hidden) != 'undefined' && config.hidden){
958                 td.style += ' display:none;';
959             }
960             
961             if(typeof(config.align) != 'undefined' && config.align.length){
962                 td.style += ' text-align:' + config.align + ';';
963             }
964             if(typeof(config.valign) != 'undefined' && config.valign.length){
965                 td.style += ' vertical-align:' + config.valign + ';';
966             }
967             
968             if(typeof(config.width) != 'undefined'){
969                 td.style += ' width:' +  config.width + 'px;';
970             }
971             
972             if(typeof(config.cursor) != 'undefined'){
973                 td.style += ' cursor:' +  config.cursor + ';';
974             }
975             
976             if(typeof(config.cls) != 'undefined'){
977                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
978             }
979             
980             ['xs','sm','md','lg'].map(function(size){
981                 
982                 if(typeof(config[size]) == 'undefined'){
983                     return;
984                 }
985                 
986                 
987                   
988                 if (!config[size]) { // 0 = hidden
989                     // BS 4 '0' is treated as hide that column and below.
990                     td.cls += ' hidden-' + size + ' hidden' + size + '-down';
991                     return;
992                 }
993                 
994                 td.cls += ' col-' + size + '-' + config[size] + (
995                     size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
996                 );
997                  
998
999             });
1000             
1001             row.cn.push(td);
1002            
1003         }
1004         
1005         row.cellObjects = cellObjects;
1006         
1007         return row;
1008           
1009     },
1010     
1011     
1012     
1013     onBeforeLoad : function()
1014     {
1015         
1016     },
1017      /**
1018      * Remove all rows
1019      */
1020     clear : function()
1021     {
1022         this.el.select('tbody', true).first().dom.innerHTML = '';
1023     },
1024     /**
1025      * Show or hide a row.
1026      * @param {Number} rowIndex to show or hide
1027      * @param {Boolean} state hide
1028      */
1029     setRowVisibility : function(rowIndex, state)
1030     {
1031         var bt = this.mainBody.dom;
1032         
1033         var rows = this.el.select('tbody > tr', true).elements;
1034         
1035         if(typeof(rows[rowIndex]) == 'undefined'){
1036             return;
1037         }
1038         rows[rowIndex].dom.style.display = state ? '' : 'none';
1039     },
1040     
1041     
1042     getSelectionModel : function(){
1043         if(!this.selModel){
1044             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
1045         }
1046         return this.selModel;
1047     },
1048     /*
1049      * Render the Roo.bootstrap object from renderder
1050      */
1051     renderCellObject : function(r)
1052     {
1053         var _this = this;
1054         
1055         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
1056         
1057         var t = r.cfg.render(r.container);
1058         
1059         if(r.cfg.cn){
1060             Roo.each(r.cfg.cn, function(c){
1061                 var child = {
1062                     container: t.getChildContainer(),
1063                     cfg: c
1064                 };
1065                 _this.renderCellObject(child);
1066             })
1067         }
1068     },
1069     
1070     getRowIndex : function(row)
1071     {
1072         var rowIndex = -1;
1073         
1074         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
1075             if(el != row){
1076                 return;
1077             }
1078             
1079             rowIndex = index;
1080         });
1081         
1082         return rowIndex;
1083     },
1084      /**
1085      * Returns the grid's underlying element = used by panel.Grid
1086      * @return {Element} The element
1087      */
1088     getGridEl : function(){
1089         return this.el;
1090     },
1091      /**
1092      * Forces a resize - used by panel.Grid
1093      * @return {Element} The element
1094      */
1095     autoSize : function()
1096     {
1097         //var ctr = Roo.get(this.container.dom.parentElement);
1098         var ctr = Roo.get(this.el.dom);
1099         
1100         var thd = this.getGridEl().select('thead',true).first();
1101         var tbd = this.getGridEl().select('tbody', true).first();
1102         var tfd = this.getGridEl().select('tfoot', true).first();
1103         
1104         var cw = ctr.getWidth();
1105         this.getGridEl().select('tfoot tr, tfoot  td',true).setWidth(cw);
1106         
1107         if (tbd) {
1108             
1109             tbd.setWidth(ctr.getWidth());
1110             // if the body has a max height - and then scrolls - we should perhaps set up the height here
1111             // this needs fixing for various usage - currently only hydra job advers I think..
1112             //tdb.setHeight(
1113             //        ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
1114             //); 
1115             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
1116             cw -= barsize;
1117         }
1118         cw = Math.max(cw, this.totalWidth);
1119         this.getGridEl().select('tbody tr',true).setWidth(cw);
1120         
1121         // resize 'expandable coloumn?
1122         
1123         return; // we doe not have a view in this design..
1124         
1125     },
1126     onBodyScroll: function()
1127     {
1128         //Roo.log("body scrolled');" + this.mainBody.dom.scrollLeft);
1129         if(this.mainHead){
1130             this.mainHead.setStyle({
1131                 'position' : 'relative',
1132                 'left': (-1* this.mainBody.dom.scrollLeft) + 'px'
1133             });
1134         }
1135         
1136         if(this.lazyLoad){
1137             
1138             var scrollHeight = this.mainBody.dom.scrollHeight;
1139             
1140             var scrollTop = Math.ceil(this.mainBody.getScroll().top);
1141             
1142             var height = this.mainBody.getHeight();
1143             
1144             if(scrollHeight - height == scrollTop) {
1145                 
1146                 var total = this.ds.getTotalCount();
1147                 
1148                 if(this.footer.cursor + this.footer.pageSize < total){
1149                     
1150                     this.footer.ds.load({
1151                         params : {
1152                             start : this.footer.cursor + this.footer.pageSize,
1153                             limit : this.footer.pageSize
1154                         },
1155                         add : true
1156                     });
1157                 }
1158             }
1159             
1160         }
1161     },
1162     
1163     onHeaderChange : function()
1164     {
1165         var header = this.renderHeader();
1166         var table = this.el.select('table', true).first();
1167         
1168         this.mainHead.remove();
1169         this.mainHead = table.createChild(header, this.mainBody, false);
1170         
1171         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
1172             e.on('click', this.sort, this);
1173         }, this);
1174         
1175         
1176     },
1177     
1178     onHiddenChange : function(colModel, colIndex, hidden)
1179     {
1180         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
1181         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
1182         
1183         this.CSS.updateRule(thSelector, "display", "");
1184         this.CSS.updateRule(tdSelector, "display", "");
1185         
1186         if(hidden){
1187             this.CSS.updateRule(thSelector, "display", "none");
1188             this.CSS.updateRule(tdSelector, "display", "none");
1189         }
1190         
1191         this.onHeaderChange();
1192         this.onLoad();
1193     },
1194     
1195     setColumnWidth: function(col_index, width)
1196     {
1197         // width = "md-2 xs-2..."
1198         if(!this.colModel.config[col_index]) {
1199             return;
1200         }
1201         
1202         var w = width.split(" ");
1203         
1204         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
1205         
1206         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
1207         
1208         
1209         for(var j = 0; j < w.length; j++) {
1210             
1211             if(!w[j]) {
1212                 continue;
1213             }
1214             
1215             var size_cls = w[j].split("-");
1216             
1217             if(!Number.isInteger(size_cls[1] * 1)) {
1218                 continue;
1219             }
1220             
1221             if(!this.colModel.config[col_index][size_cls[0]]) {
1222                 continue;
1223             }
1224             
1225             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
1226                 continue;
1227             }
1228             
1229             h_row[0].classList.replace(
1230                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
1231                 "col-"+size_cls[0]+"-"+size_cls[1]
1232             );
1233             
1234             for(var i = 0; i < rows.length; i++) {
1235                 
1236                 var size_cls = w[j].split("-");
1237                 
1238                 if(!Number.isInteger(size_cls[1] * 1)) {
1239                     continue;
1240                 }
1241                 
1242                 if(!this.colModel.config[col_index][size_cls[0]]) {
1243                     continue;
1244                 }
1245                 
1246                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
1247                     continue;
1248                 }
1249                 
1250                 rows[i].classList.replace(
1251                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
1252                     "col-"+size_cls[0]+"-"+size_cls[1]
1253                 );
1254             }
1255             
1256             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
1257         }
1258     }
1259 });
1260
1261  
1262
1263