时间:2021-05-28
本文实例为大家分享了bootstrap table复杂操作,如何生成外层表格,如何填充表格内容,供大家参考,具体内容如下
1、先生成外层表格:
2、生成展开之后的表格内容:
function detailFormatter(index, row) { handoutColums=[]; handoutData=[]; videoColums=[]; videoData=[]; var html = []; html.push('<div class="row">'); html.push('<div class="col-md-6">'); html.push('<table id="tableHandout'+index+'"></table>'); html.push('</div>'); html.push('<div class="col-md-6">'); html.push('<table id="tableVideo'+index+'"></table>'); html.push('</div>'); html.push('</div>'); handoutColums.push({ field: 'handoutIndex',title: '编号', sortable: true ,width: 150 },{ field: 'handoutName',title: '讲义名称', sortable: true ,width: 150 },{ field: 'degree',title: '完成度', sortable: true ,width: 150 }); videoColums.push({ field: 'videoIndex',title: '编号', sortable: true ,width: 150 },{ field: 'videoName',title: '视频名称', sortable: true ,width: 150 },{ field: 'degree',title: '完成度', sortable: true ,width: 150 }); $.each(row, function (key, value) { if(key=="handout"){ $.each(value,function(index,handout){ var row = {}; row['handoutIndex'] = index+1; row['handoutName']=handout.handoutName; row['degree']=handout.degree; handoutData.push(row); }); } if(key=="video"){ $.each(value,function(index,video){ var row = {}; row['videoIndex']=index+1; row['videoName']=video.videoName; row['degree']=video.degree; videoData.push(row); }); } }); return html.join(''); }3、填充表格内容:
$('#tableActivity').on('expand-row.bs.table', function (e, index, row, $detail) { initHandoutTable(handoutColums,handoutData,index); initVideoTable(videoColums,videoData,index); }); function initHandoutTable(colums,data,index){ $('#tableHandout'+index).bootstrapTable('destroy').bootstrapTable({ cache: false, height: 200, clickToSelect: true, idField:'', columns:colums, data:data }); } function initVideoTable(colums,data,index){ $('#tableVideo'+index).bootstrapTable('destroy').bootstrapTable({ cache: false, height: 200, clickToSelect: true, idField:'', columns:colums, data:data }); }如果大家还想深入学习,可以点击这里进行学习,再为大家附两个精彩的专题:Bootstrap学习教程 Bootstrap实战教程 Bootstrap插件使用教程
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
bootstrap-table是一个基于Bootstrap风格的强大的表格插件神器,官网:http://bootstrap-table.wenzhixin.ne
分页(Pagination),是一种无序列表,Bootstrap像处理其他界面元素一样处理分页。bootstrap-table介绍bootstrap-table
bootstrap-table下载地址:https://github.com/wenzhixin/bootstrap-table/先来看一张效果图:下载下来后,
1、bootstrap-table是在bootstrap的基础上面做了一些封装,所以在使用bootstrap-table之前要导入的js和css有 1)基本的
拼接table请将以下代码直接运行:换下bootstrap.cssjquery-1.12.3.min.jsbootstrap-paginator.min.js"