欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

程序员文章站 2023-10-31 18:41:52
正文 前言:一年前,博主分享过一篇关于bootstraptable组件冻结列的解决方案  js组件系列——bootstrap table 冻结列功能ie浏览器兼...

正文

前言:一年前,博主分享过一篇关于bootstraptable组件冻结列的解决方案  js组件系列——bootstrap table 冻结列功能ie浏览器兼容性问题解决方案 ,通过该篇,确实可以实现bootstraptable的冻结列效果,并且可以兼容ie浏览器。这一年的时间,不断有园友以及群里面的朋友问过我关于固定高度之后,冻结列页面效果不能对齐的问题,奈何博主太忙,一直没有抽空将这个问题优化。最近项目里面也不断有人提过这个bug,这下子不能再推了,必须要直面“惨淡的bug”,于是昨天利用一天的时间将原来的扩展做了一下修改,能够完美解决固定高度之后冻结列的问题,并且,博主还加了一些特性,比如右侧列的冻结、冻结列的选中等等,有需要的朋友可以捧个场。相信通过此篇,老板再也不用担心我的冻结列不能固定高度了~~

一、问题追踪

记得在之前的那篇里面介绍过,bootstraptable组件自带的冻结列扩展,不能兼容ie浏览器,即使最新版本的ie也会无法使用,这是一般的系统不能忍受的,所以在那篇里面给出过解决方案,但并未分析ie浏览器不能兼容的原因,昨天博主花了点时间特意调试了下源码,原来在ie里面,使用jquery的clone()方法和谷歌等浏览器有所区别。为了展示这个区别,这里先抛个砖。比如有如下代码:

<table id="tbtest">
 <tr><td>aaa</td><td>bbb</td><td>ccc</td></tr>
 <tr><td>ddd</td><td>eee</td><td>fff</td></tr>
 <tr><td>ggg</td><td>hhh</td><td>iii</td></tr>
</table>
<script type="text/javascript">
 var $tr = $('#tbtest tr:eq(0)').clone();
 var $tds = $tr.find('td');
 $tr.html('');
 alert($tds.eq(0).html());
</script>

代码本身很简单,只是为了测试用。看到这里你可以试着猜一下alert的结果。

算了,不考大家了,直接贴出来吧,有图有真相!

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

相信不用我过多的解释哪个是ie,哪个是谷歌了吧。

两者的区别很明显,谷歌里面得到“aaa”,而ie里面得到空字符串。这是为什么呢?

其实如果你用值类型和引用类型的区别来解释这个差别你就不难理解了,在谷歌浏览器里面,$tr变量是一个引用类型,当你清空了它里面的内容,只是清除了$tr这个变量的“指针”,或者叫指向,$tds变量仍然指向了$tr的原始内容,所以调用$tds.eq(0).html()的时候仍然能得到结果aaa;同样的代码在ie浏览器里面,$tr变量就是一个值类型,你清空了它里面的内容之后,$tds的内容也被清空了。如果你有更好的解释,欢迎赐教哈。

之所以组件原生的js不能兼容ie浏览器,就是因为它使用了clone()这个方法,导致在不同的浏览器看到不同的结果。相信bootstraptable组件的作者应该是知道这个区别的,只不过没有太在意这些,从作者做的很多功能的兼容性能够看出,他做的功能很多没有太多的考虑ie浏览器的效果。

二、效果预览

还是老规矩,说了这个多,没图怎么行,小二,上图!

没有固定高度的情况:单列冻结。

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

多列冻结。

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

 固定任意高度效果

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

ie浏览器也没有问题,这里就不再重复上图了。

三、源码解析

源码没啥说的,有兴趣可以自己看看,主要的原理还是重写bootstraptable构造器的事件,来达到想要的效果。

(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.$fixedheader = $([
   '<div class="fixed-table-header-columns">',
   '<table>',
   '<thead></thead>',
   '</table>',
   '</div>'].join(''));
  this.timeoutheadercolumns_ = 0;
  this.$fixedheader.find('table').attr('class', this.$el.attr('class'));
  this.$fixedheadercolumns = this.$fixedheader.find('thead');
  this.$tableheader.before(this.$fixedheader);
  this.$fixedbody = $([
   '<div class="fixed-table-body-columns">',
   '<table>',
   '<tbody></tbody>',
   '</table>',
   '</div>'].join(''));
  this.timeoutbodycolumns_ = 0;
  this.$fixedbody.find('table').attr('class', this.$el.attr('class'));
  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 that = this, $trs = this.$header.find('tr').clone();
  $trs.each(function () {
   $(this).find('th:gt(' + (that.options.fixednumber - 1) + ')').remove();
  });
  this.$fixedheadercolumns.html('').append($trs);
 };
 bootstraptable.prototype.initbody = function () {
  _initbody.apply(this, array.prototype.slice.apply(arguments));
  if (!this.options.fixedcolumns) {
   return;
  }
  var that = this,
   rowspan = 0;
  this.$fixedbodycolumns.html('');
  this.$body.find('> tr[data-index]').each(function () {
   var $tr = $(this).clone(),
    $tds = $tr.find('td');
   //$tr.html('');这样存在一个兼容性问题,在ie浏览器里面,清空tr,$tds的值也会被清空。
   //$tr.html('');
   var $newtr = $('<tr></tr>');
   $newtr.attr('data-index', $tr.attr('data-index'));
   $newtr.attr('data-uniqueid', $tr.attr('data-uniqueid'));
   var end = that.options.fixednumber;
   if (rowspan > 0) {
    --end;
    --rowspan;
   }
   for (var i = 0; i < end; i++) {
    $newtr.append($tds.eq(i).clone());
   }
   that.$fixedbodycolumns.append($newtr);
   if ($tds.eq(0).attr('rowspan')) {
    rowspan = $tds.eq(0).attr('rowspan') - 1;
   }
  });
 };
 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.$fixedheader.find('th[data-field="' + visiblefields[index] + '"]')
    .find('.fht-cell').width($this.innerwidth());
   headerwidth += $this.outerwidth();
  });
  this.$fixedheader.width(headerwidth).show();
 };
 bootstraptable.prototype.fitbodycolumns = function () {
  var that = this,
   top = -(parseint(this.$el.css('margin-top'))),
   // the fixed height should reduce the scorll-x height
   height = this.$tablebody.height() - 18;
  debugger;
  if (!this.$body.find('> tr[data-index]').length) {
   this.$fixedbody.hide();
   return;
  }
  if (!this.options.height) {
   top = this.$fixedheader.height()- 1;
   height = height - top;
  }
  this.$fixedbody.css({
   width: this.$fixedheader.width(),
   height: height,
   top: top + 1
  }).show();
  this.$body.find('> tr').each(function (i) {
   that.$fixedbody.find('tr:eq(' + i + ')').height($(this).height() - 0.5);
   var thattds = this;
   debugger;
   that.$fixedbody.find('tr:eq(' + i + ')').find('td').each(function (j) {
    $(this).width($($(thattds).find('td')[j]).width() + 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-header-columns,
.fixed-table-body-columns {
 position: absolute;
 background-color: #fff;
 display: none;
 box-sizing: border-box;
 overflow: hidden;
}
 .fixed-table-header-columns .table,
 .fixed-table-body-columns .table {
  border-right: 1px solid #ddd;
 }
  .fixed-table-header-columns .table.table-no-bordered,
  .fixed-table-body-columns .table.table-no-bordered {
   border-right: 1px solid transparent;
  }
 .fixed-table-body-columns table {
  position: absolute;
  animation: none;
 }
.bootstrap-table .table-hover > tbody > tr.hover > td {
 background-color: #f5f5f5;
}

如何使用呢?这里博主单独搞了一个静态的html测试页,还是贴出来供大家参考。

<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
 <meta charset="utf-8" />
 <title></title>
 <!--必须的css引用-->
 <link href="content/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
 <link href="content/bootstrap-table/bootstrap-table.min.css" rel="stylesheet" />
<link href="content/bootstrap-table/extensions/fixed-column/bootstrap-table-fixed-columns.css" rel="stylesheet" />
</head>
<body>
 <div class="panel-body" style="padding-bottom:0px;">
  <!--<div class="panel panel-default">
   <div class="panel-heading">查询条件</div>
   <div class="panel-body">
    <form id="formsearch" class="form-horizontal">
     <div class="form-group" style="margin-top:15px">
      <label class="control-label col-sm-1" for="name">员工姓名</label>
      <div class="col-sm-3">
       <input type="text" class="form-control" id="name">
      </div>
      <label class="control-label col-sm-1" for="address">家庭住址</label>
      <div class="col-sm-3">
       <input type="text" class="form-control" id="address">
      </div>
      <div class="col-sm-4" style="text-align:left;">
       <button type="button" style="margin-left:50px" id="btn_query" class="btn btn-primary">查询</button>
      </div>
     </div>
    </form>
   </div>
  </div>-->
  <div id="toolbar" class="btn-group">
   <button id="btn_add" type="button" class="btn btn-success">
    <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>新增
   </button>
  </div>
  <table id="tb_user"></table>
 </div>
 <!--新增或者编辑的弹出框-->
 <div class="modal fade" id="mymodal" tabindex="-1" role="dialog" aria-labelledby="mymodallabel">
  <div class="modal-dialog" role="document">
   <div class="modal-content">
    <div class="modal-header">
     <button type="button" class="close" data-dismiss="modal" aria-label="close"><span aria-hidden="true">×</span></button>
     <h4 class="modal-title" id="mymodallabel">操作</h4>
    </div>
    <div class="modal-body">
     <div class="row" style="padding:10px;">
      <label class="control-label col-xs-2">姓名</label>
      <div class="col-xs-10">
       <input type="text" name="name" class="form-control" placeholder="姓名">
      </div>
     </div>
     <div class="row" style="padding:10px;">
      <label class="control-label col-xs-2">年龄</label>
      <div class="col-xs-10">
       <input type="text" name="age" class="form-control" placeholder="年龄">
      </div>
     </div>
     <div class="row" style="padding:10px;">
      <label class="control-label col-xs-2">学校</label>
      <div class="col-xs-10">
       <input type="text" name="school" class="form-control" placeholder="学校">
      </div>
     </div>
     <div class="row" style="padding:10px;">
      <label class="control-label col-xs-2">家庭住址</label>
      <div class="col-xs-10">
       <input type="text" name="address" class="form-control" placeholder="学校">
      </div>
     </div>
     <div class="row" style="padding:10px;">
      <label class="control-label col-xs-2">备注</label>
      <div class="col-xs-10">
       <textarea class="form-control" placeholder="备注" name="remark"></textarea>
      </div>
     </div>
    </div>
    <div class="modal-footer">
     <button type="button" class="btn btn-default" data-dismiss="modal"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span>关闭</button>
     <button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-floppy-disk" aria-hidden="true"></span>保存</button>
    </div>
   </div>
  </div>
 </div>
  <!--必须的js文件-->
  <script src="content/jquery-1.9.1.min.js"></script>
  <script src="content/bootstrap/js/bootstrap.min.js"></script>
  <script src="content/bootstrap-table/bootstrap-table.min.js"></script>
  <script src="content/bootstrap-table/locale/bootstrap-table-zh-cn.min.js"></script>
<script src="content/bootstrap-table/extensions/fixed-column/bootstrap-table-fixed-columns.js"></script>
  <script type="text/javascript">
   //页面加载完成之后
   var data = [
    { id: 1, name: 'jim', age: 30, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 2, name: 'kate', age: 30, school: '光明小学', address: '深圳市', remark: 'my name is jim green' },
    { id: 3, name: 'lucy', age: 30, school: '光明小学', address: '广州天河机场', remark: 'my name is jim green' },
    { id: 4, name: 'lilei', age: 30, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 5, name: 'lintao', age: 30, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 6, name: 'lily', age: 30, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 7, name: 'hanmeimei', age: 30, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 8, name: '张三', age: 46, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 9, name: '李四', age: 23, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 10, name: '王五', age: 33, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 11, name: '赵六', age: 22, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 12, name: 'polly', age: 300, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
    { id: 13, name: 'uncle', age: 50, school: '光明小学', address: '北京市光明小学旁', remark: 'my name is jim green' },
   ];
   var childdata = [
    { sourcefield: 'a', backfield: 'bb' },
    { sourcefield: 'cc', backfield: 'uu' },
    { sourcefield: 'dd', backfield: 'j' },
   ];
   $(function () {
    //表格的初始化
    $('#tb_user').bootstraptable({
     data: data,       //直接从本地数据初始化表格
     method: 'get',      //请求方式(*)
     toolbar: '#toolbar',    //工具按钮用哪个容器
     striped: true,      //是否显示行间隔色
     cache: false,      //是否使用缓存,默认为true,所以一般情况下需要设置一下这个属性(*)
     pagination: true,     //是否显示分页(*)
     sortable: false,      //是否启用排序
     sortorder: "asc",     //排序方式
     queryparams: function (params) {
      return params;
     },         //传递参数(*)
     sidepagination: "client",   //分页方式:client客户端分页,server服务端分页(*)
     pagenumber: 1,      //初始化加载第一页,默认第一页
     pagesize: 5,      //每页的记录行数(*)
     pagelist: [10, 25, 50, 100],  //可供选择的每页的行数(*)
     search: true,      //是否显示表格搜索,此搜索是客户端搜索,不会进服务端,所以,个人感觉意义不大
     strictsearch: true,
     showcolumns: true,     //是否显示所有的列
     showrefresh: true,     //是否显示刷新按钮
     minimumcountcolumns: 2,    //最少允许的列数
     height:400,
   selectitemname: 'parentitem',
     fixedcolumns: true,
     fixednumber: 6,
     //注册加载子表的事件。注意下这里的三个参数!
     onexpandrow: function (index, row, $detail) {
      initsubtable(index, row, $detail);
     },
     columns: [{
      checkbox: true
     }, {
      field: 'name',
      title: '姓名',
width:200
     }, {
      field: 'age',
      title: '年龄',
width:200
     }, {
      field: 'school',
      title: '毕业院校',
width:200
     }, {
      field: 'address',
      title: '家庭住址',
width:100
     }, {
      field: 'remark',
      title: '备注',
width:100
     }, 
 {
      field: 'remark',
      title: '备注',
width:100
     }, {
      field: 'remark',
      title: '备注',
width:100
     }, {
      field: 'remark',
      title: '备注',
width:100
     }, {
      field: 'remark',
      title: '备注',
width:100
     }, {
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      field: 'remark',
      title: '备注',
width:100
     },{
      title: '操作',
width:200,
      formatter: function (value, row, index) {//这里的三个参数:value表示当前行当前列的值;row表示当前行的数据;index表示当前行的索引(从0开始)。
       var html = '<button type="button" onclick="editmodel('+row.id+')" class="btn btn-primary"><span class="glyphicon glyphicon-pencil" aria- hidden="true" ></span >编辑</button >  ' +
          '<button type="button" onclick="deletemodel(' + row.id + ')" class="btn btn-danger"><span class="glyphicon glyphicon-remove" aria- hidden="true" ></span >删除</button >';
       return html;
      }
     }],
     oneditablesave: function (field, row, oldvalue, $el) {
      alert("更新保存事件,原始值为" + oldvalue);
      //$.ajax({
      // type: "post",
      // url: "/editable/edit",
      // data: row,
      // datatype: 'json',
      // success: function (data, status) {
      //  if (status == "success") {
      //   alert('提交数据成功');
      //  }
      // },
      // error: function () {
      //  alert('编辑失败');
      // },
      // complete: function () {
      // }
      //});
     }
    });
    //新增事件
    $("#btn_add").on('click', function () {
$('#tb_user').bootstraptable("resetview");
     //弹出模态框
     $("#mymodal").modal();
     //给弹出框里面的各个文本框赋值
     $("#mymodal input").val("");
     $("#mymodal textarea").val("");
    });
   });
   //加载子表
   var initsubtable = function (index, row, $detail) {
    var parentid = row.menu_id;
    var cur_table = $detail.html('<table></table>').find('table');
    //子表的初始化和父表完全相同
    $(cur_table).bootstraptable({
     //url: '/api/menuapi/getchildrenmenu',
     data: childdata,
     method: 'get',
     queryparams: { strparentid: parentid },
     ajaxoptions: { strparentid: parentid },
     clicktoselect: true,
     uniqueid: "menu_id",
     pagesize: 10,
     pagelist: [10, 25],
   selectitemname: 'childitem'+index,
   checkboxheader:false,
     columns: [{
      checkbox: true
     }, {
       field: 'sourcefield',
      title: '源端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }, {
      field: 'backfield',
      title: '备端字段'
     }],
     //无线循环取子表,直到子表里面没有记录
     onexpandrow: function (index, row, $subdetail) {
      //oinit.initsubtable(index, row, $subdetail);
     }
    });
   };
   //编辑事件
   var editmodel = function (id) {
    //根据当前行的id获取当前的行数据
    var row = $("#tb_user").bootstraptable('getrowbyuniqueid', id);
    //弹出模态框
    $("#mymodal").modal();
    //给弹出框里面的各个文本框赋值
    $("#mymodal input[name='name']").val(row.name);
    $("#mymodal input[name='age']").val(row.age);
    $("#mymodal input[name='school']").val(row.school);
    $("#mymodal input[name='address']").val(row.address);
    $("#mymodal textarea[name='remark']").val(row.remark);
   }
   //删除事件
   var deletemodel = function (id) {
    alert("删除id为" + id + "的用户");
   }
  </script>
</body>
</html>
bootstraptablefixcolumns.html

代码释疑:

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

1、源码各个方法解释

  • bootstraptable.prototype.initfixedcolumns :当初始化的时候配置了fixedcolumns: true时需要执行的冻结列的方法。
  • bootstraptable.prototype.initheader:重写组件的的初始化表头的方法,加入冻结的表头。
  • bootstraptable.prototype.initbody:重写组件的初始化表内容的方法,加入冻结的表内容。 
  • bootstraptable.prototype.resetview:重写“父类”的resetview方法,通过settimeout去设置冻结的表头和表体的宽度和高度。
  • bootstraptable.prototype.fitheadercolumns:设置冻结列的表头的宽高。
  • bootstraptable.prototype.fitbodycolumns :设置冻结列的表体的宽高,以及滚动条和主体表格的滚动条同步。

 2、对于上述抛出的ie和谷歌的兼容性问题的解析

查看bootstraptable.prototype.initbody方法,你会发现里面写有部分注释。

this.$body.find('> tr[data-index]').each(function () {
  var $tr = $(this).clone(),
  $tds = $tr.find('td');
  //$tr.html('');这样存在一个兼容性问题,在ie浏览器里面,清空tr,$tds的值也会被清空。
  //$tr.html('');
  var $newtr = $('<tr></tr>');
  $newtr.attr('data-index', $tr.attr('data-index'));
  $newtr.attr('data-uniqueid', $tr.attr('data-uniqueid'));
  var end = that.options.fixednumber;
  if (rowspan > 0) {
  --end;
  --rowspan;
  }
  for (var i = 0; i < end; i++) {
  $newtr.append($tds.eq(i).clone());
  }
  that.$fixedbodycolumns.append($newtr);
  if ($tds.eq(0).attr('rowspan')) {
  rowspan = $tds.eq(0).attr('rowspan') - 1;
  }
 });

这一段做了部分修改,有兴趣可以调适细看。

3、项目中的使用

 最近在研究学习abp的相关源码,将bootstraptable融入abp里面去了,贴出表格冻结的一些效果图。

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

4、扩展

除此之外,还特意做了右边操作列的冻结。

JS 组件系列之Bootstrap Table的冻结列功能彻底解决高度问题

和左边列的冻结一样,最右边列的冻结也是可以做的,最不同的地方莫过于右边列有一些操作按钮,如果在点击冻结列上面的按钮时触发实际表格的按钮事件是难点。如果有这个需求,可以看看。

 bootstrap-table-fixed-columns.js
 bootstrap-table-fixed-columns.css

需要说明的是,由于时间问题,右侧固定列的代码和上述解决高度的代码并未合并,所以如果你既想要解决冻结列的高度,又想要右侧列的冻结,需要自己花点时间合并下代码。

以上所述是小编给大家介绍的js 组件系列之bootstrap table的冻结列功能彻底解决高度问题,希望对大家有所帮助