中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Bootstrap mergeCells合并單元格(多列)

發布時間:2020-07-20 22:00:29 來源:網絡 閱讀:7332 作者:hecnet 欄目:web開發

/**

  • 合并單元格
  • @param target 目標表格對象
  • @param data 原始數據(在服務端完成排序)
  • @param fieldName 合并參照的屬性名稱
  • @param fieldList 要合并的字段集合[不含fieldName]![]
  • @param colspan 合并開始列
    */
    function mergeCells(target, data, fieldName, fieldList, colspan) {
    // 聲明一個map計算相同屬性值在data對象出現的次數和
    var sortMap = {};
    var index = 0;
    var begini=0;
    var endi = 0;
    // 統計fieldName長度
    getCount(target, data, 0, data.length, fieldName, index, sortMap);
    for(var prop in sortMap){
    endi = index+sortMap[prop];
    if(sortMap[prop]>1){
    // console.log(fieldName + ":" + prop,sortMap[prop]);
    for(var i=0;i<fieldList.length;i++){
    getCount(target, data, begini, endi, fieldList[i], index, null);
    }
    }
    index = begini = endi;
    }

}

/**

  • 計算合并
    /
    function getCount(target, data, begini, endi, fieldName, index, sortMap) {
    // console.log('fieldName:' + fieldName);
    // console.log(begini,endi);
    if(sortMap == null){
    sortMap = {};
    }
    for(var i = begini ; i < endi ; 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;
    }
    // console.log(fieldName + ":" + key, sortMap[key]);
    break;
    }
    }
    }
    for(var p in sortMap){
    var count = sortMap[p] * 1;
    // console.log(">>>>>" + ":" + p , count);
    $(target).bootstrapTable('mergeCells',{index:index, field:fieldName, colspan: 1, rowspan: count});
    index += count;
    }

}

使用:
var data1 = $('#table').bootstrapTable('getData', true);
mergeCells($('#table'), data1, "proname", ["promonth", "pkno", "zb"], 1);

Bootstrap mergeCells合并單元格(多列)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万荣县| 鸡西市| 平遥县| 六盘水市| 介休市| 辽阳市| 延寿县| 绥中县| 朝阳县| 抚顺县| 大厂| 枣庄市| 松溪县| 平陆县| 平武县| 沾化县| 长宁区| 察雅县| 棋牌| 老河口市| 武安市| 南充市| 吉木萨尔县| 鲁甸县| 宁蒗| 浮山县| 屏南县| 阳山县| 犍为县| 延长县| 江门市| 凯里市| 昭平县| 晋宁县| 宾阳县| 安化县| 宿松县| 鄯善县| 林周县| 长乐市| 西宁市|