bootstraptable行合并

Posted abo666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstraptable行合并相关的知识,希望对你有一定的参考价值。

onLoadSuccess: function (data) 
            data = $(‘#categorySonTab‘).bootstrapTable(‘getData‘, true);
            //合并单元格
            mergeCells(data, "name", 1, $(‘#categorySonTab‘));
            mergeCells(data, "url", 1, $(‘#categorySonTab‘));
            mergeCells(data, "cateWord", 1, $(‘#categorySonTab‘));
            mergeCells(data, "id", 1, $(‘#categorySonTab‘));

        ,

 

合并方法(直接可用)

/**
 * 合并单元格
 * @param data  原始数据(在服务端完成排序)
 * @param fieldName 合并属性名称
 * @param colspan   合并列
 * @param target    目标表格对象
 */
function mergeCells(data, fieldName, colspan, target) 
    //声明一个map计算相同属性值在data对象出现的次数和
    var sortMap = ;
    for (var i = 0; i < data.length; i++) 
        for (var prop in data[i]) 
            if (prop == fieldName) 
                var key = data[i][prop];
                if (sortMap.hasOwnProperty(key)) 
                    sortMap[key] = sortMap[key] * 1 + 1;
                 else 
                    sortMap[key] = 1;
                
                break;
            
        
    
    var index = 0;
    for (var prop in sortMap) 
        var count = sortMap[prop] * 1;
        $(target).bootstrapTable(‘mergeCells‘, index: index, field: fieldName, colspan: colspan, rowspan: count);
        index += count;
    

 

效果图:

技术图片

以上是关于bootstraptable行合并的主要内容,如果未能解决你的问题,请参考以下文章

bootstrap-table批量隐藏行怎么做呢?

python测试开发django-125.bootstrapTable获取选中行的数据

bootstra表格鼠标悬停与状态类

bootstrap table点击某行的删除按钮,删除当前行记录,怎么只刷新表格当前页的内容?

BootstrapTable formatNoMatches 不生效

bootstrap table如何合并行,是用js启动的表格,数据是动态的。类似表格重绘,该怎么写