bootstrap table 主子表 局部数据刷新(刷新子表)

1、主表中设置data-detail-view="true",启用主子表模式:

<table class="table table-striped" width="80%" id="ds_table" align="center"
       striped="true"
       data-height="430" data-detail-view="true" data-detail-formatter="getChildTable"
       data-pagination="true" sidePagination="server" data-click-to-select="true">
    <thead>
2、JS动态创建子表,关键的是$detail.html('<table id="child_table"></table>').find('table');,这里创建了一个table,并给table设置了id,非常重要,不设置的话后续无法刷新子表:
 
 
 function getChildTable(index, row, $detail) {

        var parentid = row.tpno;
//        console.log(row);
        var cur_table = $detail.html('<table id="child_table"></table>').find('table');
        $(cur_table).bootstrapTable({
            url: '/etestpaper/getPaperQType',
            method: 'get',
            queryParams: {strParentID: parentid},
            ajaxOptions: {strParentID: parentid},
            showFooter: true,
            columns: [
                 {
                    field: 'questiontypename',
                    title: '题型名称',
                    align: 'center',
                    footerFormatter:function () {
                        return '合计:';
                    }
                }, {
                    field: 'questionnum',
                    title: '小题数量',
                    align: 'center',
                    footerFormatter: function (value) {
                        var count = 0;
                        for (var i in value) {
                            count += value[i].questionnum;
                        }
                        return count;
                    }
                }, {
                    field: 'mark',
                    title: '题型分值',
                    align: 'center',
                    footerFormatter: function (value) {

                        var count = 0;
                        for (var i in value) {
//                            console.log(value[i].mark);
                            count += value[i].mark;
                        }
                        return count;
                        console.log(count);
                    }
                },{
                    title: '操作',
                    field: 'c_id',
                    align: 'center',
                    formatter: childFormatter(),
                    events: operateEvent
                },
            ],
            //无线循环取子表,直到子表里面没有记录
            onExpandRow: function (index, row, $Subdetail) {
                getChildTalbe(index, row, $Subdetail);
            }
        });
    }

3、完成添加或修改操作后,可以直接对子表进行刷新了,我这里重新查询了数据并绑定到子表(应该可以有更好的办法,可以试试不执行查询、直接刷新当前子表):

 
 
$("#child_table").bootstrapTable('refresh', data.data);

转载于:https://www.cnblogs.com/telwanggs/p/8591743.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值