Need to execute some code after the bootstrap-table asynchronous refresh, but no relevant information on the callback function of bootstrap-table refresh was found
迷茫2017-06-26 10:55:27
// 监听 refresh 事件
dom.on("refresh.bs.table", function() {
// code here
});
// 主动触发 表单 refresh 事件
dom.bootstrapTable("refresh", {
url: baseUrl + "foo.php",
query: dataobj
});