| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * @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.options.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);
|