You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
Plaintext
67 lines
1.9 KiB
Plaintext
/**
|
|
* @author zhixin wen <wenzhixin2010@gmail.com>
|
|
* extensions: https://github.com/lukaskral/bootstrap-table-filter
|
|
*/
|
|
|
|
!function($) {
|
|
|
|
'use strict';
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, {
|
|
showFilter: false
|
|
});
|
|
|
|
var BootstrapTable = $.fn.bootstrapTable.Constructor,
|
|
_init = BootstrapTable.prototype.init,
|
|
_initSearch = BootstrapTable.prototype.initSearch;
|
|
|
|
BootstrapTable.prototype.init = function () {
|
|
_init.apply(this, Array.prototype.slice.apply(arguments));
|
|
|
|
var that = this;
|
|
this.$el.on('load-success.bs.table', function () {
|
|
if (that.options.showFilter) {
|
|
$(that.options.toolbar).bootstrapTableFilter({
|
|
connectTo: that.$el
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
BootstrapTable.prototype.initSearch = function () {
|
|
_initSearch.apply(this, Array.prototype.slice.apply(arguments));
|
|
|
|
if (this.options.sidePagination !== 'server') {
|
|
if (typeof this.searchCallback === 'function') {
|
|
this.data = $.grep(this.options.data, this.searchCallback);
|
|
}
|
|
}
|
|
};
|
|
|
|
BootstrapTable.prototype.getData = function () {
|
|
return (this.searchText || this.searchCallback) ? this.data : this.options.data;
|
|
};
|
|
|
|
BootstrapTable.prototype.getColumns = function () {
|
|
return this.columns;
|
|
};
|
|
|
|
BootstrapTable.prototype.registerSearchCallback = function (callback) {
|
|
this.searchCallback = callback;
|
|
};
|
|
|
|
BootstrapTable.prototype.updateSearch = function () {
|
|
this.options.pageNumber = 1;
|
|
this.initSearch();
|
|
this.updatePagination();
|
|
};
|
|
|
|
BootstrapTable.prototype.getServerUrl = function () {
|
|
return (this.options.sidePagination === 'server') ? this.options.url : false;
|
|
};
|
|
|
|
$.fn.bootstrapTable.methods.push('getColumns',
|
|
'registerSearchCallback', 'updateSearch',
|
|
'getServerUrl');
|
|
|
|
}(jQuery); |