Skip to content

Commit

Permalink
Fix wenzhixin#3024 when ckeckbox column disappear
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Hernández authored and Dennis Hernández committed Mar 26, 2017
1 parent 7891168 commit bb319ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/bootstrap-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,9 @@
column = that.columns[j];

if (that.fromHtml && typeof value_ === 'undefined') {
return;
if(!column.checkbox && !column.radio) {
return;
}
}

if (!column.visible) {
Expand Down

0 comments on commit bb319ef

Please sign in to comment.