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