94bae515dc3d0674dee875c667c473cda5774660
[roojs1] / Roo / bootstrap / Table.js
1 /**
2  * @class Roo.bootstrap.Table
3  * @licence LGBL
4  * @extends Roo.bootstrap.Component
5  * @children Roo.bootstrap.TableBody
6  * Bootstrap Table class.  This class represents the primary interface of a component based grid control.
7  * Similar to Roo.grid.Grid
8  * <pre><code>
9  var table = Roo.factory({
10     xtype : 'Table',
11     xns : Roo.bootstrap,
12     autoSizeColumns: true,
13     
14     
15     store : {
16         xtype : 'Store',
17         xns : Roo.data,
18         remoteSort : true,
19         sortInfo : { direction : 'ASC', field: 'name' },
20         proxy : {
21            xtype : 'HttpProxy',
22            xns : Roo.data,
23            method : 'GET',
24            url : 'https://example.com/some.data.url.json'
25         },
26         reader : {
27            xtype : 'JsonReader',
28            xns : Roo.data,
29            fields : [ 'id', 'name', whatever' ],
30            id : 'id',
31            root : 'data'
32         }
33     },
34     cm : [
35         {
36             xtype : 'ColumnModel',
37             xns : Roo.grid,
38             align : 'center',
39             cursor : 'pointer',
40             dataIndex : 'is_in_group',
41             header : "Name",
42             sortable : true,
43             renderer : function(v, x , r) {  
44             
45                 return String.format("{0}", v)
46             }
47             width : 3
48         } // more columns..
49     ],
50     selModel : {
51         xtype : 'RowSelectionModel',
52         xns : Roo.bootstrap.Table
53         // you can add listeners to catch selection change here....
54     }
55      
56
57  });
58  // set any options
59  grid.render(Roo.get("some-div"));
60 </code></pre>
61
62 Currently the Table  uses multiple headers to try and handle XL / Medium etc... styling
63
64
65
66  *
67  * @cfg {Roo.grid.AbstractSelectionModel} sm The selection model to use (cell selection is not supported yet)
68  * @cfg {Roo.data.Store} store The data store to use
69  * @cfg {Roo.grid.ColumnModel} cm[] A column for the grid.
70  * 
71  * @cfg {String} cls table class
72  *
73  *
74  * @cfg {string} empty_results  Text to display for no results 
75  * @cfg {boolean} striped Should the rows be alternative striped
76  * @cfg {boolean} bordered Add borders to the table
77  * @cfg {boolean} hover Add hover highlighting
78  * @cfg {boolean} condensed Format condensed
79  * @cfg {boolean} responsive default false - if this is on, columns are rendered with col-xs-4 etc. classes, otherwise columns will be sized by CSS,
80  *                also adds table-responsive (see bootstrap docs for details)
81  * @cfg {Boolean} loadMask (true|false) default false
82  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
83  * @cfg {Boolean} headerShow (true|false) generate thead, default true
84  * @cfg {Boolean} rowSelection (true|false) default false
85  * @cfg {Boolean} cellSelection (true|false) default false
86  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header (with resizable columns)
87  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
88  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
89  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
90  * @cfg {Boolean} enableColumnResize default true if columns can be resized = needs scrollBody to be set to work (drag/drop)
91  * @cfg {Boolean} disableAutoSize disable auto size
92  *
93  * 
94  * @cfg {Number} minColumnWidth default 50 pixels minimum column width 
95  * 
96  * @constructor
97  * Create a new Table
98  * @param {Object} config The config object
99  */
100
101 Roo.bootstrap.Table = function(config)
102 {
103     Roo.bootstrap.Table.superclass.constructor.call(this, config);
104      
105     // BC...
106     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
107     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
108     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
109     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
110     
111     this.view = this; // compat with grid.
112     
113     this.sm = this.sm || {xtype: 'RowSelectionModel'};
114     if (this.sm) {
115         this.sm.grid = this;
116         this.selModel = Roo.factory(this.sm, Roo.grid);
117         this.sm = this.selModel;
118         this.sm.xmodule = this.xmodule || false;
119     }
120     
121     if (this.cm && typeof(this.cm.config) == 'undefined') {
122         this.colModel = new Roo.grid.ColumnModel(this.cm);
123         this.cm = this.colModel;
124         this.cm.xmodule = this.xmodule || false;
125     }
126     if (this.store) {
127         this.store= Roo.factory(this.store, Roo.data);
128         this.ds = this.store;
129         this.ds.xmodule = this.xmodule || false;
130          
131     }
132     if (this.footer && this.store) {
133         this.footer.dataSource = this.ds;
134         this.footer = Roo.factory(this.footer);
135     }
136     
137     /** @private */
138     this.addEvents({
139         /**
140          * @event cellclick
141          * Fires when a cell is clicked
142          * @param {Roo.bootstrap.Table} this
143          * @param {Roo.Element} el
144          * @param {Number} rowIndex
145          * @param {Number} columnIndex
146          * @param {Roo.EventObject} e
147          */
148         "cellclick" : true,
149         /**
150          * @event celldblclick
151          * Fires when a cell is double clicked
152          * @param {Roo.bootstrap.Table} this
153          * @param {Roo.Element} el
154          * @param {Number} rowIndex
155          * @param {Number} columnIndex
156          * @param {Roo.EventObject} e
157          */
158         "celldblclick" : true,
159         /**
160          * @event rowclick
161          * Fires when a row is clicked
162          * @param {Roo.bootstrap.Table} this
163          * @param {Roo.Element} el
164          * @param {Number} rowIndex
165          * @param {Roo.EventObject} e
166          */
167         "rowclick" : true,
168         /**
169          * @event rowdblclick
170          * Fires when a row is double clicked
171          * @param {Roo.bootstrap.Table} this
172          * @param {Roo.Element} el
173          * @param {Number} rowIndex
174          * @param {Roo.EventObject} e
175          */
176         "rowdblclick" : true,
177         /**
178          * @event mouseover
179          * Fires when a mouseover occur
180          * @param {Roo.bootstrap.Table} this
181          * @param {Roo.Element} el
182          * @param {Number} rowIndex
183          * @param {Number} columnIndex
184          * @param {Roo.EventObject} e
185          */
186         "mouseover" : true,
187         /**
188          * @event mouseout
189          * Fires when a mouseout occur
190          * @param {Roo.bootstrap.Table} this
191          * @param {Roo.Element} el
192          * @param {Number} rowIndex
193          * @param {Number} columnIndex
194          * @param {Roo.EventObject} e
195          */
196         "mouseout" : true,
197         /**
198          * @event rowclass
199          * Fires when a row is rendered, so you can change add a style to it.
200          * @param {Roo.bootstrap.Table} this
201          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
202          */
203         'rowclass' : true,
204           /**
205          * @event rowsrendered
206          * Fires when all the  rows have been rendered
207          * @param {Roo.bootstrap.Table} this
208          */
209         'rowsrendered' : true,
210         /**
211          * @event contextmenu
212          * The raw contextmenu event for the entire grid.
213          * @param {Roo.EventObject} e
214          */
215         "contextmenu" : true,
216         /**
217          * @event rowcontextmenu
218          * Fires when a row is right clicked
219          * @param {Roo.bootstrap.Table} this
220          * @param {Number} rowIndex
221          * @param {Roo.EventObject} e
222          */
223         "rowcontextmenu" : true,
224         /**
225          * @event cellcontextmenu
226          * Fires when a cell is right clicked
227          * @param {Roo.bootstrap.Table} this
228          * @param {Number} rowIndex
229          * @param {Number} cellIndex
230          * @param {Roo.EventObject} e
231          */
232          "cellcontextmenu" : true,
233          /**
234          * @event headercontextmenu
235          * Fires when a header is right clicked
236          * @param {Roo.bootstrap.Table} this
237          * @param {Number} columnIndex
238          * @param {Roo.EventObject} e
239          */
240         "headercontextmenu" : true,
241         /**
242          * @event mousedown
243          * The raw mousedown event for the entire grid.
244          * @param {Roo.EventObject} e
245          */
246         "mousedown" : true
247         
248     });
249 };
250
251 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
252     
253     cls: false,
254     
255     empty_results : '',
256     striped : false,
257     scrollBody : false,
258     bordered: false,
259     hover:  false,
260     condensed : false,
261     responsive : false,
262     sm : false,
263     cm : false,
264     store : false,
265     loadMask : false,
266     footerShow : true,
267     headerShow : true,
268     enableColumnResize: true,
269     disableAutoSize: false,
270   
271     rowSelection : false,
272     cellSelection : false,
273     layout : false,
274
275     minColumnWidth : 50,
276     
277     // Roo.Element - the tbody
278     bodyEl: false,  // <tbody> Roo.Element - thead element    
279     headEl: false,  // <thead> Roo.Element - thead element
280     resizeProxy : false, // proxy element for dragging?
281
282
283     
284     container: false, // used by gridpanel...
285     
286     lazyLoad : false,
287     
288     CSS : Roo.util.CSS,
289     
290     auto_hide_footer : false,
291     
292     view: false, // actually points to this..
293     
294     getAutoCreate : function()
295     {
296         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
297         
298         cfg = {
299             tag: 'table',
300             cls : 'table', 
301             cn : []
302         };
303         // this get's auto added by panel.Grid
304         if (this.scrollBody) {
305             cfg.cls += ' table-body-fixed';
306         }    
307         if (this.striped) {
308             cfg.cls += ' table-striped';
309         }
310         
311         if (this.hover) {
312             cfg.cls += ' table-hover';
313         }
314         if (this.bordered) {
315             cfg.cls += ' table-bordered';
316         }
317         if (this.condensed) {
318             cfg.cls += ' table-condensed';
319         }
320         
321         if (this.responsive) {
322             cfg.cls += ' table-responsive';
323         }
324         
325         if (this.cls) {
326             cfg.cls+=  ' ' +this.cls;
327         }
328         
329         
330         
331         if (this.layout) {
332             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
333         }
334         
335         if(this.store || this.cm){
336             if(this.headerShow){
337                 cfg.cn.push(this.renderHeader());
338             }
339             
340             cfg.cn.push(this.renderBody());
341             
342             if(this.footerShow){
343                 cfg.cn.push(this.renderFooter());
344             }
345             // where does this come from?
346             //cfg.cls+=  ' TableGrid';
347         }
348         
349         return { cn : [ cfg ] };
350     },
351     
352     initEvents : function()
353     {   
354         if(!this.store || !this.cm){
355             return;
356         }
357         if (this.selModel) {
358             this.selModel.initEvents();
359         }
360         
361         
362         //Roo.log('initEvents with ds!!!!');
363         
364         this.bodyEl = this.el.select('tbody', true).first();
365         this.headEl = this.el.select('thead', true).first();
366         this.mainFoot = this.el.select('tfoot', true).first();
367         
368         
369         
370         
371         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
372             e.on('click', this.sort, this);
373         }, this);
374         
375         
376         // why is this done????? = it breaks dialogs??
377         //this.parent().el.setStyle('position', 'relative');
378         
379         
380         if (this.footer) {
381             this.footer.parentId = this.id;
382             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
383             
384             if(this.lazyLoad){
385                 this.el.select('tfoot tr td').first().addClass('hide');
386             }
387         } 
388         
389         if(this.loadMask) {
390             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
391         }
392         
393         this.store.on('load', this.onLoad, this);
394         this.store.on('beforeload', this.onBeforeLoad, this);
395         this.store.on('update', this.onUpdate, this);
396         this.store.on('add', this.onAdd, this);
397         this.store.on("clear", this.clear, this);
398         
399         this.el.on("contextmenu", this.onContextMenu, this);
400         
401         
402         this.cm.on("headerchange", this.onHeaderChange, this);
403         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
404
405  //?? does bodyEl get replaced on render?
406         this.bodyEl.on("click", this.onClick, this);
407         this.bodyEl.on("dblclick", this.onDblClick, this);        
408         this.bodyEl.on('scroll', this.onBodyScroll, this);
409
410         // guessing mainbody will work - this relays usually caught by selmodel at present.
411         this.relayEvents(this.bodyEl, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
412   
413   
414         this.resizeProxy = Roo.get(document.body).createChild({ cls:"x-grid-resize-proxy", html: '&#160;' });
415         
416   
417         if(this.headEl && this.enableColumnResize !== false && Roo.grid.SplitDragZone){
418             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
419         }
420         
421         this.initCSS();
422     },
423     // Compatibility with grid - we implement all the view features at present.
424     getView : function()
425     {
426         return this;
427     },
428     
429     initCSS : function()
430     {
431         if(this.disableAutoSize) {
432             Roo.log("DISABLEINITCSS");
433             return;
434         }
435         
436         var cm = this.cm, styles = [];
437         this.CSS.removeStyleSheet(this.id + '-cssrules');
438         var headHeight = this.headEl ? this.headEl.dom.clientHeight : 0;
439         // we can honour xs/sm/md/xl  as widths...
440         // we first have to decide what widht we are currently at...
441         var sz = Roo.getGridSize();
442         
443         var total = 0;
444         var last = -1;
445         var cols = []; // visable cols.
446         var total_abs = 0;
447         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
448             var w = cm.getColumnWidth(i, false);
449             if(cm.isHidden(i)){
450                 cols.push( { rel : false, abs : 0 });
451                 continue;
452             }
453             if (w !== false) {
454                 cols.push( { rel : false, abs : w });
455                 total_abs += w;
456                 last = i; // not really..
457                 continue;
458             }
459             var w = cm.getColumnWidth(i, sz);
460             if (w > 0) {
461                 last = i
462             }
463             total += w;
464             cols.push( { rel : w, abs : false });
465         }
466         
467         var avail = this.bodyEl.dom.clientWidth - total_abs;
468         
469         var unitWidth = Math.floor(avail / total);
470         var rem = avail - (unitWidth * total);
471         
472         var hidden, width, pos = 0 , splithide , left;
473         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
474             
475             hidden = 'display:none;';
476             left = '';
477             width  = 'width:0px;';
478             splithide = '';
479             if(!cm.isHidden(i)){
480                 hidden = '';
481                 
482                 
483                 // we can honour xs/sm/md/xl ?
484                 var w = cols[i].rel == false ? cols[i].abs : (cols[i].rel * unitWidth);
485                 if (w===0) {
486                     hidden = 'display:none;';
487                 }
488                 // width should return a small number...
489                 if (i == last) {
490                     w+=rem; // add the remaining with..
491                 }
492                 pos += w;
493                 left = "left:" + (pos -4) + "px;";
494                 width = "width:" + w+ "px;";
495                 
496             }
497             if (this.responsive) {
498                 width = '';
499                 left = '';
500                 hidden = cm.isHidden(i) ? 'display:none;' : '';
501                 splithide = 'display: none;';
502             }
503             
504             styles.push( '#' , this.id , ' .x-col-' , i, " {", cm.config[i].css, width, hidden, "}\n" );
505             if (this.headEl) {
506                 if (i == last) {
507                     splithide = 'display:none;';
508                 }
509                 
510                 styles.push('#' , this.id , ' .x-hcol-' , i, " { ", width, hidden," }\n",
511                             '#' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', (headHeight - 4), "px;}\n",
512                             // this is the popover version..
513                             '.popover-inner #' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', 100, "%;}\n"
514                 );
515             }
516             
517         }
518         //Roo.log(styles.join(''));
519         this.CSS.createStyleSheet( styles.join(''), this.id + '-cssrules');
520         
521     },
522     
523     
524     
525     onContextMenu : function(e, t)
526     {
527         this.processEvent("contextmenu", e);
528     },
529     
530     processEvent : function(name, e)
531     {
532         if (name != 'touchstart' ) {
533             this.fireEvent(name, e);    
534         }
535         
536         var t = e.getTarget();
537         
538         var cell = Roo.get(t);
539         
540         if(!cell){
541             return;
542         }
543         
544         if(cell.findParent('tfoot', false, true)){
545             return;
546         }
547         
548         if(cell.findParent('thead', false, true)){
549             
550             if(e.getTarget().nodeName.toLowerCase() != 'th'){
551                 cell = Roo.get(t).findParent('th', false, true);
552                 if (!cell) {
553                     Roo.log("failed to find th in thead?");
554                     Roo.log(e.getTarget());
555                     return;
556                 }
557             }
558             
559             var cellIndex = cell.dom.cellIndex;
560             
561             var ename = name == 'touchstart' ? 'click' : name;
562             this.fireEvent("header" + ename, this, cellIndex, e);
563             
564             return;
565         }
566         
567         if(e.getTarget().nodeName.toLowerCase() != 'td'){
568             cell = Roo.get(t).findParent('td', false, true);
569             if (!cell) {
570                 Roo.log("failed to find th in tbody?");
571                 Roo.log(e.getTarget());
572                 return;
573             }
574         }
575         
576         var row = cell.findParent('tr', false, true);
577         var cellIndex = cell.dom.cellIndex;
578         var rowIndex = row.dom.rowIndex - 1;
579         
580         if(row !== false){
581             
582             this.fireEvent("row" + name, this, rowIndex, e);
583             
584             if(cell !== false){
585             
586                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
587             }
588         }
589         
590     },
591     
592     onMouseover : function(e, el)
593     {
594         var cell = Roo.get(el);
595         
596         if(!cell){
597             return;
598         }
599         
600         if(e.getTarget().nodeName.toLowerCase() != 'td'){
601             cell = cell.findParent('td', false, true);
602         }
603         
604         var row = cell.findParent('tr', false, true);
605         var cellIndex = cell.dom.cellIndex;
606         var rowIndex = row.dom.rowIndex - 1; // start from 0
607         
608         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
609         
610     },
611     
612     onMouseout : function(e, el)
613     {
614         var cell = Roo.get(el);
615         
616         if(!cell){
617             return;
618         }
619         
620         if(e.getTarget().nodeName.toLowerCase() != 'td'){
621             cell = cell.findParent('td', false, true);
622         }
623         
624         var row = cell.findParent('tr', false, true);
625         var cellIndex = cell.dom.cellIndex;
626         var rowIndex = row.dom.rowIndex - 1; // start from 0
627         
628         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
629         
630     },
631     
632     onClick : function(e, el)
633     {
634         var cell = Roo.get(el);
635         
636         if(!cell || (!this.cellSelection && !this.rowSelection)){
637             return;
638         }
639         
640         if(e.getTarget().nodeName.toLowerCase() != 'td'){
641             cell = cell.findParent('td', false, true);
642         }
643         
644         if(!cell || typeof(cell) == 'undefined'){
645             return;
646         }
647         
648         var row = cell.findParent('tr', false, true);
649         
650         if(!row || typeof(row) == 'undefined'){
651             return;
652         }
653         
654         var cellIndex = cell.dom.cellIndex;
655         var rowIndex = this.getRowIndex(row);
656         
657         // why??? - should these not be based on SelectionModel?
658         //if(this.cellSelection){
659             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
660         //}
661         
662         //if(this.rowSelection){
663             this.fireEvent('rowclick', this, row, rowIndex, e);
664         //}
665          
666     },
667         
668     onDblClick : function(e,el)
669     {
670         var cell = Roo.get(el);
671         
672         if(!cell || (!this.cellSelection && !this.rowSelection)){
673             return;
674         }
675         
676         if(e.getTarget().nodeName.toLowerCase() != 'td'){
677             cell = cell.findParent('td', false, true);
678         }
679         
680         if(!cell || typeof(cell) == 'undefined'){
681             return;
682         }
683         
684         var row = cell.findParent('tr', false, true);
685         
686         if(!row || typeof(row) == 'undefined'){
687             return;
688         }
689         
690         var cellIndex = cell.dom.cellIndex;
691         var rowIndex = this.getRowIndex(row);
692         
693         if(this.cellSelection){
694             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
695         }
696         
697         if(this.rowSelection){
698             this.fireEvent('rowdblclick', this, row, rowIndex, e);
699         }
700     },
701     findRowIndex : function(el)
702     {
703         var cell = Roo.get(el);
704         if(!cell) {
705             return false;
706         }
707         var row = cell.findParent('tr', false, true);
708         
709         if(!row || typeof(row) == 'undefined'){
710             return false;
711         }
712         return this.getRowIndex(row);
713     },
714     sort : function(e,el)
715     {
716         var col = Roo.get(el);
717         
718         if(!col.hasClass('sortable')){
719             return;
720         }
721         
722         var sort = col.attr('sort');
723         var dir = 'ASC';
724         
725         if(col.select('i', true).first().hasClass('fa-arrow-up')){
726             dir = 'DESC';
727         }
728         
729         this.store.sortInfo = {field : sort, direction : dir};
730         
731         if (this.footer) {
732             Roo.log("calling footer first");
733             this.footer.onClick('first');
734         } else {
735         
736             this.store.load({ params : { start : 0 } });
737         }
738     },
739     
740     renderHeader : function()
741     {
742         var header = {
743             tag: 'thead',
744             cn : []
745         };
746         
747         var cm = this.cm;
748         this.totalWidth = 0;
749         
750         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
751             
752             var config = cm.config[i];
753             
754             var c = {
755                 tag: 'th',
756                 cls : 'x-hcol-' + i,
757                 style : '',
758                 
759                 html: cm.getColumnHeader(i)
760             };
761             
762             var tooltip = cm.getColumnTooltip(i);
763             if (tooltip) {
764                 c.tooltip = tooltip;
765             }
766             
767             
768             var hh = '';
769             
770             if(typeof(config.sortable) != 'undefined' && config.sortable){
771                 c.cls += ' sortable';
772                 c.html = '<i class="fa"></i>' + c.html;
773             }
774             
775             // could use BS4 hidden-..-down 
776             
777             if(typeof(config.lgHeader) != 'undefined'){
778                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
779             }
780             
781             if(typeof(config.mdHeader) != 'undefined'){
782                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
783             }
784             
785             if(typeof(config.smHeader) != 'undefined'){
786                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
787             }
788             
789             if(typeof(config.xsHeader) != 'undefined'){
790                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
791             }
792             
793             if(hh.length){
794                 c.html = hh;
795             }
796             
797             if(typeof(config.tooltip) != 'undefined'){
798                 c.tooltip = config.tooltip;
799             }
800             
801             if(typeof(config.colspan) != 'undefined'){
802                 c.colspan = config.colspan;
803             }
804             
805             // hidden is handled by CSS now
806             
807             if(typeof(config.dataIndex) != 'undefined'){
808                 c.sort = config.dataIndex;
809             }
810             
811            
812             
813             if(typeof(config.align) != 'undefined' && config.align.length){
814                 c.style += ' text-align:' + config.align + ';';
815             }
816             
817             /* width is done in CSS
818              *if(typeof(config.width) != 'undefined'){
819                 c.style += ' width:' + config.width + 'px;';
820                 this.totalWidth += config.width;
821             } else {
822                 this.totalWidth += 100; // assume minimum of 100 per column?
823             }
824             */
825             
826             if(typeof(config.cls) != 'undefined'){
827                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
828             }
829             // this is the bit that doesnt reall work at all...
830             
831             if (this.responsive) {
832                  
833             
834                 ['xs','sm','md','lg'].map(function(size){
835                     
836                     if(typeof(config[size]) == 'undefined'){
837                         return;
838                     }
839                      
840                     if (!config[size]) { // 0 = hidden
841                         // BS 4 '0' is treated as hide that column and below.
842                         c.cls += ' hidden-' + size + ' hidden' + size + '-down';
843                         return;
844                     }
845                     
846                     c.cls += ' col-' + size + '-' + config[size] + (
847                         size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
848                     );
849                     
850                     
851                 });
852             }
853             // at the end?
854             
855             c.html +=' <span class="x-grid-split x-grid-split-' + i + '"></span>';
856             
857             
858             
859             
860             header.cn.push(c)
861         }
862         
863         return header;
864     },
865     
866     renderBody : function()
867     {
868         var body = {
869             tag: 'tbody',
870             cn : [
871                 {
872                     tag: 'tr',
873                     cn : [
874                         {
875                             tag : 'td',
876                             colspan :  this.cm.getColumnCount()
877                         }
878                     ]
879                 }
880             ]
881         };
882         
883         return body;
884     },
885     
886     renderFooter : function()
887     {
888         var footer = {
889             tag: 'tfoot',
890             cn : [
891                 {
892                     tag: 'tr',
893                     cn : [
894                         {
895                             tag : 'td',
896                             colspan :  this.cm.getColumnCount()
897                         }
898                     ]
899                 }
900             ]
901         };
902         
903         return footer;
904     },
905     
906     
907     
908     onLoad : function()
909     {
910 //        Roo.log('ds onload');
911         this.clear();
912         
913         var _this = this;
914         var cm = this.cm;
915         var ds = this.store;
916         
917         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
918             e.select('i', true).removeClass(['fa-arrow-up', 'fa-arrow-down']);
919             if (_this.store.sortInfo) {
920                     
921                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
922                     e.select('i', true).addClass(['fa-arrow-up']);
923                 }
924                 
925                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
926                     e.select('i', true).addClass(['fa-arrow-down']);
927                 }
928             }
929         });
930         
931         var tbody =  this.bodyEl;
932               
933         if(ds.getCount() > 0){
934             ds.data.each(function(d,rowIndex){
935                 var row =  this.renderRow(cm, ds, rowIndex);
936                 
937                 tbody.createChild(row);
938                 
939                 var _this = this;
940                 
941                 if(row.cellObjects.length){
942                     Roo.each(row.cellObjects, function(r){
943                         _this.renderCellObject(r);
944                     })
945                 }
946                 
947             }, this);
948         } else if (this.empty_results.length) {
949             this.el.mask(this.empty_results, 'no-spinner');
950         }
951         
952         var tfoot = this.el.select('tfoot', true).first();
953         
954         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
955             
956             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
957             
958             var total = this.ds.getTotalCount();
959             
960             if(this.footer.pageSize < total){
961                 this.mainFoot.show();
962             }
963         }
964         
965         Roo.each(this.el.select('tbody td', true).elements, function(e){
966             e.on('mouseover', _this.onMouseover, _this);
967         });
968         
969         Roo.each(this.el.select('tbody td', true).elements, function(e){
970             e.on('mouseout', _this.onMouseout, _this);
971         });
972         this.fireEvent('rowsrendered', this);
973         
974         this.autoSize();
975         
976         this.initCSS(); /// resize cols
977
978         
979     },
980     
981     
982     onUpdate : function(ds,record)
983     {
984         this.refreshRow(record);
985         this.autoSize();
986     },
987     
988     onRemove : function(ds, record, index, isUpdate){
989         if(isUpdate !== true){
990             this.fireEvent("beforerowremoved", this, index, record);
991         }
992         var bt = this.bodyEl.dom;
993         
994         var rows = this.el.select('tbody > tr', true).elements;
995         
996         if(typeof(rows[index]) != 'undefined'){
997             bt.removeChild(rows[index].dom);
998         }
999         
1000 //        if(bt.rows[index]){
1001 //            bt.removeChild(bt.rows[index]);
1002 //        }
1003         
1004         if(isUpdate !== true){
1005             //this.stripeRows(index);
1006             //this.syncRowHeights(index, index);
1007             //this.layout();
1008             this.fireEvent("rowremoved", this, index, record);
1009         }
1010     },
1011     
1012     onAdd : function(ds, records, rowIndex)
1013     {
1014         //Roo.log('on Add called');
1015         // - note this does not handle multiple adding very well..
1016         var bt = this.bodyEl.dom;
1017         for (var i =0 ; i < records.length;i++) {
1018             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
1019             //Roo.log(records[i]);
1020             //Roo.log(this.store.getAt(rowIndex+i));
1021             this.insertRow(this.store, rowIndex + i, false);
1022             return;
1023         }
1024         
1025     },
1026     
1027     
1028     refreshRow : function(record){
1029         var ds = this.store, index;
1030         if(typeof record == 'number'){
1031             index = record;
1032             record = ds.getAt(index);
1033         }else{
1034             index = ds.indexOf(record);
1035             if (index < 0) {
1036                 return; // should not happen - but seems to 
1037             }
1038         }
1039         this.insertRow(ds, index, true);
1040         this.autoSize();
1041         this.onRemove(ds, record, index+1, true);
1042         this.autoSize();
1043         //this.syncRowHeights(index, index);
1044         //this.layout();
1045         this.fireEvent("rowupdated", this, index, record);
1046     },
1047     // private - called by RowSelection
1048     onRowSelect : function(rowIndex){
1049         var row = this.getRowDom(rowIndex);
1050         row.addClass(['bg-info','info']);
1051     },
1052     // private - called by RowSelection
1053     onRowDeselect : function(rowIndex)
1054     {
1055         if (rowIndex < 0) {
1056             return;
1057         }
1058         var row = this.getRowDom(rowIndex);
1059         row.removeClass(['bg-info','info']);
1060     },
1061       /**
1062      * Focuses the specified row.
1063      * @param {Number} row The row index
1064      */
1065     focusRow : function(row)
1066     {
1067         //Roo.log('GridView.focusRow');
1068         var x = this.bodyEl.dom.scrollLeft;
1069         this.focusCell(row, 0, false);
1070         this.bodyEl.dom.scrollLeft = x;
1071
1072     },
1073      /**
1074      * Focuses the specified cell.
1075      * @param {Number} row The row index
1076      * @param {Number} col The column index
1077      * @param {Boolean} hscroll false to disable horizontal scrolling
1078      */
1079     focusCell : function(row, col, hscroll)
1080     {
1081         //Roo.log('GridView.focusCell');
1082         var el = this.ensureVisible(row, col, hscroll);
1083         // not sure what focusEL achives = it's a <a> pos relative 
1084         //this.focusEl.alignTo(el, "tl-tl");
1085         //if(Roo.isGecko){
1086         //    this.focusEl.focus();
1087         //}else{
1088         //    this.focusEl.focus.defer(1, this.focusEl);
1089         //}
1090     },
1091     
1092      /**
1093      * Scrolls the specified cell into view
1094      * @param {Number} row The row index
1095      * @param {Number} col The column index
1096      * @param {Boolean} hscroll false to disable horizontal scrolling
1097      */
1098     ensureVisible : function(row, col, hscroll)
1099     {
1100         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
1101         //return null; //disable for testing.
1102         if(typeof row != "number"){
1103             row = row.rowIndex;
1104         }
1105         if(row < 0 && row >= this.ds.getCount()){
1106             return  null;
1107         }
1108         col = (col !== undefined ? col : 0);
1109         var cm = this.cm;
1110         while(cm.isHidden(col)){
1111             col++;
1112         }
1113
1114         var el = this.getCellDom(row, col);
1115         if(!el){
1116             return null;
1117         }
1118         var c = this.bodyEl.dom;
1119
1120         var ctop = parseInt(el.offsetTop, 10);
1121         var cleft = parseInt(el.offsetLeft, 10);
1122         var cbot = ctop + el.offsetHeight;
1123         var cright = cleft + el.offsetWidth;
1124
1125         //var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
1126         var ch = 0; //?? header is not withing the area?
1127         var stop = parseInt(c.scrollTop, 10);
1128         var sleft = parseInt(c.scrollLeft, 10);
1129         var sbot = stop + ch;
1130         var sright = sleft + c.clientWidth;
1131         /*
1132         Roo.log('GridView.ensureVisible:' +
1133                 ' ctop:' + ctop +
1134                 ' c.clientHeight:' + c.clientHeight +
1135                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
1136                 ' stop:' + stop +
1137                 ' cbot:' + cbot +
1138                 ' sbot:' + sbot +
1139                 ' ch:' + ch  
1140                 );
1141         */
1142         if(ctop < stop){
1143             c.scrollTop = ctop;
1144             //Roo.log("set scrolltop to ctop DISABLE?");
1145         }else if(cbot > sbot){
1146             //Roo.log("set scrolltop to cbot-ch");
1147             c.scrollTop = cbot-ch;
1148         }
1149
1150         if(hscroll !== false){
1151             if(cleft < sleft){
1152                 c.scrollLeft = cleft;
1153             }else if(cright > sright){
1154                 c.scrollLeft = cright-c.clientWidth;
1155             }
1156         }
1157
1158         return el;
1159     },
1160     
1161     
1162     insertRow : function(dm, rowIndex, isUpdate){
1163         
1164         if(!isUpdate){
1165             this.fireEvent("beforerowsinserted", this, rowIndex);
1166         }
1167             //var s = this.getScrollState();
1168         var row = this.renderRow(this.cm, this.store, rowIndex);
1169         // insert before rowIndex..
1170         var e = this.bodyEl.createChild(row,this.getRowDom(rowIndex));
1171         
1172         var _this = this;
1173                 
1174         if(row.cellObjects.length){
1175             Roo.each(row.cellObjects, function(r){
1176                 _this.renderCellObject(r);
1177             })
1178         }
1179             
1180         if(!isUpdate){
1181             this.fireEvent("rowsinserted", this, rowIndex);
1182             //this.syncRowHeights(firstRow, lastRow);
1183             //this.stripeRows(firstRow);
1184             //this.layout();
1185         }
1186         
1187     },
1188     
1189     
1190     getRowDom : function(rowIndex)
1191     {
1192         var rows = this.el.select('tbody > tr', true).elements;
1193         
1194         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
1195         
1196     },
1197     getCellDom : function(rowIndex, colIndex)
1198     {
1199         var row = this.getRowDom(rowIndex);
1200         if (row === false) {
1201             return false;
1202         }
1203         var cols = row.select('td', true).elements;
1204         return (typeof(cols[colIndex]) == 'undefined') ? false : cols[colIndex];
1205         
1206     },
1207     
1208     // returns the object tree for a tr..
1209   
1210     
1211     renderRow : function(cm, ds, rowIndex) 
1212     {
1213         var d = ds.getAt(rowIndex);
1214         
1215         var row = {
1216             tag : 'tr',
1217             cls : 'x-row-' + rowIndex,
1218             cn : []
1219         };
1220             
1221         var cellObjects = [];
1222         
1223         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
1224             var config = cm.config[i];
1225             
1226             var renderer = cm.getRenderer(i);
1227             var value = '';
1228             var id = false;
1229             
1230             if(typeof(renderer) !== 'undefined'){
1231                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
1232             }
1233             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
1234             // and are rendered into the cells after the row is rendered - using the id for the element.
1235             
1236             if(typeof(value) === 'object'){
1237                 id = Roo.id();
1238                 cellObjects.push({
1239                     container : id,
1240                     cfg : value 
1241                 })
1242             }
1243             
1244             var rowcfg = {
1245                 record: d,
1246                 rowIndex : rowIndex,
1247                 colIndex : i,
1248                 rowClass : ''
1249             };
1250
1251             this.fireEvent('rowclass', this, rowcfg);
1252             
1253             var td = {
1254                 tag: 'td',
1255                 // this might end up displaying HTML?
1256                 // this is too messy... - better to only do it on columsn you know are going to be too long
1257                 //tooltip : (typeof(value) === 'object') ? '' : value,
1258                 cls : rowcfg.rowClass + ' x-col-' + i,
1259                 style: '',
1260                 html: (typeof(value) === 'object') ? '' : value
1261             };
1262             
1263             if (id) {
1264                 td.id = id;
1265             }
1266             
1267             if(typeof(config.colspan) != 'undefined'){
1268                 td.colspan = config.colspan;
1269             }
1270             
1271             
1272             
1273             if(typeof(config.align) != 'undefined' && config.align.length){
1274                 td.style += ' text-align:' + config.align + ';';
1275             }
1276             if(typeof(config.valign) != 'undefined' && config.valign.length){
1277                 td.style += ' vertical-align:' + config.valign + ';';
1278             }
1279             /*
1280             if(typeof(config.width) != 'undefined'){
1281                 td.style += ' width:' +  config.width + 'px;';
1282             }
1283             */
1284             
1285             if(typeof(config.cursor) != 'undefined'){
1286                 td.style += ' cursor:' +  config.cursor + ';';
1287             }
1288             
1289             if(typeof(config.cls) != 'undefined'){
1290                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
1291             }
1292             if (this.responsive) {
1293                 ['xs','sm','md','lg'].map(function(size){
1294                     
1295                     if(typeof(config[size]) == 'undefined'){
1296                         return;
1297                     }
1298                     
1299                     
1300                       
1301                     if (!config[size]) { // 0 = hidden
1302                         // BS 4 '0' is treated as hide that column and below.
1303                         td.cls += ' hidden-' + size + ' hidden' + size + '-down';
1304                         return;
1305                     }
1306                     
1307                     td.cls += ' col-' + size + '-' + config[size] + (
1308                         size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
1309                     );
1310                      
1311     
1312                 });
1313             }
1314             row.cn.push(td);
1315            
1316         }
1317         
1318         row.cellObjects = cellObjects;
1319         
1320         return row;
1321           
1322     },
1323     
1324     
1325     
1326     onBeforeLoad : function()
1327     {
1328         this.el.unmask(); // if needed.
1329     },
1330      /**
1331      * Remove all rows
1332      */
1333     clear : function()
1334     {
1335         this.el.select('tbody', true).first().dom.innerHTML = '';
1336     },
1337     /**
1338      * Show or hide a row.
1339      * @param {Number} rowIndex to show or hide
1340      * @param {Boolean} state hide
1341      */
1342     setRowVisibility : function(rowIndex, state)
1343     {
1344         var bt = this.bodyEl.dom;
1345         
1346         var rows = this.el.select('tbody > tr', true).elements;
1347         
1348         if(typeof(rows[rowIndex]) == 'undefined'){
1349             return;
1350         }
1351         rows[rowIndex][ state ? 'removeClass' : 'addClass']('d-none');
1352         
1353     },
1354     
1355     
1356     getSelectionModel : function(){
1357         if(!this.selModel){
1358             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
1359         }
1360         return this.selModel;
1361     },
1362     /*
1363      * Render the Roo.bootstrap object from renderder
1364      */
1365     renderCellObject : function(r)
1366     {
1367         var _this = this;
1368         
1369         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
1370         
1371         var t = r.cfg.render(r.container);
1372         
1373         if(r.cfg.cn){
1374             Roo.each(r.cfg.cn, function(c){
1375                 var child = {
1376                     container: t.getChildContainer(),
1377                     cfg: c
1378                 };
1379                 _this.renderCellObject(child);
1380             })
1381         }
1382     },
1383     /**
1384      * get the Row Index from a dom element.
1385      * @param {Roo.Element} row The row to look for
1386      * @returns {Number} the row
1387      */
1388     getRowIndex : function(row)
1389     {
1390         var rowIndex = -1;
1391         
1392         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
1393             if(el != row){
1394                 return;
1395             }
1396             
1397             rowIndex = index;
1398         });
1399         
1400         return rowIndex;
1401     },
1402     /**
1403      * get the header TH element for columnIndex
1404      * @param {Number} columnIndex
1405      * @returns {Roo.Element}
1406      */
1407     getHeaderIndex: function(colIndex)
1408     {
1409         var cols = this.headEl.select('th', true).elements;
1410         return cols[colIndex]; 
1411     },
1412     /**
1413      * get the Column Index from a dom element. (using regex on x-hcol-{colid})
1414      * @param {domElement} cell to look for
1415      * @returns {Number} the column
1416      */
1417     getCellIndex : function(cell)
1418     {
1419         var id = String(cell.className).match(Roo.bootstrap.Table.cellRE);
1420         if(id){
1421             return parseInt(id[1], 10);
1422         }
1423         return 0;
1424     },
1425      /**
1426      * Returns the grid's underlying element = used by panel.Grid
1427      * @return {Element} The element
1428      */
1429     getGridEl : function(){
1430         return this.el;
1431     },
1432      /**
1433      * Forces a resize - used by panel.Grid
1434      * @return {Element} The element
1435      */
1436     autoSize : function()
1437     {
1438         if(this.disableAutoSize) {
1439             Roo.log("DISABLEAUTOSIZE");
1440             return;
1441         }
1442         //var ctr = Roo.get(this.container.dom.parentElement);
1443         var ctr = Roo.get(this.el.dom);
1444         
1445         var thd = this.getGridEl().select('thead',true).first();
1446         var tbd = this.getGridEl().select('tbody', true).first();
1447         var tfd = this.getGridEl().select('tfoot', true).first();
1448         
1449         var cw = ctr.getWidth();
1450         this.getGridEl().select('tfoot tr, tfoot  td',true).setWidth(cw);
1451         
1452         if (tbd) {
1453             
1454             tbd.setWidth(ctr.getWidth());
1455             // if the body has a max height - and then scrolls - we should perhaps set up the height here
1456             // this needs fixing for various usage - currently only hydra job advers I think..
1457             //tdb.setHeight(
1458             //        ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
1459             //); 
1460             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
1461             cw -= barsize;
1462         }
1463         cw = Math.max(cw, this.totalWidth);
1464         this.getGridEl().select('tbody tr',true).setWidth(cw);
1465         this.initCSS();
1466         
1467         // resize 'expandable coloumn?
1468         
1469         return; // we doe not have a view in this design..
1470         
1471     },
1472     onBodyScroll: function()
1473     {
1474         //Roo.log("body scrolled');" + this.bodyEl.dom.scrollLeft);
1475         if(this.headEl){
1476             this.headEl.setStyle({
1477                 'position' : 'relative',
1478                 'left': (-1* this.bodyEl.dom.scrollLeft) + 'px'
1479             });
1480         }
1481         
1482         if(this.lazyLoad){
1483             
1484             var scrollHeight = this.bodyEl.dom.scrollHeight;
1485             
1486             var scrollTop = Math.ceil(this.bodyEl.getScroll().top);
1487             
1488             var height = this.bodyEl.getHeight();
1489             
1490             if(scrollHeight - height == scrollTop) {
1491                 
1492                 var total = this.ds.getTotalCount();
1493                 
1494                 if(this.footer.cursor + this.footer.pageSize < total){
1495                     
1496                     this.footer.ds.load({
1497                         params : {
1498                             start : this.footer.cursor + this.footer.pageSize,
1499                             limit : this.footer.pageSize
1500                         },
1501                         add : true
1502                     });
1503                 }
1504             }
1505             
1506         }
1507     },
1508     onColumnSplitterMoved : function(i, diff)
1509     {
1510         this.userResized = true;
1511         
1512         var cm = this.colModel;
1513         
1514         var w = this.getHeaderIndex(i).getWidth() + diff;
1515         
1516         
1517         cm.setColumnWidth(i, w, true);
1518         this.initCSS();
1519         //var cid = cm.getColumnId(i); << not used in this version?
1520        /* Roo.log(['#' + this.id + ' .x-col-' + i, "width", w + "px"]);
1521         
1522         this.CSS.updateRule( '#' + this.id + ' .x-col-' + i, "width", w + "px");
1523         this.CSS.updateRule('#' + this.id + ' .x-hcol-' + i, "width", w + "px");
1524         this.CSS.updateRule('#' + this.id + ' .x-grid-split-' + i, "left", w + "px");
1525 */
1526         //this.updateSplitters();
1527         //this.layout(); << ??
1528         this.fireEvent("columnresize", i, w);
1529     },
1530     onHeaderChange : function()
1531     {
1532         var header = this.renderHeader();
1533         var table = this.el.select('table', true).first();
1534         
1535         this.headEl.remove();
1536         this.headEl = table.createChild(header, this.bodyEl, false);
1537         
1538         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
1539             e.on('click', this.sort, this);
1540         }, this);
1541         
1542         if(this.enableColumnResize !== false && Roo.grid.SplitDragZone){
1543             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
1544         }
1545         
1546     },
1547     
1548     onHiddenChange : function(colModel, colIndex, hidden)
1549     {
1550         /*
1551         this.cm.setHidden()
1552         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
1553         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
1554         
1555         this.CSS.updateRule(thSelector, "display", "");
1556         this.CSS.updateRule(tdSelector, "display", "");
1557         
1558         if(hidden){
1559             this.CSS.updateRule(thSelector, "display", "none");
1560             this.CSS.updateRule(tdSelector, "display", "none");
1561         }
1562         */
1563         // onload calls initCSS()
1564         this.onHeaderChange();
1565         this.onLoad();
1566     },
1567     
1568     setColumnWidth: function(col_index, width)
1569     {
1570         // width = "md-2 xs-2..."
1571         if(!this.colModel.config[col_index]) {
1572             return;
1573         }
1574         
1575         var w = width.split(" ");
1576         
1577         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
1578         
1579         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
1580         
1581         
1582         for(var j = 0; j < w.length; j++) {
1583             
1584             if(!w[j]) {
1585                 continue;
1586             }
1587             
1588             var size_cls = w[j].split("-");
1589             
1590             if(!Number.isInteger(size_cls[1] * 1)) {
1591                 continue;
1592             }
1593             
1594             if(!this.colModel.config[col_index][size_cls[0]]) {
1595                 continue;
1596             }
1597             
1598             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
1599                 continue;
1600             }
1601             
1602             h_row[0].classList.replace(
1603                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
1604                 "col-"+size_cls[0]+"-"+size_cls[1]
1605             );
1606             
1607             for(var i = 0; i < rows.length; i++) {
1608                 
1609                 var size_cls = w[j].split("-");
1610                 
1611                 if(!Number.isInteger(size_cls[1] * 1)) {
1612                     continue;
1613                 }
1614                 
1615                 if(!this.colModel.config[col_index][size_cls[0]]) {
1616                     continue;
1617                 }
1618                 
1619                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
1620                     continue;
1621                 }
1622                 
1623                 rows[i].classList.replace(
1624                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
1625                     "col-"+size_cls[0]+"-"+size_cls[1]
1626                 );
1627             }
1628             
1629             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
1630         }
1631     }
1632 });
1633
1634 // currently only used to find the split on drag.. 
1635 Roo.bootstrap.Table.cellRE = /(?:.*?)x-grid-(?:hd|cell|split)-([\d]+)(?:.*?)/;
1636
1637 /**
1638  * @depricated
1639 */
1640 Roo.bootstrap.Table.AbstractSelectionModel = Roo.grid.AbstractSelectionModel;
1641 Roo.bootstrap.Table.RowSelectionModel = Roo.grid.RowSelectionModel;