Browse Source

Fix #3024 when ckeckbox column disappear

Dennis Hernández 8 years ago
parent
commit
bb319ef247
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/bootstrap-table.js

+ 3 - 1
src/bootstrap-table.js

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