|
@@ -112,6 +112,7 @@
|
|
|
_onPageNext = BootstrapTable.prototype.onPageNext,
|
|
_onPageNext = BootstrapTable.prototype.onPageNext,
|
|
|
_onPageLast = BootstrapTable.prototype.onPageLast,
|
|
_onPageLast = BootstrapTable.prototype.onPageLast,
|
|
|
_toggleColumn = BootstrapTable.prototype.toggleColumn,
|
|
_toggleColumn = BootstrapTable.prototype.toggleColumn,
|
|
|
|
|
+ _selectPage = BootstrapTable.prototype.selectPage,
|
|
|
_onSearch = BootstrapTable.prototype.onSearch;
|
|
_onSearch = BootstrapTable.prototype.onSearch;
|
|
|
|
|
|
|
|
// init save data after initTable function
|
|
// init save data after initTable function
|
|
@@ -203,6 +204,11 @@
|
|
|
|
|
|
|
|
setCookie(this, cookieIds.columns, JSON.stringify(visibleColumns));
|
|
setCookie(this, cookieIds.columns, JSON.stringify(visibleColumns));
|
|
|
};
|
|
};
|
|
|
|
|
+
|
|
|
|
|
+ BootstrapTable.prototype.selectPage = function (page) {
|
|
|
|
|
+ _selectPage.apply(this, Array.prototype.slice.apply(arguments));
|
|
|
|
|
+ setCookie(this, idsStateSaveList.pageNumber, page);
|
|
|
|
|
+ };
|
|
|
|
|
|
|
|
BootstrapTable.prototype.onSearch = function () {
|
|
BootstrapTable.prototype.onSearch = function () {
|
|
|
_onSearch.apply(this, Array.prototype.slice.apply(arguments));
|
|
_onSearch.apply(this, Array.prototype.slice.apply(arguments));
|