123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- * @author Jay <jwang@dizsoft.com>
- */
- (function ($) {
- 'use strict';
- var sprintf = $.fn.bootstrapTable.utils.sprintf;
- $.extend($.fn.bootstrapTable.defaults, {
- showJumpto:true,
- exportOptions: {}
- });
- $.extend($.fn.bootstrapTable.locales, {
- formatJumpto: function () {
- return '跳转';
- }
- });
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales);
- var BootstrapTable = $.fn.bootstrapTable.Constructor,
- _initPagination = BootstrapTable.prototype.initPagination;
- BootstrapTable.prototype.initPagination = function () {
- _initPagination.apply(this, Array.prototype.slice.apply(arguments));
- if (this.options.showJumpto) {
- var that = this,
- $pageGroup = this.$pagination.find('ul.pagination'),
- $jumpto = $pageGroup.find('li.jumpto');
- if (!$jumpto.length) {
- $jumpto = $([
- '<li class="jumpto">',
- '<input type="text" class="form-control">',
- '<button ' +
- ' title="' + this.options.formatJumpto() + '" ' +
- ' type="button" style="height:30px;width: 50px;border-radius: 0.25rem;color: #fff;border: 1px solid transparent;;background-color: #1d7ad9;line-height:1;">'+this.options.formatJumpto(),
- '</button>',
- '</li>'].join('')).appendTo($pageGroup);
- $jumpto.find('button').click(function () {
- that.selectPage(parseInt($jumpto.find('input').val()));
- });
- }
- }
- };
- })(jQuery);
|