Browse Source

Fix loading style error.

zhixin 11 years ago
parent
commit
9e9e903c67
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/bootstrap-table.js

+ 2 - 1
src/bootstrap-table.js

@@ -1183,7 +1183,8 @@
             }
         }
 
-        $td.attr('rowspan', rowspan).attr('colspan', colspan).show();
+        $td.attr('rowspan', rowspan).attr('colspan', colspan)
+            .show(10, $.proxy(this.resetView, this));
     };
 
     BootstrapTable.prototype.getSelections = function () {