diff --git a/Bootstrap.Admin/wwwroot/js/menus.js b/Bootstrap.Admin/wwwroot/js/menus.js index 7d9cdd6c..42ff103e 100644 --- a/Bootstrap.Admin/wwwroot/js/menus.js +++ b/Bootstrap.Admin/wwwroot/js/menus.js @@ -328,4 +328,13 @@ $(function () { }); } }); + + // fix bug + $($('table')[1]).data('bootstrap.table').__proto__.getOptions = function () { + var data = this.options.data; + delete this.options.data; + var options = $.extend(true, {}, this.options); + this.options.data = data; + return options; + }; }); \ No newline at end of file