| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /**
- * @author: Dennis Hernández
- * @webSite: http://djhvscf.github.io/Blog
- * @version: v1.1.0
- */
- !function ($) {
- 'use strict';
- var getFieldIndex = function (columns, field) {
- var index = -1;
- $.each(columns, function (i, column) {
- if (column.field === field) {
- index = i;
- return false;
- }
- return true;
- });
- return index;
- };
- $.extend($.fn.bootstrapTable.defaults, {
- reorderableColumns: false,
- maxMovingRows: 10,
- onReorderColumn: function (headerFields) {
- return false;
- }
- });
- $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
- 'reorder-column.bs.table': 'onReorderColumn'
- });
- var BootstrapTable = $.fn.bootstrapTable.Constructor,
- _initHeader = BootstrapTable.prototype.initHeader,
- _toggleColumn = BootstrapTable.prototype.toggleColumn,
- _toggleView = BootstrapTable.prototype.toggleView,
- _resetView = BootstrapTable.prototype.resetView;
- BootstrapTable.prototype.initHeader = function () {
- _initHeader.apply(this, Array.prototype.slice.apply(arguments));
- if (!this.options.reorderableColumns) {
- return;
- }
- this.makeRowsReorderable();
- };
- BootstrapTable.prototype.toggleColumn = function () {
- _toggleColumn.apply(this, Array.prototype.slice.apply(arguments));
- if (!this.options.reorderableColumns) {
- return;
- }
- this.makeRowsReorderable();
- };
- BootstrapTable.prototype.toggleView = function () {
- _toggleView.apply(this, Array.prototype.slice.apply(arguments));
- if (!this.options.reorderableColumns) {
- return;
- }
- if (this.options.cardView) {
- return;
- }
- this.makeRowsReorderable();
- };
- BootstrapTable.prototype.resetView = function () {
- _resetView.apply(this, Array.prototype.slice.apply(arguments));
- if (!this.options.reorderableColumns) {
- return;
- }
- this.makeRowsReorderable();
- };
- BootstrapTable.prototype.makeRowsReorderable = function () {
- var that = this;
- try {
- $(this.$el).dragtable('destroy');
- } catch (e) {}
- $(this.$el).dragtable({
- maxMovingRows: that.options.maxMovingRows,
- clickDelay:200,
- beforeStop: function() {
- var ths = [],
- columns = [],
- columnIndex = -1;
- that.$header.find('th').each(function (i) {
- ths.push($(this).data('field'));
- });
- for (var i = 0; i < ths.length; i++ ) {
- columnIndex = getFieldIndex(that.options.columns, ths[i]);
- if (columnIndex !== -1) {
- columns.push(that.options.columns[columnIndex]);
- that.options.columns.splice(columnIndex, 1);
- }
- }
- that.options.columns = that.options.columns.concat(columns);
- that.header.fields = ths;
- that.resetView();
- that.trigger('reorder-column', ths);
- }
- });
- };
- }(jQuery);
|