BootStrap Table

微笑、不失礼 提交于 2020-11-03 16:16:10

表格加载完成事件,表格行数据二层展开及缩起 事件

var $tableFahuo = $('#tabFahuo');
    $tableFahuo.on('load-success.bs.table', function (data) {
        $.each(currExpandFahuoRows, function (v, n) {
            $tableFahuo.bootstrapTable('expandRow', n);
        });
        setTimeout(function () {
            $tableFahuo.bootstrapTable('scrollTo', currFahuoScroll);
        }, 200);

    }).on('expand-row.bs.table', function (index, row, $detail) {
        if (currExpandFahuoRows.indexOf(row) < 0) {
            currExpandFahuoRows.push(row);
        }
    }).on('collapse-row.bs.table', function (index, row, $detail) {
        currExpandFahuoRows.forEach(function (item, index, arr) {
            if (item == row) {
                currExpandFahuoRows.splice(index, 1);
            }
        });
    });

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!