bootstrap table合并行数据并居中对齐效果
程序员文章站
2023-09-04 13:57:28
本文实例为大家分享了bootstrap table合并行数据并居中对齐的具体代码,供大家参考,具体内容如下
渲染表格后进行数据行合并
onloadsuccess...
本文实例为大家分享了bootstrap table合并行数据并居中对齐的具体代码,供大家参考,具体内容如下
渲染表格后进行数据行合并
onloadsuccess: function (data) { $('#tablestyle').bootstraptable('mergecells', {index: 1, field: 'name', rowspan: 3}); }
整体代码
$('#tablestyle').bootstraptable({ url: '/table/tablestyle', method:'post', pagination: true, //分页 pagenumber:1, //初始化加载第一页,默认第一页 pagesize: 10, //每页的记录行数(*) pagelist: [10, 25, 50, 100], //可供选择的每页的行数(*) search: false, //显示搜索框 sidepagination: "server", //服务端处理分页 onloadsuccess: function (data) { $('#tablestyle').bootstraptable('mergecells', {index: 1, field: 'name', rowspan: 3}); }, columns: [{ field: '', checkbox:true }, { field: 'name', title: '名称' }, { field: 'price', title: '价格' }] });
合并后对td设置属性 vertical-align: middle;
展现图片
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。