ソースを参照

Merge pull request #3045 from djhvscf/develop

Fix #3024 and #2894
文翼 8 年 前
コミット
4228fa6049
1 ファイル変更3 行追加1 行削除
  1. 3 1
      src/bootstrap-table.js

+ 3 - 1
src/bootstrap-table.js

@@ -1687,7 +1687,9 @@
                 column = that.columns[j];
 
             if (that.fromHtml && typeof value_ === 'undefined') {
-                return;
+                if((!column.checkbox) && (!column.radio)) {
+                    return;
+                }
             }
 
             if (!column.visible) {