激情欧美日韩一区二区|国产18在线播放|黄的日本免费大片|国产色在线 | 亚洲|青青操夜夜操

bootstrap開發中遇到的坑

歡歡歡歡 發表于 2018-10-10 17:21

bootstrap table技術文檔:摸這里

坑一:bootstrap 如何默認選中行

解決方案:

1,要有checkbox

2,checkbox要設置formatter

3,formatter返回指定格式的內容

function stateFormatter(value, row, index) {
    if (row.state == true)
        return {
            disabled : true,//設置是否可用
            checked : true//設置選中
        };
    return value;
}
 
坑二:取消或選中某一行
解決方案:
使用方法  check/uncheck,而不是方法 unselectRow;bootstrap貌似沒有unselectRow這個方法。