Browse Source

Removed multi-column-toggle.

zhixin 6 years ago
parent
commit
5a01b64f83

+ 0 - 50
site/docs/extensions/multi-column-toggle.md

@@ -1,50 +0,0 @@
----
-layout: docs
-title: Table Multi Column Toggle
-description: Table Multi Column Toggle extension of Bootstrap Table.
-group: extensions
-toc: true
----
-
-Use Plugin: [multi-column-toggle](https://github.com/wenzhixin/bootstrap-table/tree/develop/src/extensions/multi-column-toggle)
-
-Adds a button to the toolbar that hides and shows all columns that are 'switchable'.
-
-## Usage
-
-{% highlight html %}
-<script src="extensions/multi-column-toggle/bootstrap-table-multi-toggle.js"></script>
-{% endhighlight %}
-
-## Options
-
-### showToggleBtn
-
-- **type:** `Boolean`
-
-- **Detail:**
-
-   Set true to show the toggle button. This button toggles hiding and showing of multiple columns at once.
-
-- **Default:** `false`
-
-### multiToggleDefaults
-
-- **type:** `Array`
-
-- **Detail:**
-
-   Defines 'default' columns that will never be hidden with this extension. These are different from
-
-- **Default:** `[]`
-* example html: `data-multi-toggle-defaults='["column1", "column2"]'`
-
-## Methods
-
-### copyColumnsToClipboard
-
-* copies the contents of the selected rows to the clipboard.
-
-### copyColumnsToClipboardWithHidden
-
-* copies the contents of the selected rows to the clipboard, *including hidden rows*.

+ 0 - 88
src/extensions/multi-column-toggle/bootstrap-table-multi-toggle.js

@@ -1,88 +0,0 @@
-/**
- * @author Homer Glascock <HopGlascock@gmail.com>
- * @version: v1.0.0
- */
-
-!function ($) {
-  'use strict'
-
-  var sprintf = $.fn.bootstrapTable.utils.sprintf
-
-  var reInit = function (self) {
-    self.initHeader()
-    self.initSearch()
-    self.initPagination()
-    self.initBody()
-  }
-
-  $.extend($.fn.bootstrapTable.defaults, {
-    showToggleBtn: false,
-    multiToggleDefaults: [] // column names go here
-  })
-
-  $.fn.bootstrapTable.methods.push('hideAllColumns', 'showAllColumns')
-
-  var BootstrapTable = $.fn.bootstrapTable.Constructor
-  var _initToolbar = BootstrapTable.prototype.initToolbar
-
-  BootstrapTable.prototype.initToolbar = function () {
-
-    _initToolbar.apply(this, Array.prototype.slice.apply(arguments))
-
-    var that = this
-    var $btnGroup = this.$toolbar.find('>.btn-group')
-
-    if (typeof this.options.multiToggleDefaults === 'string') {
-      this.options.multiToggleDefaults = JSON.parse(this.options.multiToggleDefaults)
-    }
-
-    if (this.options.showToggleBtn && this.options.showColumns) {
-      var showbtn = '<button class=\'btn btn-default hidden\' id=\'showAllBtn\'><span class=\'glyphicon glyphicon-resize-full icon-zoom-in\'></span></button>'
-      var hidebtn = '<button class=\'btn btn-default\' id=\'hideAllBtn\'><span class=\'glyphicon glyphicon-resize-small icon-zoom-out\'></span></button>'
-
-      $btnGroup.append(showbtn + hidebtn)
-
-      $btnGroup.find('#showAllBtn').click(function () { that.showAllColumns()
-        $btnGroup.find('#hideAllBtn').toggleClass('hidden')
-        $btnGroup.find('#showAllBtn').toggleClass('hidden')
-      })
-      $btnGroup.find('#hideAllBtn').click(function () { that.hideAllColumns()
-        $btnGroup.find('#hideAllBtn').toggleClass('hidden')
-        $btnGroup.find('#showAllBtn').toggleClass('hidden')
-      })
-    }
-  }
-
-  BootstrapTable.prototype.hideAllColumns = function () {
-    var that = this
-    var defaults = that.options.multiToggleDefaults
-
-    $.each(this.columns, function (index, column) {
-      // if its one of the defaults dont touch it
-      if (defaults.indexOf(column.field) === -1 && column.switchable) {
-        column.visible = false
-        var $items = that.$toolbar.find('.keep-open input').prop('disabled', false)
-        $items.filter(sprintf('[value="%s"]', index)).prop('checked', false)
-      }
-    })
-
-    reInit(that)
-  }
-
-  BootstrapTable.prototype.showAllColumns = function () {
-    var that = this
-    $.each(this.columns, function (index, column) {
-      if (column.switchable) {
-        column.visible = true
-      }
-
-      var $items = that.$toolbar.find('.keep-open input').prop('disabled', false)
-      $items.filter(sprintf('[value="%s"]', index)).prop('checked', true)
-    })
-
-    reInit(that)
-
-    that.toggleColumn(0, that.columns[0].visible, false)
-  }
-
-}(jQuery)

+ 0 - 17
src/extensions/multi-column-toggle/extension.json

@@ -1,17 +0,0 @@
-{
-  "name": "Multi Column Toggle",
-  "version": "1.0.0",
-  "description": "Allows hiding and showing of multiple columns at once.",
-  "url": "https://github.com/wenzhixin/bootstrap-table/tree/master/src/extensions/multi-column-toggle",
-  "example": "http://issues.wenzhixin.net.cn/bootstrap-table/#extensions/multi-column-toggle.html",
-
-  "plugins": [{
-    "name": "multi-column-toggle",
-    "url": "https://github.com/wenzhixin/bootstrap-table/tree/master/src/extensions/multi-column-toggle"
-  }],
-
-  "author": {
-    "name": "Homer Glascock",
-    "image": "https://avatars1.githubusercontent.com/u/5546710"
-  }
-}