JS 组件系列之Bootstrap Table 冻结列功能IE浏览器兼容性问题解决方案
前言:最近项目里面需要用到表格的冻结列功能,所谓“冻结列”,就是某些情况下表格的列比较多,需要固定前面的几列,后面的列滚动。遗憾的是,bootstrap table里自带的fixed column功能有一点bug,于是和同事讨论该如何解决,于是就有了这篇文章。
一、起因回顾
最近项目里面有一个表格需求,该表格列是动态产生的,而且列的数量操作一定值以后就会出现横向滚动条,滚动的时候需要前面几列固定。也就是所谓的excel的冻结列功能。该如何实现呢?不用多说,当然是查文档,于是找到了这篇。谷歌浏览器效果如下:
第一列固定
貌似问题完美解决!可是,事与愿违,很遗憾,上面说了,这是谷歌浏览器的效果,没有问题。我们来看看ie里面
ie11效果:
ie10效果:
很显然,不管是ie内核版本多少,冻结的列里面的内容都无法显示。怎么办?这可为难死宝宝了!
二、解决方案
还好有万能的开源,查看该页面源代码发现可以找到冻结列这个js的源码。
点击进入可以看到这个js的所有源码,找到源码就好办了,我们试着改改源码看是否能解决这个bug。
我们在bootstrap-table下面的extensions文件夹下面新增加一个文件夹fixed-column
下面就贴出我们改好的源码:
(function ($) { 'use strict'; $.extend($.fn.bootstraptable.defaults, { fixedcolumns: false, fixednumber: 1 }); var bootstraptable = $.fn.bootstraptable.constructor, _initheader = bootstraptable.prototype.initheader, _initbody = bootstraptable.prototype.initbody, _resetview = bootstraptable.prototype.resetview; bootstraptable.prototype.initfixedcolumns = function () { this.$fixedbody = $([ '<div class="fixed-table-column" style="position: absolute; background-color: #fff; border-right:1px solid #ddd;">', '<table>', '<thead></thead>', '<tbody></tbody>', '</table>', '</div>'].join('')); this.timeoutheadercolumns_ = 0; this.timeoutbodycolumns_ = 0; this.$fixedbody.find('table').attr('class', this.$el.attr('class')); this.$fixedheadercolumns = this.$fixedbody.find('thead'); this.$fixedbodycolumns = this.$fixedbody.find('tbody'); this.$tablebody.before(this.$fixedbody); }; bootstraptable.prototype.initheader = function () { _initheader.apply(this, array.prototype.slice.apply(arguments)); if (!this.options.fixedcolumns) { return; } this.initfixedcolumns(); var $tr = this.$header.find('tr:eq(0)').clone(), $ths = $tr.clone().find('th'); $tr.html(''); for (var i = 0; i < this.options.fixednumber; i++) { $tr.append($ths.eq(i).clone()); } this.$fixedheadercolumns.html('').append($tr); }; bootstraptable.prototype.initbody = function () { _initbody.apply(this, array.prototype.slice.apply(arguments)); if (!this.options.fixedcolumns) { return; } var that = this; this.$fixedbodycolumns.html(''); this.$body.find('> tr[data-index]').each(function () { var $tr = $(this).clone(), $tds = $tr.clone().find('td'); $tr.html(''); for (var i = 0; i < that.options.fixednumber; i++) { $tr.append($tds.eq(i).clone()); } that.$fixedbodycolumns.append($tr); }); }; bootstraptable.prototype.resetview = function () { _resetview.apply(this, array.prototype.slice.apply(arguments)); if (!this.options.fixedcolumns) { return; } cleartimeout(this.timeoutheadercolumns_); this.timeoutheadercolumns_ = settimeout($.proxy(this.fitheadercolumns, this), this.$el.is(':hidden') ? 100 : 0); cleartimeout(this.timeoutbodycolumns_); this.timeoutbodycolumns_ = settimeout($.proxy(this.fitbodycolumns, this), this.$el.is(':hidden') ? 100 : 0); }; bootstraptable.prototype.fitheadercolumns = function () { var that = this, visiblefields = this.getvisiblefields(), headerwidth = 0; this.$body.find('tr:first-child:not(.no-records-found) > *').each(function (i) { var $this = $(this), index = i; if (i >= that.options.fixednumber) { return false; } if (that.options.detailview && !that.options.cardview) { index = i - 1; } that.$fixedbody.find('thead th[data-field="' + visiblefields[index] + '"]') .find('.fht-cell').width($this.innerwidth() - 1); headerwidth += $this.outerwidth(); }); this.$fixedbody.width(headerwidth - 1).show(); }; bootstraptable.prototype.fitbodycolumns = function () { var that = this, top = -(parseint(this.$el.css('margin-top')) - 2), height = this.$tablebody.height() - 2; if (!this.$body.find('> tr[data-index]').length) { this.$fixedbody.hide(); return; } this.$body.find('> tr').each(function (i) { that.$fixedbody.find('tbody tr:eq(' + i + ')').height($(this).height() - 1); }); //// events this.$tablebody.on('scroll', function () { that.$fixedbody.find('table').css('top', -$(this).scrolltop()); }); this.$body.find('> tr[data-index]').off('hover').hover(function () { var index = $(this).data('index'); that.$fixedbody.find('tr[data-index="' + index + '"]').addclass('hover'); }, function () { var index = $(this).data('index'); that.$fixedbody.find('tr[data-index="' + index + '"]').removeclass('hover'); }); this.$fixedbody.find('tr[data-index]').off('hover').hover(function () { var index = $(this).data('index'); that.$body.find('tr[data-index="' + index + '"]').addclass('hover'); }, function () { var index = $(this).data('index'); that.$body.find('> tr[data-index="' + index + '"]').removeclass('hover'); }); }; })(jquery);
.fixed-table-container thead th .th-inner, .fixed-table-container tbody td .th-inner { line-height: 18px; } .fixed-table-pagination .pagination a { padding: 5px 10px; } .fixed-table-toolbar .bars, .fixed-table-toolbar .search, .fixed-table-toolbar .columns { margin-top: 5px; margin-bottom: 5px; }
主要修改的地方:
1)源码里面将thead和tbody分别封装成了一个单独的表格,修改后将thead和tbody放到了一个table里面;
2)依次遍历冻结的列放入到固定的tbody里面;
其实也就改了那么几个地方,就能完美解决ie的bug。我们先来看看效果:
ie11
ie10
ie8
我们再来看看如何使用。
1、引用js和对应的css
<script src="~/content/bootstrap-table/extensions/fixed-column/js/bootstrap-table-fixed-columns.js"></script> <link href="~/content/bootstrap-table/extensions/fixed-column/css/bootstrap-table-fixed-columns.css" rel="external nofollow" rel="stylesheet" />
2、js调用如下
加两个参数fixedcolumns和fixednumber即可,什么意思不用过多解释,是否冻结列、冻结列的列数。还有一点需要说明的是,这里调用的时候不能指定它的height,如果指定height,表格的冻结显示会有问题。
以上所述是小编给大家介绍的js 组件系列之bootstrap table 冻结列功能ie浏览器兼容性问题解决方案,希望对大家有所帮助