Browse Source

Merge pull request #3045 from djhvscf/develop

Fix #3024 and #2894
文翼 8 years ago
parent
commit
4228fa6049
1 changed files with 3 additions and 1 deletions
  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) {