When the ReorderabledRows property is false or not present, the rest of bootstraptable was not inited properly. (Since commit 6201df0)
@@ -45,6 +45,7 @@
BootstrapTable.prototype.init = function () {
if (!this.options.reorderableRows) {
+ _init.apply(this, Array.prototype.slice.apply(arguments));
return;
}