fix #7391 -New_Customer_Portal_30_Login
[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 autoSize() and initCSS()
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             return;
433         }
434         
435         var cm = this.cm, styles = [];
436         this.CSS.removeStyleSheet(this.id + '-cssrules');
437         var headHeight = this.headEl ? this.headEl.dom.clientHeight : 0;
438         // we can honour xs/sm/md/xl  as widths...
439         // we first have to decide what widht we are currently at...
440         var sz = Roo.getGridSize();
441         
442         var total = 0;
443         var last = -1;
444         var cols = []; // visable cols.
445         var total_abs = 0;
446         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
447             var w = cm.getColumnWidth(i, false);
448             if(cm.isHidden(i)){
449                 cols.push( { rel : false, abs : 0 });
450                 continue;
451             }
452             if (w !== false) {
453                 cols.push( { rel : false, abs : w });
454                 total_abs += w;
455                 last = i; // not really..
456                 continue;
457             }
458             var w = cm.getColumnWidth(i, sz);
459             if (w > 0) {
460                 last = i
461             }
462             total += w;
463             cols.push( { rel : w, abs : false });
464         }
465         
466         var avail = this.bodyEl.dom.clientWidth - total_abs;
467         
468         var unitWidth = Math.floor(avail / total);
469         var rem = avail - (unitWidth * total);
470         
471         var hidden, width, pos = 0 , splithide , left;
472         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
473             
474             hidden = 'display:none;';
475             left = '';
476             width  = 'width:0px;';
477             splithide = '';
478             if(!cm.isHidden(i)){
479                 hidden = '';
480                 
481                 
482                 // we can honour xs/sm/md/xl ?
483                 var w = cols[i].rel == false ? cols[i].abs : (cols[i].rel * unitWidth);
484                 if (w===0) {
485                     hidden = 'display:none;';
486                 }
487                 // width should return a small number...
488                 if (i == last) {
489                     w+=rem; // add the remaining with..
490                 }
491                 pos += w;
492                 left = "left:" + (pos -4) + "px;";
493                 width = "width:" + w+ "px;";
494                 
495             }
496             if (this.responsive) {
497                 width = '';
498                 left = '';
499                 hidden = cm.isHidden(i) ? 'display:none;' : '';
500                 splithide = 'display: none;';
501             }
502             
503             styles.push( '#' , this.id , ' .x-col-' , i, " {", cm.config[i].css, width, hidden, "}\n" );
504             if (this.headEl) {
505                 if (i == last) {
506                     splithide = 'display:none;';
507                 }
508                 
509                 styles.push('#' , this.id , ' .x-hcol-' , i, " { ", width, hidden," }\n",
510                             '#' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', (headHeight - 4), "px;}\n",
511                             // this is the popover version..
512                             '.popover-inner #' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', 100, "%;}\n"
513                 );
514             }
515             
516         }
517         //Roo.log(styles.join(''));
518         this.CSS.createStyleSheet( styles.join(''), this.id + '-cssrules');
519         
520     },
521     
522     
523     
524     onContextMenu : function(e, t)
525     {
526         this.processEvent("contextmenu", e);
527     },
528     
529     processEvent : function(name, e)
530     {
531         if (name != 'touchstart' ) {
532             this.fireEvent(name, e);    
533         }
534         
535         var t = e.getTarget();
536         
537         var cell = Roo.get(t);
538         
539         if(!cell){
540             return;
541         }
542         
543         if(cell.findParent('tfoot', false, true)){
544             return;
545         }
546         
547         if(cell.findParent('thead', false, true)){
548             
549             if(e.getTarget().nodeName.toLowerCase() != 'th'){
550                 cell = Roo.get(t).findParent('th', false, true);
551                 if (!cell) {
552                     Roo.log("failed to find th in thead?");
553                     Roo.log(e.getTarget());
554                     return;
555                 }
556             }
557             
558             var cellIndex = cell.dom.cellIndex;
559             
560             var ename = name == 'touchstart' ? 'click' : name;
561             this.fireEvent("header" + ename, this, cellIndex, e);
562             
563             return;
564         }
565         
566         if(e.getTarget().nodeName.toLowerCase() != 'td'){
567             cell = Roo.get(t).findParent('td', false, true);
568             if (!cell) {
569                 Roo.log("failed to find th in tbody?");
570                 Roo.log(e.getTarget());
571                 return;
572             }
573         }
574         
575         var row = cell.findParent('tr', false, true);
576         var cellIndex = cell.dom.cellIndex;
577         var rowIndex = row.dom.rowIndex - 1;
578         
579         if(row !== false){
580             
581             this.fireEvent("row" + name, this, rowIndex, e);
582             
583             if(cell !== false){
584             
585                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
586             }
587         }
588         
589     },
590     
591     onMouseover : function(e, el)
592     {
593         var cell = Roo.get(el);
594         
595         if(!cell){
596             return;
597         }
598         
599         if(e.getTarget().nodeName.toLowerCase() != 'td'){
600             cell = cell.findParent('td', false, true);
601         }
602         
603         var row = cell.findParent('tr', false, true);
604         var cellIndex = cell.dom.cellIndex;
605         var rowIndex = row.dom.rowIndex - 1; // start from 0
606         
607         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
608         
609     },
610     
611     onMouseout : function(e, el)
612     {
613         var cell = Roo.get(el);
614         
615         if(!cell){
616             return;
617         }
618         
619         if(e.getTarget().nodeName.toLowerCase() != 'td'){
620             cell = cell.findParent('td', false, true);
621         }
622         
623         var row = cell.findParent('tr', false, true);
624         var cellIndex = cell.dom.cellIndex;
625         var rowIndex = row.dom.rowIndex - 1; // start from 0
626         
627         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
628         
629     },
630     
631     onClick : function(e, el)
632     {
633         var cell = Roo.get(el);
634         
635         if(!cell || (!this.cellSelection && !this.rowSelection)){
636             return;
637         }
638         
639         if(e.getTarget().nodeName.toLowerCase() != 'td'){
640             cell = cell.findParent('td', false, true);
641         }
642         
643         if(!cell || typeof(cell) == 'undefined'){
644             return;
645         }
646         
647         var row = cell.findParent('tr', false, true);
648         
649         if(!row || typeof(row) == 'undefined'){
650             return;
651         }
652         
653         var cellIndex = cell.dom.cellIndex;
654         var rowIndex = this.getRowIndex(row);
655         
656         // why??? - should these not be based on SelectionModel?
657         //if(this.cellSelection){
658             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
659         //}
660         
661         //if(this.rowSelection){
662             this.fireEvent('rowclick', this, row, rowIndex, e);
663         //}
664          
665     },
666         
667     onDblClick : function(e,el)
668     {
669         var cell = Roo.get(el);
670         
671         if(!cell || (!this.cellSelection && !this.rowSelection)){
672             return;
673         }
674         
675         if(e.getTarget().nodeName.toLowerCase() != 'td'){
676             cell = cell.findParent('td', false, true);
677         }
678         
679         if(!cell || typeof(cell) == 'undefined'){
680             return;
681         }
682         
683         var row = cell.findParent('tr', false, true);
684         
685         if(!row || typeof(row) == 'undefined'){
686             return;
687         }
688         
689         var cellIndex = cell.dom.cellIndex;
690         var rowIndex = this.getRowIndex(row);
691         
692         if(this.cellSelection){
693             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
694         }
695         
696         if(this.rowSelection){
697             this.fireEvent('rowdblclick', this, row, rowIndex, e);
698         }
699     },
700     findRowIndex : function(el)
701     {
702         var cell = Roo.get(el);
703         if(!cell) {
704             return false;
705         }
706         var row = cell.findParent('tr', false, true);
707         
708         if(!row || typeof(row) == 'undefined'){
709             return false;
710         }
711         return this.getRowIndex(row);
712     },
713     sort : function(e,el)
714     {
715         var col = Roo.get(el);
716         
717         if(!col.hasClass('sortable')){
718             return;
719         }
720         
721         var sort = col.attr('sort');
722         var dir = 'ASC';
723         
724         if(col.select('i', true).first().hasClass('fa-arrow-up')){
725             dir = 'DESC';
726         }
727         
728         this.store.sortInfo = {field : sort, direction : dir};
729         
730         if (this.footer) {
731             Roo.log("calling footer first");
732             this.footer.onClick('first');
733         } else {
734         
735             this.store.load({ params : { start : 0 } });
736         }
737     },
738     
739     renderHeader : function()
740     {
741         var header = {
742             tag: 'thead',
743             cn : []
744         };
745         
746         var cm = this.cm;
747         this.totalWidth = 0;
748         
749         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
750             
751             var config = cm.config[i];
752             
753             var c = {
754                 tag: 'th',
755                 cls : 'x-hcol-' + i,
756                 style : '',
757                 
758                 html: cm.getColumnHeader(i)
759             };
760             
761             var tooltip = cm.getColumnTooltip(i);
762             if (tooltip) {
763                 c.tooltip = tooltip;
764             }
765             
766             
767             var hh = '';
768             
769             if(typeof(config.sortable) != 'undefined' && config.sortable){
770                 c.cls += ' sortable';
771                 c.html = '<i class="fa"></i>' + c.html;
772             }
773             
774             // could use BS4 hidden-..-down 
775             
776             if(typeof(config.lgHeader) != 'undefined'){
777                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
778             }
779             
780             if(typeof(config.mdHeader) != 'undefined'){
781                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
782             }
783             
784             if(typeof(config.smHeader) != 'undefined'){
785                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
786             }
787             
788             if(typeof(config.xsHeader) != 'undefined'){
789                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
790             }
791             
792             if(hh.length){
793                 c.html = hh;
794             }
795             
796             if(typeof(config.tooltip) != 'undefined'){
797                 c.tooltip = config.tooltip;
798             }
799             
800             if(typeof(config.colspan) != 'undefined'){
801                 c.colspan = config.colspan;
802             }
803             
804             // hidden is handled by CSS now
805             
806             if(typeof(config.dataIndex) != 'undefined'){
807                 c.sort = config.dataIndex;
808             }
809             
810            
811             
812             if(typeof(config.align) != 'undefined' && config.align.length){
813                 c.style += ' text-align:' + config.align + ';';
814             }
815             
816             /* width is done in CSS
817              *if(typeof(config.width) != 'undefined'){
818                 c.style += ' width:' + config.width + 'px;';
819                 this.totalWidth += config.width;
820             } else {
821                 this.totalWidth += 100; // assume minimum of 100 per column?
822             }
823             */
824             
825             if(typeof(config.cls) != 'undefined'){
826                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
827             }
828             // this is the bit that doesnt reall work at all...
829             
830             if (this.responsive) {
831                  
832             
833                 ['xs','sm','md','lg'].map(function(size){
834                     
835                     if(typeof(config[size]) == 'undefined'){
836                         return;
837                     }
838                      
839                     if (!config[size]) { // 0 = hidden
840                         // BS 4 '0' is treated as hide that column and below.
841                         c.cls += ' hidden-' + size + ' hidden' + size + '-down';
842                         return;
843                     }
844                     
845                     c.cls += ' col-' + size + '-' + config[size] + (
846                         size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
847                     );
848                     
849                     
850                 });
851             }
852             // at the end?
853             
854             c.html +=' <span class="x-grid-split x-grid-split-' + i + '"></span>';
855             
856             
857             
858             
859             header.cn.push(c)
860         }
861         
862         return header;
863     },
864     
865     renderBody : function()
866     {
867         var body = {
868             tag: 'tbody',
869             cn : [
870                 {
871                     tag: 'tr',
872                     cn : [
873                         {
874                             tag : 'td',
875                             colspan :  this.cm.getColumnCount()
876                         }
877                     ]
878                 }
879             ]
880         };
881         
882         return body;
883     },
884     
885     renderFooter : function()
886     {
887         var footer = {
888             tag: 'tfoot',
889             cn : [
890                 {
891                     tag: 'tr',
892                     cn : [
893                         {
894                             tag : 'td',
895                             colspan :  this.cm.getColumnCount()
896                         }
897                     ]
898                 }
899             ]
900         };
901         
902         return footer;
903     },
904     
905     
906     
907     onLoad : function()
908     {
909 //        Roo.log('ds onload');
910         this.clear();
911         
912         var _this = this;
913         var cm = this.cm;
914         var ds = this.store;
915         
916         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
917             e.select('i', true).removeClass(['fa-arrow-up', 'fa-arrow-down']);
918             if (_this.store.sortInfo) {
919                     
920                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
921                     e.select('i', true).addClass(['fa-arrow-up']);
922                 }
923                 
924                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
925                     e.select('i', true).addClass(['fa-arrow-down']);
926                 }
927             }
928         });
929         
930         var tbody =  this.bodyEl;
931               
932         if(ds.getCount() > 0){
933             ds.data.each(function(d,rowIndex){
934                 var row =  this.renderRow(cm, ds, rowIndex);
935                 
936                 tbody.createChild(row);
937                 
938                 var _this = this;
939                 
940                 if(row.cellObjects.length){
941                     Roo.each(row.cellObjects, function(r){
942                         _this.renderCellObject(r);
943                     })
944                 }
945                 
946             }, this);
947         } else if (this.empty_results.length) {
948             this.el.mask(this.empty_results, 'no-spinner');
949         }
950         
951         var tfoot = this.el.select('tfoot', true).first();
952         
953         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
954             
955             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
956             
957             var total = this.ds.getTotalCount();
958             
959             if(this.footer.pageSize < total){
960                 this.mainFoot.show();
961             }
962         }
963         
964         Roo.each(this.el.select('tbody td', true).elements, function(e){
965             e.on('mouseover', _this.onMouseover, _this);
966         });
967         
968         Roo.each(this.el.select('tbody td', true).elements, function(e){
969             e.on('mouseout', _this.onMouseout, _this);
970         });
971         this.fireEvent('rowsrendered', this);
972         
973         this.autoSize();
974         
975         this.initCSS(); /// resize cols
976
977         
978     },
979     
980     
981     onUpdate : function(ds,record)
982     {
983         this.refreshRow(record);
984         this.autoSize();
985     },
986     
987     onRemove : function(ds, record, index, isUpdate){
988         if(isUpdate !== true){
989             this.fireEvent("beforerowremoved", this, index, record);
990         }
991         var bt = this.bodyEl.dom;
992         
993         var rows = this.el.select('tbody > tr', true).elements;
994         
995         if(typeof(rows[index]) != 'undefined'){
996             bt.removeChild(rows[index].dom);
997         }
998         
999 //        if(bt.rows[index]){
1000 //            bt.removeChild(bt.rows[index]);
1001 //        }
1002         
1003         if(isUpdate !== true){
1004             //this.stripeRows(index);
1005             //this.syncRowHeights(index, index);
1006             //this.layout();
1007             this.fireEvent("rowremoved", this, index, record);
1008         }
1009     },
1010     
1011     onAdd : function(ds, records, rowIndex)
1012     {
1013         //Roo.log('on Add called');
1014         // - note this does not handle multiple adding very well..
1015         var bt = this.bodyEl.dom;
1016         for (var i =0 ; i < records.length;i++) {
1017             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
1018             //Roo.log(records[i]);
1019             //Roo.log(this.store.getAt(rowIndex+i));
1020             this.insertRow(this.store, rowIndex + i, false);
1021             return;
1022         }
1023         
1024     },
1025     
1026     
1027     refreshRow : function(record){
1028         var ds = this.store, index;
1029         if(typeof record == 'number'){
1030             index = record;
1031             record = ds.getAt(index);
1032         }else{
1033             index = ds.indexOf(record);
1034             if (index < 0) {
1035                 return; // should not happen - but seems to 
1036             }
1037         }
1038         this.insertRow(ds, index, true);
1039         this.autoSize();
1040         this.onRemove(ds, record, index+1, true);
1041         this.autoSize();
1042         //this.syncRowHeights(index, index);
1043         //this.layout();
1044         this.fireEvent("rowupdated", this, index, record);
1045     },
1046     // private - called by RowSelection
1047     onRowSelect : function(rowIndex){
1048         var row = this.getRowDom(rowIndex);
1049         row.addClass(['bg-info','info']);
1050     },
1051     // private - called by RowSelection
1052     onRowDeselect : function(rowIndex)
1053     {
1054         if (rowIndex < 0) {
1055             return;
1056         }
1057         var row = this.getRowDom(rowIndex);
1058         row.removeClass(['bg-info','info']);
1059     },
1060       /**
1061      * Focuses the specified row.
1062      * @param {Number} row The row index
1063      */
1064     focusRow : function(row)
1065     {
1066         //Roo.log('GridView.focusRow');
1067         var x = this.bodyEl.dom.scrollLeft;
1068         this.focusCell(row, 0, false);
1069         this.bodyEl.dom.scrollLeft = x;
1070
1071     },
1072      /**
1073      * Focuses the specified cell.
1074      * @param {Number} row The row index
1075      * @param {Number} col The column index
1076      * @param {Boolean} hscroll false to disable horizontal scrolling
1077      */
1078     focusCell : function(row, col, hscroll)
1079     {
1080         //Roo.log('GridView.focusCell');
1081         var el = this.ensureVisible(row, col, hscroll);
1082         // not sure what focusEL achives = it's a <a> pos relative 
1083         //this.focusEl.alignTo(el, "tl-tl");
1084         //if(Roo.isGecko){
1085         //    this.focusEl.focus();
1086         //}else{
1087         //    this.focusEl.focus.defer(1, this.focusEl);
1088         //}
1089     },
1090     
1091      /**
1092      * Scrolls the specified cell into view
1093      * @param {Number} row The row index
1094      * @param {Number} col The column index
1095      * @param {Boolean} hscroll false to disable horizontal scrolling
1096      */
1097     ensureVisible : function(row, col, hscroll)
1098     {
1099         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
1100         //return null; //disable for testing.
1101         if(typeof row != "number"){
1102             row = row.rowIndex;
1103         }
1104         if(row < 0 && row >= this.ds.getCount()){
1105             return  null;
1106         }
1107         col = (col !== undefined ? col : 0);
1108         var cm = this.cm;
1109         while(cm.isHidden(col)){
1110             col++;
1111         }
1112
1113         var el = this.getCellDom(row, col);
1114         if(!el){
1115             return null;
1116         }
1117         var c = this.bodyEl.dom;
1118
1119         var ctop = parseInt(el.offsetTop, 10);
1120         var cleft = parseInt(el.offsetLeft, 10);
1121         var cbot = ctop + el.offsetHeight;
1122         var cright = cleft + el.offsetWidth;
1123
1124         //var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
1125         var ch = 0; //?? header is not withing the area?
1126         var stop = parseInt(c.scrollTop, 10);
1127         var sleft = parseInt(c.scrollLeft, 10);
1128         var sbot = stop + ch;
1129         var sright = sleft + c.clientWidth;
1130         /*
1131         Roo.log('GridView.ensureVisible:' +
1132                 ' ctop:' + ctop +
1133                 ' c.clientHeight:' + c.clientHeight +
1134                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
1135                 ' stop:' + stop +
1136                 ' cbot:' + cbot +
1137                 ' sbot:' + sbot +
1138                 ' ch:' + ch  
1139                 );
1140         */
1141         if(ctop < stop){
1142             c.scrollTop = ctop;
1143             //Roo.log("set scrolltop to ctop DISABLE?");
1144         }else if(cbot > sbot){
1145             //Roo.log("set scrolltop to cbot-ch");
1146             c.scrollTop = cbot-ch;
1147         }
1148
1149         if(hscroll !== false){
1150             if(cleft < sleft){
1151                 c.scrollLeft = cleft;
1152             }else if(cright > sright){
1153                 c.scrollLeft = cright-c.clientWidth;
1154             }
1155         }
1156
1157         return el;
1158     },
1159     
1160     
1161     insertRow : function(dm, rowIndex, isUpdate){
1162         
1163         if(!isUpdate){
1164             this.fireEvent("beforerowsinserted", this, rowIndex);
1165         }
1166             //var s = this.getScrollState();
1167         var row = this.renderRow(this.cm, this.store, rowIndex);
1168         // insert before rowIndex..
1169         var e = this.bodyEl.createChild(row,this.getRowDom(rowIndex));
1170         
1171         var _this = this;
1172                 
1173         if(row.cellObjects.length){
1174             Roo.each(row.cellObjects, function(r){
1175                 _this.renderCellObject(r);
1176             })
1177         }
1178             
1179         if(!isUpdate){
1180             this.fireEvent("rowsinserted", this, rowIndex);
1181             //this.syncRowHeights(firstRow, lastRow);
1182             //this.stripeRows(firstRow);
1183             //this.layout();
1184         }
1185         
1186     },
1187     
1188     
1189     getRowDom : function(rowIndex)
1190     {
1191         var rows = this.el.select('tbody > tr', true).elements;
1192         
1193         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
1194         
1195     },
1196     getCellDom : function(rowIndex, colIndex)
1197     {
1198         var row = this.getRowDom(rowIndex);
1199         if (row === false) {
1200             return false;
1201         }
1202         var cols = row.select('td', true).elements;
1203         return (typeof(cols[colIndex]) == 'undefined') ? false : cols[colIndex];
1204         
1205     },
1206     
1207     // returns the object tree for a tr..
1208   
1209     
1210     renderRow : function(cm, ds, rowIndex) 
1211     {
1212         var d = ds.getAt(rowIndex);
1213         
1214         var row = {
1215             tag : 'tr',
1216             cls : 'x-row-' + rowIndex,
1217             cn : []
1218         };
1219             
1220         var cellObjects = [];
1221         
1222         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
1223             var config = cm.config[i];
1224             
1225             var renderer = cm.getRenderer(i);
1226             var value = '';
1227             var id = false;
1228             
1229             if(typeof(renderer) !== 'undefined'){
1230                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
1231             }
1232             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
1233             // and are rendered into the cells after the row is rendered - using the id for the element.
1234             
1235             if(typeof(value) === 'object'){
1236                 id = Roo.id();
1237                 cellObjects.push({
1238                     container : id,
1239                     cfg : value 
1240                 })
1241             }
1242             
1243             var rowcfg = {
1244                 record: d,
1245                 rowIndex : rowIndex,
1246                 colIndex : i,
1247                 rowClass : ''
1248             };
1249
1250             this.fireEvent('rowclass', this, rowcfg);
1251             
1252             var td = {
1253                 tag: 'td',
1254                 // this might end up displaying HTML?
1255                 // this is too messy... - better to only do it on columsn you know are going to be too long
1256                 //tooltip : (typeof(value) === 'object') ? '' : value,
1257                 cls : rowcfg.rowClass + ' x-col-' + i,
1258                 style: '',
1259                 html: (typeof(value) === 'object') ? '' : value
1260             };
1261             
1262             if (id) {
1263                 td.id = id;
1264             }
1265             
1266             if(typeof(config.colspan) != 'undefined'){
1267                 td.colspan = config.colspan;
1268             }
1269             
1270             
1271             
1272             if(typeof(config.align) != 'undefined' && config.align.length){
1273                 td.style += ' text-align:' + config.align + ';';
1274             }
1275             if(typeof(config.valign) != 'undefined' && config.valign.length){
1276                 td.style += ' vertical-align:' + config.valign + ';';
1277             }
1278             /*
1279             if(typeof(config.width) != 'undefined'){
1280                 td.style += ' width:' +  config.width + 'px;';
1281             }
1282             */
1283             
1284             if(typeof(config.cursor) != 'undefined'){
1285                 td.style += ' cursor:' +  config.cursor + ';';
1286             }
1287             
1288             if(typeof(config.cls) != 'undefined'){
1289                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
1290             }
1291             if (this.responsive) {
1292                 ['xs','sm','md','lg'].map(function(size){
1293                     
1294                     if(typeof(config[size]) == 'undefined'){
1295                         return;
1296                     }
1297                     
1298                     
1299                       
1300                     if (!config[size]) { // 0 = hidden
1301                         // BS 4 '0' is treated as hide that column and below.
1302                         td.cls += ' hidden-' + size + ' hidden' + size + '-down';
1303                         return;
1304                     }
1305                     
1306                     td.cls += ' col-' + size + '-' + config[size] + (
1307                         size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
1308                     );
1309                      
1310     
1311                 });
1312             }
1313             row.cn.push(td);
1314            
1315         }
1316         
1317         row.cellObjects = cellObjects;
1318         
1319         return row;
1320           
1321     },
1322     
1323     
1324     
1325     onBeforeLoad : function()
1326     {
1327         this.el.unmask(); // if needed.
1328     },
1329      /**
1330      * Remove all rows
1331      */
1332     clear : function()
1333     {
1334         this.el.select('tbody', true).first().dom.innerHTML = '';
1335     },
1336     /**
1337      * Show or hide a row.
1338      * @param {Number} rowIndex to show or hide
1339      * @param {Boolean} state hide
1340      */
1341     setRowVisibility : function(rowIndex, state)
1342     {
1343         var bt = this.bodyEl.dom;
1344         
1345         var rows = this.el.select('tbody > tr', true).elements;
1346         
1347         if(typeof(rows[rowIndex]) == 'undefined'){
1348             return;
1349         }
1350         rows[rowIndex][ state ? 'removeClass' : 'addClass']('d-none');
1351         
1352     },
1353     
1354     
1355     getSelectionModel : function(){
1356         if(!this.selModel){
1357             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
1358         }
1359         return this.selModel;
1360     },
1361     /*
1362      * Render the Roo.bootstrap object from renderder
1363      */
1364     renderCellObject : function(r)
1365     {
1366         var _this = this;
1367         
1368         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
1369         
1370         var t = r.cfg.render(r.container);
1371         
1372         if(r.cfg.cn){
1373             Roo.each(r.cfg.cn, function(c){
1374                 var child = {
1375                     container: t.getChildContainer(),
1376                     cfg: c
1377                 };
1378                 _this.renderCellObject(child);
1379             })
1380         }
1381     },
1382     /**
1383      * get the Row Index from a dom element.
1384      * @param {Roo.Element} row The row to look for
1385      * @returns {Number} the row
1386      */
1387     getRowIndex : function(row)
1388     {
1389         var rowIndex = -1;
1390         
1391         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
1392             if(el != row){
1393                 return;
1394             }
1395             
1396             rowIndex = index;
1397         });
1398         
1399         return rowIndex;
1400     },
1401     /**
1402      * get the header TH element for columnIndex
1403      * @param {Number} columnIndex
1404      * @returns {Roo.Element}
1405      */
1406     getHeaderIndex: function(colIndex)
1407     {
1408         var cols = this.headEl.select('th', true).elements;
1409         return cols[colIndex]; 
1410     },
1411     /**
1412      * get the Column Index from a dom element. (using regex on x-hcol-{colid})
1413      * @param {domElement} cell to look for
1414      * @returns {Number} the column
1415      */
1416     getCellIndex : function(cell)
1417     {
1418         var id = String(cell.className).match(Roo.bootstrap.Table.cellRE);
1419         if(id){
1420             return parseInt(id[1], 10);
1421         }
1422         return 0;
1423     },
1424      /**
1425      * Returns the grid's underlying element = used by panel.Grid
1426      * @return {Element} The element
1427      */
1428     getGridEl : function(){
1429         return this.el;
1430     },
1431      /**
1432      * Forces a resize - used by panel.Grid
1433      * @return {Element} The element
1434      */
1435     autoSize : function()
1436     {
1437         if(this.disableAutoSize) {
1438             return;
1439         }
1440         //var ctr = Roo.get(this.container.dom.parentElement);
1441         var ctr = Roo.get(this.el.dom);
1442         
1443         var thd = this.getGridEl().select('thead',true).first();
1444         var tbd = this.getGridEl().select('tbody', true).first();
1445         var tfd = this.getGridEl().select('tfoot', true).first();
1446         
1447         var cw = ctr.getWidth();
1448         this.getGridEl().select('tfoot tr, tfoot  td',true).setWidth(cw);
1449         
1450         if (tbd) {
1451             
1452             tbd.setWidth(ctr.getWidth());
1453             // if the body has a max height - and then scrolls - we should perhaps set up the height here
1454             // this needs fixing for various usage - currently only hydra job advers I think..
1455             //tdb.setHeight(
1456             //        ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
1457             //); 
1458             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
1459             cw -= barsize;
1460         }
1461         cw = Math.max(cw, this.totalWidth);
1462         this.getGridEl().select('tbody tr',true).setWidth(cw);
1463         this.initCSS();
1464         
1465         // resize 'expandable coloumn?
1466         
1467         return; // we doe not have a view in this design..
1468         
1469     },
1470     onBodyScroll: function()
1471     {
1472         //Roo.log("body scrolled');" + this.bodyEl.dom.scrollLeft);
1473         if(this.headEl){
1474             this.headEl.setStyle({
1475                 'position' : 'relative',
1476                 'left': (-1* this.bodyEl.dom.scrollLeft) + 'px'
1477             });
1478         }
1479         
1480         if(this.lazyLoad){
1481             
1482             var scrollHeight = this.bodyEl.dom.scrollHeight;
1483             
1484             var scrollTop = Math.ceil(this.bodyEl.getScroll().top);
1485             
1486             var height = this.bodyEl.getHeight();
1487             
1488             if(scrollHeight - height == scrollTop) {
1489                 
1490                 var total = this.ds.getTotalCount();
1491                 
1492                 if(this.footer.cursor + this.footer.pageSize < total){
1493                     
1494                     this.footer.ds.load({
1495                         params : {
1496                             start : this.footer.cursor + this.footer.pageSize,
1497                             limit : this.footer.pageSize
1498                         },
1499                         add : true
1500                     });
1501                 }
1502             }
1503             
1504         }
1505     },
1506     onColumnSplitterMoved : function(i, diff)
1507     {
1508         this.userResized = true;
1509         
1510         var cm = this.colModel;
1511         
1512         var w = this.getHeaderIndex(i).getWidth() + diff;
1513         
1514         
1515         cm.setColumnWidth(i, w, true);
1516         this.initCSS();
1517         //var cid = cm.getColumnId(i); << not used in this version?
1518        /* Roo.log(['#' + this.id + ' .x-col-' + i, "width", w + "px"]);
1519         
1520         this.CSS.updateRule( '#' + this.id + ' .x-col-' + i, "width", w + "px");
1521         this.CSS.updateRule('#' + this.id + ' .x-hcol-' + i, "width", w + "px");
1522         this.CSS.updateRule('#' + this.id + ' .x-grid-split-' + i, "left", w + "px");
1523 */
1524         //this.updateSplitters();
1525         //this.layout(); << ??
1526         this.fireEvent("columnresize", i, w);
1527     },
1528     onHeaderChange : function()
1529     {
1530         var header = this.renderHeader();
1531         var table = this.el.select('table', true).first();
1532         
1533         this.headEl.remove();
1534         this.headEl = table.createChild(header, this.bodyEl, false);
1535         
1536         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
1537             e.on('click', this.sort, this);
1538         }, this);
1539         
1540         if(this.enableColumnResize !== false && Roo.grid.SplitDragZone){
1541             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
1542         }
1543         
1544     },
1545     
1546     onHiddenChange : function(colModel, colIndex, hidden)
1547     {
1548         /*
1549         this.cm.setHidden()
1550         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
1551         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
1552         
1553         this.CSS.updateRule(thSelector, "display", "");
1554         this.CSS.updateRule(tdSelector, "display", "");
1555         
1556         if(hidden){
1557             this.CSS.updateRule(thSelector, "display", "none");
1558             this.CSS.updateRule(tdSelector, "display", "none");
1559         }
1560         */
1561         // onload calls initCSS()
1562         this.onHeaderChange();
1563         this.onLoad();
1564     },
1565     
1566     setColumnWidth: function(col_index, width)
1567     {
1568         // width = "md-2 xs-2..."
1569         if(!this.colModel.config[col_index]) {
1570             return;
1571         }
1572         
1573         var w = width.split(" ");
1574         
1575         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
1576         
1577         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
1578         
1579         
1580         for(var j = 0; j < w.length; j++) {
1581             
1582             if(!w[j]) {
1583                 continue;
1584             }
1585             
1586             var size_cls = w[j].split("-");
1587             
1588             if(!Number.isInteger(size_cls[1] * 1)) {
1589                 continue;
1590             }
1591             
1592             if(!this.colModel.config[col_index][size_cls[0]]) {
1593                 continue;
1594             }
1595             
1596             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
1597                 continue;
1598             }
1599             
1600             h_row[0].classList.replace(
1601                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
1602                 "col-"+size_cls[0]+"-"+size_cls[1]
1603             );
1604             
1605             for(var i = 0; i < rows.length; i++) {
1606                 
1607                 var size_cls = w[j].split("-");
1608                 
1609                 if(!Number.isInteger(size_cls[1] * 1)) {
1610                     continue;
1611                 }
1612                 
1613                 if(!this.colModel.config[col_index][size_cls[0]]) {
1614                     continue;
1615                 }
1616                 
1617                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
1618                     continue;
1619                 }
1620                 
1621                 rows[i].classList.replace(
1622                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
1623                     "col-"+size_cls[0]+"-"+size_cls[1]
1624                 );
1625             }
1626             
1627             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
1628         }
1629     }
1630 });
1631
1632 // currently only used to find the split on drag.. 
1633 Roo.bootstrap.Table.cellRE = /(?:.*?)x-grid-(?:hd|cell|split)-([\d]+)(?:.*?)/;
1634
1635 /**
1636  * @depricated
1637 */
1638 Roo.bootstrap.Table.AbstractSelectionModel = Roo.grid.AbstractSelectionModel;
1639 Roo.bootstrap.Table.RowSelectionModel = Roo.grid.RowSelectionModel;