|
@@ -182,7 +182,7 @@
|
|
|
if (cookie.text !== '') {
|
|
if (cookie.text !== '') {
|
|
|
$(element).val(cookie.text);
|
|
$(element).val(cookie.text);
|
|
|
cachedFilters[cookie.field] = cookie.text;
|
|
cachedFilters[cookie.field] = cookie.text;
|
|
|
- }
|
|
|
|
|
|
|
+ }
|
|
|
});
|
|
});
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -236,10 +236,8 @@
|
|
|
_onSort = BootstrapTable.prototype.onSort,
|
|
_onSort = BootstrapTable.prototype.onSort,
|
|
|
_onPageNumber = BootstrapTable.prototype.onPageNumber,
|
|
_onPageNumber = BootstrapTable.prototype.onPageNumber,
|
|
|
_onPageListChange = BootstrapTable.prototype.onPageListChange,
|
|
_onPageListChange = BootstrapTable.prototype.onPageListChange,
|
|
|
- _onPageFirst = BootstrapTable.prototype.onPageFirst,
|
|
|
|
|
_onPagePre = BootstrapTable.prototype.onPagePre,
|
|
_onPagePre = BootstrapTable.prototype.onPagePre,
|
|
|
_onPageNext = BootstrapTable.prototype.onPageNext,
|
|
_onPageNext = BootstrapTable.prototype.onPageNext,
|
|
|
- _onPageLast = BootstrapTable.prototype.onPageLast,
|
|
|
|
|
_toggleColumn = BootstrapTable.prototype.toggleColumn,
|
|
_toggleColumn = BootstrapTable.prototype.toggleColumn,
|
|
|
_selectPage = BootstrapTable.prototype.selectPage,
|
|
_selectPage = BootstrapTable.prototype.selectPage,
|
|
|
_onSearch = BootstrapTable.prototype.onSearch;
|
|
_onSearch = BootstrapTable.prototype.onSearch;
|
|
@@ -348,12 +346,6 @@
|
|
|
return false;
|
|
return false;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
- BootstrapTable.prototype.onPageFirst = function () {
|
|
|
|
|
- _onPageFirst.apply(this, Array.prototype.slice.apply(arguments));
|
|
|
|
|
- setCookie(this, cookieIds.pageNumber, this.options.pageNumber);
|
|
|
|
|
- return false;
|
|
|
|
|
- };
|
|
|
|
|
-
|
|
|
|
|
BootstrapTable.prototype.onPagePre = function () {
|
|
BootstrapTable.prototype.onPagePre = function () {
|
|
|
_onPagePre.apply(this, Array.prototype.slice.apply(arguments));
|
|
_onPagePre.apply(this, Array.prototype.slice.apply(arguments));
|
|
|
setCookie(this, cookieIds.pageNumber, this.options.pageNumber);
|
|
setCookie(this, cookieIds.pageNumber, this.options.pageNumber);
|
|
@@ -366,12 +358,6 @@
|
|
|
return false;
|
|
return false;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
- BootstrapTable.prototype.onPageLast = function () {
|
|
|
|
|
- _onPageLast.apply(this, Array.prototype.slice.apply(arguments));
|
|
|
|
|
- setCookie(this, cookieIds.pageNumber, this.options.pageNumber);
|
|
|
|
|
- return false;
|
|
|
|
|
- };
|
|
|
|
|
-
|
|
|
|
|
BootstrapTable.prototype.toggleColumn = function () {
|
|
BootstrapTable.prototype.toggleColumn = function () {
|
|
|
_toggleColumn.apply(this, Array.prototype.slice.apply(arguments));
|
|
_toggleColumn.apply(this, Array.prototype.slice.apply(arguments));
|
|
|
|
|
|