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

本文介绍如何在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);

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值