bootstrap table 列拖拽调序

bootstrap table 列拖拽调序

最近使用bootstrap table中bootstrap-table-reorder-columns.js。
官网示例
https://examples.bootstrap-table.com/index.html#extensions/reorder-columns.html

首先需要导入一下css,及js
bootstrap table 列拖拽调序_第1张图片
按照官网示例,在table标签上添加data-reorderable-columns="true"属性就可以实现拖拽
在这里插入图片描述

但是你会发现此时还是不能实现拖拽,那是因为官网这个bootstrap-table-reorder-columns.js你需要修改

bootstrap-table-reorder-columns.js将官网这个js文件用下文替换掉就可以实现列的拖拽了

(function (global, factory) {
    if (typeof define === "function" && define.amd) {
        define([], factory);
    } else if (typeof exports !== "undefined") {
        factory();
    } else {
        var mod = {
            exports: {}
        };
        factory();
        global.bootstrapTableReorderColumns = mod.exports;
    }
})(this, function () {
    'use strict';

    /**
     * @author: Dennis Hernández
     * @webSite: http://djhvscf.github.io/Blog
     * @version: v1.1.0
     */

    !function ($) {

        'use strict';

        //From MDN site, https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter

        var filterFn = function filterFn() {
            if (!Array.prototype.filter) {
                Array.prototype.filter = function (fun /*, thisArg*/) {
                    'use strict';

                    if (this === void 0 || this === null) {
                        throw new TypeError();
                    }

                    var t = Object(this);
                    var len = t.length >>> 0;
                    if (typeof fun !== 'function') {
                        throw new TypeError();
                    }

                    var res = [];
                    var thisArg = arguments.length >= 2 ? arguments[1] : void 0;
                    for (var i = 0; i < len; i++) {
                        if (i in t) {
                            var val = t[i];

                            // NOTE: Technically this should Object.defineProperty at
                            //       the next index, as push can be affected by
                            //       properties on Object.prototype and Array.prototype.
                            //       But that method's new, and collisions should be
                            //       rare, so use the more-compatible alternative.
                            if (fun.call(thisArg, val, i, t)) {
                                res.push(val);
                            }
                        }
                    }

                    return res;
                };
            }
        };

        $.extend($.fn.bootstrapTable.defaults, {
            reorderableColumns: false,
            maxMovingRows: 10,
            onReorderColumn: function onReorderColumn(headerFields) {
                return false;
            },
            dragaccept: null
        });

        $.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,
                dragaccept: that.options.dragaccept,
                clickDelay: 200,
                beforeStop: function beforeStop() {
                    var ths = [],
                        formatters = [],
                        columns = [],
                        columnsHidden = [],
                        columnIndex = -1,
                        optionsColumns = [];
                    that.$header.find('th').each(function (i) {
                        ths.push($(this).data('field'));
                        formatters.push($(this).data('formatter'));
                    });

                    //Exist columns not shown
                    if (ths.length < that.columns.length) {
                        columnsHidden = $.grep(that.columns, function (column) {
                            return !column.visible;
                        });
                        for (var i = 0; i < columnsHidden.length; i++) {
                            ths.push(columnsHidden[i].field);
                            formatters.push(columnsHidden[i].formatter);
                        }
                    }

                    for (var i = 0; i < ths.length; i++) {
                        columnIndex = that.fieldsColumnsIndex[ths[i]];
                        if (columnIndex !== -1) {
                            for(var j=0; j<that.columns.length; j++) {
                                if(that.columns[j].field == ths[i]) {
                                    that.columns[j].fieldIndex = i;
                                    columns.push(that.columns[j]);
                                    that.columns.splice(j, 1);
                                    break;
                                }
                            }
                            // columns.push(that.columns[columnIndex]);
                            // that.columns.splice(columnIndex, 1);
                        }
                    }

                    that.columns = that.columns.concat(columns);

                    filterFn(); //Support 
                    $.each(that.columns, function (i, column) {
                        var found = false,
                            field = column.field;
                        that.options.columns[0].filter(function (item) {
                            if (!found && item["field"] == field) {
                                optionsColumns.push(item);
                                found = true;
                                return false;
                            } else return true;
                        });
                    });

                    that.options.columns[0] = optionsColumns;

                    that.header.fields = ths;
                    that.header.formatters = formatters;
                    that.initHeader();
                    that.initToolbar();
                    that.initBody();
                    that.resetView();
                    that.trigger('reorder-column', ths);
                }
            });
        };
    }(jQuery);
});

拖拽前
bootstrap table 列拖拽调序_第2张图片
拖拽中
bootstrap table 列拖拽调序_第3张图片
拖拽后
bootstrap table 列拖拽调序_第4张图片

你可能感兴趣的:(bootstrap)