vendor/assets/javascripts/bootstrap-table/bootstrap-table.js in bootstrap-table-rails-1.13.4 vs vendor/assets/javascripts/bootstrap-table/bootstrap-table.js in bootstrap-table-rails-1.15.4
- old
+ new
@@ -1,3854 +1,6924 @@
(function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define([], factory);
- } else if (typeof exports !== "undefined") {
- factory();
- } else {
- var mod = {
- exports: {}
- };
- factory();
- global.bootstrapTable = mod.exports;
- }
-})(this, function () {
- 'use strict';
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery')) :
+ typeof define === 'function' && define.amd ? define(['jquery'], factory) :
+ (global = global || self, global.BootstrapTable = factory(global.jQuery));
+}(this, function ($) { 'use strict';
- function _classCallCheck(instance, Constructor) {
- if (!(instance instanceof Constructor)) {
- throw new TypeError("Cannot call a class as a function");
- }
- }
+ $ = $ && $.hasOwnProperty('default') ? $['default'] : $;
- var _createClass = function () {
- function defineProperties(target, props) {
- for (var i = 0; i < props.length; i++) {
- var descriptor = props[i];
- descriptor.enumerable = descriptor.enumerable || false;
- descriptor.configurable = true;
- if ("value" in descriptor) descriptor.writable = true;
- Object.defineProperty(target, descriptor.key, descriptor);
- }
- }
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
- return function (Constructor, protoProps, staticProps) {
- if (protoProps) defineProperties(Constructor.prototype, protoProps);
- if (staticProps) defineProperties(Constructor, staticProps);
- return Constructor;
- };
- }();
+ function createCommonjsModule(fn, module) {
+ return module = { exports: {} }, fn(module, module.exports), module.exports;
+ }
- var _slicedToArray = function () {
- function sliceIterator(arr, i) {
- var _arr = [];
- var _n = true;
- var _d = false;
- var _e = undefined;
+ var O = 'object';
+ var check = function (it) {
+ return it && it.Math == Math && it;
+ };
- try {
- for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
- _arr.push(_s.value);
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
+ var global_1 =
+ // eslint-disable-next-line no-undef
+ check(typeof globalThis == O && globalThis) ||
+ check(typeof window == O && window) ||
+ check(typeof self == O && self) ||
+ check(typeof commonjsGlobal == O && commonjsGlobal) ||
+ // eslint-disable-next-line no-new-func
+ Function('return this')();
- if (i && _arr.length === i) break;
- }
- } catch (err) {
- _d = true;
- _e = err;
- } finally {
- try {
- if (!_n && _i["return"]) _i["return"]();
- } finally {
- if (_d) throw _e;
- }
- }
+ var fails = function (exec) {
+ try {
+ return !!exec();
+ } catch (error) {
+ return true;
+ }
+ };
- return _arr;
- }
+ // Thank's IE8 for his funny defineProperty
+ var descriptors = !fails(function () {
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
+ });
- return function (arr, i) {
- if (Array.isArray(arr)) {
- return arr;
- } else if (Symbol.iterator in Object(arr)) {
- return sliceIterator(arr, i);
- } else {
- throw new TypeError("Invalid attempt to destructure non-iterable instance");
- }
- };
- }();
+ var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
- function _toConsumableArray(arr) {
- if (Array.isArray(arr)) {
- for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) {
- arr2[i] = arr[i];
- }
+ // Nashorn ~ JDK8 bug
+ var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
- return arr2;
- } else {
- return Array.from(arr);
- }
- }
+ // `Object.prototype.propertyIsEnumerable` method implementation
+ // https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable
+ var f = NASHORN_BUG ? function propertyIsEnumerable(V) {
+ var descriptor = getOwnPropertyDescriptor(this, V);
+ return !!descriptor && descriptor.enumerable;
+ } : nativePropertyIsEnumerable;
- var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
- return typeof obj;
- } : function (obj) {
- return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
- };
+ var objectPropertyIsEnumerable = {
+ f: f
+ };
- /**
- * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.13.4
- * https://github.com/wenzhixin/bootstrap-table/
- */
+ var createPropertyDescriptor = function (bitmap, value) {
+ return {
+ enumerable: !(bitmap & 1),
+ configurable: !(bitmap & 2),
+ writable: !(bitmap & 4),
+ value: value
+ };
+ };
- (function ($) {
- // TOOLS DEFINITION
- // ======================
+ var toString = {}.toString;
- var bootstrapVersion = 3;
- try {
- var rawVersion = $.fn.dropdown.Constructor.VERSION;
+ var classofRaw = function (it) {
+ return toString.call(it).slice(8, -1);
+ };
- // Only try to parse VERSION if is is defined.
- // It is undefined in older versions of Bootstrap (tested with 3.1.1).
- if (rawVersion !== undefined) {
- bootstrapVersion = parseInt(rawVersion, 10);
- }
- } catch (e) {
- // ignore
- }
+ var split = ''.split;
- var bootstrap = {
- 3: {
- iconsPrefix: 'glyphicon',
- icons: {
- paginationSwitchDown: 'glyphicon-collapse-down icon-chevron-down',
- paginationSwitchUp: 'glyphicon-collapse-up icon-chevron-up',
- refresh: 'glyphicon-refresh icon-refresh',
- toggleOff: 'glyphicon-list-alt icon-list-alt',
- toggleOn: 'glyphicon-list-alt icon-list-alt',
- columns: 'glyphicon-th icon-th',
- detailOpen: 'glyphicon-plus icon-plus',
- detailClose: 'glyphicon-minus icon-minus',
- fullscreen: 'glyphicon-fullscreen'
- },
- classes: {
- buttons: 'default',
- pull: 'pull'
- },
- html: {
- toobarDropdow: ['<ul class="dropdown-menu" role="menu">', '</ul>'],
- toobarDropdowItem: '<li role="menuitem"><label>%s</label></li>',
- pageDropdown: ['<ul class="dropdown-menu" role="menu">', '</ul>'],
- pageDropdownItem: '<li role="menuitem" class="%s"><a href="#">%s</a></li>'
- }
- },
- 4: {
- iconsPrefix: 'fa',
- icons: {
- paginationSwitchDown: 'fa-caret-square-down',
- paginationSwitchUp: 'fa-caret-square-up',
- refresh: 'fa-sync',
- toggleOff: 'fa-toggle-off',
- toggleOn: 'fa-toggle-on',
- columns: 'fa-th-list',
- detailOpen: 'fa-plus',
- detailClose: 'fa-minus',
- fullscreen: 'fa-arrows-alt'
- },
- classes: {
- buttons: 'secondary',
- pull: 'float'
- },
- html: {
- toobarDropdow: ['<div class="dropdown-menu dropdown-menu-right">', '</div>'],
- toobarDropdowItem: '<label class="dropdown-item">%s</label>',
- pageDropdown: ['<div class="dropdown-menu">', '</div>'],
- pageDropdownItem: '<a class="dropdown-item %s" href="#">%s</a>'
- }
- }
- }[bootstrapVersion];
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
+ var indexedObject = fails(function () {
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
+ // eslint-disable-next-line no-prototype-builtins
+ return !Object('z').propertyIsEnumerable(0);
+ }) ? function (it) {
+ return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
+ } : Object;
- var Utils = {
- bootstrapVersion: bootstrapVersion,
+ // `RequireObjectCoercible` abstract operation
+ // https://tc39.github.io/ecma262/#sec-requireobjectcoercible
+ var requireObjectCoercible = function (it) {
+ if (it == undefined) throw TypeError("Can't call method on " + it);
+ return it;
+ };
- sprintf: function sprintf(_str) {
- for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- args[_key - 1] = arguments[_key];
- }
+ // toObject with fallback for non-array-like ES3 strings
- var flag = true;
- var i = 0;
- var str = _str.replace(/%s/g, function () {
- var arg = args[i++];
- if (typeof arg === 'undefined') {
- flag = false;
- return '';
- }
- return arg;
- });
- return flag ? str : '';
- },
- getFieldTitle: function getFieldTitle(list, value) {
- var _iteratorNormalCompletion = true;
- var _didIteratorError = false;
- var _iteratorError = undefined;
+ var toIndexedObject = function (it) {
+ return indexedObject(requireObjectCoercible(it));
+ };
- try {
- for (var _iterator = list[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
- var item = _step.value;
+ var isObject = function (it) {
+ return typeof it === 'object' ? it !== null : typeof it === 'function';
+ };
- if (item.field === value) {
- return item.title;
- }
- }
- } catch (err) {
- _didIteratorError = true;
- _iteratorError = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion && _iterator.return) {
- _iterator.return();
- }
- } finally {
- if (_didIteratorError) {
- throw _iteratorError;
- }
- }
- }
+ // `ToPrimitive` abstract operation
+ // https://tc39.github.io/ecma262/#sec-toprimitive
+ // instead of the ES6 spec version, we didn't implement @@toPrimitive case
+ // and the second argument - flag - preferred type is a string
+ var toPrimitive = function (input, PREFERRED_STRING) {
+ if (!isObject(input)) return input;
+ var fn, val;
+ if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
+ if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
+ if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
+ throw TypeError("Can't convert object to primitive value");
+ };
- return '';
- },
- setFieldIndex: function setFieldIndex(columns) {
- var totalCol = 0;
- var flag = [];
+ var hasOwnProperty = {}.hasOwnProperty;
- var _iteratorNormalCompletion2 = true;
- var _didIteratorError2 = false;
- var _iteratorError2 = undefined;
+ var has = function (it, key) {
+ return hasOwnProperty.call(it, key);
+ };
- try {
- for (var _iterator2 = columns[0][Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
- var column = _step2.value;
+ var document$1 = global_1.document;
+ // typeof document.createElement is 'object' in old IE
+ var EXISTS = isObject(document$1) && isObject(document$1.createElement);
- totalCol += column.colspan || 1;
- }
- } catch (err) {
- _didIteratorError2 = true;
- _iteratorError2 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion2 && _iterator2.return) {
- _iterator2.return();
- }
- } finally {
- if (_didIteratorError2) {
- throw _iteratorError2;
- }
- }
- }
+ var documentCreateElement = function (it) {
+ return EXISTS ? document$1.createElement(it) : {};
+ };
- for (var i = 0; i < columns.length; i++) {
- flag[i] = [];
- for (var j = 0; j < totalCol; j++) {
- flag[i][j] = false;
- }
- }
+ // Thank's IE8 for his funny defineProperty
+ var ie8DomDefine = !descriptors && !fails(function () {
+ return Object.defineProperty(documentCreateElement('div'), 'a', {
+ get: function () { return 7; }
+ }).a != 7;
+ });
- for (var _i = 0; _i < columns.length; _i++) {
- var _iteratorNormalCompletion3 = true;
- var _didIteratorError3 = false;
- var _iteratorError3 = undefined;
+ var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
- try {
- for (var _iterator3 = columns[_i][Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
- var r = _step3.value;
+ // `Object.getOwnPropertyDescriptor` method
+ // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor
+ var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
+ O = toIndexedObject(O);
+ P = toPrimitive(P, true);
+ if (ie8DomDefine) try {
+ return nativeGetOwnPropertyDescriptor(O, P);
+ } catch (error) { /* empty */ }
+ if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
+ };
- var rowspan = r.rowspan || 1;
- var colspan = r.colspan || 1;
- var index = flag[_i].indexOf(false);
+ var objectGetOwnPropertyDescriptor = {
+ f: f$1
+ };
- if (colspan === 1) {
- r.fieldIndex = index;
- // when field is undefined, use index instead
- if (typeof r.field === 'undefined') {
- r.field = index;
- }
- }
+ var anObject = function (it) {
+ if (!isObject(it)) {
+ throw TypeError(String(it) + ' is not an object');
+ } return it;
+ };
- for (var k = 0; k < rowspan; k++) {
- flag[_i + k][index] = true;
- }
- for (var _k = 0; _k < colspan; _k++) {
- flag[_i][index + _k] = true;
- }
- }
- } catch (err) {
- _didIteratorError3 = true;
- _iteratorError3 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion3 && _iterator3.return) {
- _iterator3.return();
- }
- } finally {
- if (_didIteratorError3) {
- throw _iteratorError3;
- }
- }
- }
- }
- },
- getScrollBarWidth: function getScrollBarWidth() {
- if (this.cachedWidth === undefined) {
- var $inner = $('<div/>').addClass('fixed-table-scroll-inner');
- var $outer = $('<div/>').addClass('fixed-table-scroll-outer');
+ var nativeDefineProperty = Object.defineProperty;
- $outer.append($inner);
- $('body').append($outer);
+ // `Object.defineProperty` method
+ // https://tc39.github.io/ecma262/#sec-object.defineproperty
+ var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
+ anObject(O);
+ P = toPrimitive(P, true);
+ anObject(Attributes);
+ if (ie8DomDefine) try {
+ return nativeDefineProperty(O, P, Attributes);
+ } catch (error) { /* empty */ }
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
+ if ('value' in Attributes) O[P] = Attributes.value;
+ return O;
+ };
- var w1 = $inner[0].offsetWidth;
- $outer.css('overflow', 'scroll');
- var w2 = $inner[0].offsetWidth;
+ var objectDefineProperty = {
+ f: f$2
+ };
- if (w1 === w2) {
- w2 = $outer[0].clientWidth;
- }
+ var hide = descriptors ? function (object, key, value) {
+ return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
+ } : function (object, key, value) {
+ object[key] = value;
+ return object;
+ };
- $outer.remove();
- this.cachedWidth = w1 - w2;
- }
- return this.cachedWidth;
- },
- calculateObjectValue: function calculateObjectValue(self, name, args, defaultValue) {
- var func = name;
+ var setGlobal = function (key, value) {
+ try {
+ hide(global_1, key, value);
+ } catch (error) {
+ global_1[key] = value;
+ } return value;
+ };
- if (typeof name === 'string') {
- // support obj.func1.func2
- var names = name.split('.');
+ var shared = createCommonjsModule(function (module) {
+ var SHARED = '__core-js_shared__';
+ var store = global_1[SHARED] || setGlobal(SHARED, {});
- if (names.length > 1) {
- func = window;
- var _iteratorNormalCompletion4 = true;
- var _didIteratorError4 = false;
- var _iteratorError4 = undefined;
+ (module.exports = function (key, value) {
+ return store[key] || (store[key] = value !== undefined ? value : {});
+ })('versions', []).push({
+ version: '3.1.3',
+ mode: 'global',
+ copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
+ });
+ });
- try {
- for (var _iterator4 = names[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) {
- var f = _step4.value;
+ var functionToString = shared('native-function-to-string', Function.toString);
- func = func[f];
- }
- } catch (err) {
- _didIteratorError4 = true;
- _iteratorError4 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion4 && _iterator4.return) {
- _iterator4.return();
- }
- } finally {
- if (_didIteratorError4) {
- throw _iteratorError4;
- }
- }
- }
- } else {
- func = window[name];
- }
- }
+ var WeakMap = global_1.WeakMap;
- if (func !== null && (typeof func === 'undefined' ? 'undefined' : _typeof(func)) === 'object') {
- return func;
- }
+ var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(functionToString.call(WeakMap));
- if (typeof func === 'function') {
- return func.apply(self, args || []);
- }
+ var id = 0;
+ var postfix = Math.random();
- if (!func && typeof name === 'string' && this.sprintf.apply(this, [name].concat(_toConsumableArray(args)))) {
- return this.sprintf.apply(this, [name].concat(_toConsumableArray(args)));
- }
+ var uid = function (key) {
+ return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
+ };
- return defaultValue;
- },
- compareObjects: function compareObjects(objectA, objectB, compareLength) {
- var aKeys = Object.keys(objectA);
- var bKeys = Object.keys(objectB);
+ var keys = shared('keys');
- if (compareLength && aKeys.length !== bKeys.length) {
- return false;
- }
+ var sharedKey = function (key) {
+ return keys[key] || (keys[key] = uid(key));
+ };
- var _iteratorNormalCompletion5 = true;
- var _didIteratorError5 = false;
- var _iteratorError5 = undefined;
+ var hiddenKeys = {};
- try {
- for (var _iterator5 = aKeys[Symbol.iterator](), _step5; !(_iteratorNormalCompletion5 = (_step5 = _iterator5.next()).done); _iteratorNormalCompletion5 = true) {
- var key = _step5.value;
+ var WeakMap$1 = global_1.WeakMap;
+ var set, get, has$1;
- if (bKeys.includes(key) && objectA[key] !== objectB[key]) {
- return false;
- }
- }
- } catch (err) {
- _didIteratorError5 = true;
- _iteratorError5 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion5 && _iterator5.return) {
- _iterator5.return();
- }
- } finally {
- if (_didIteratorError5) {
- throw _iteratorError5;
- }
- }
- }
+ var enforce = function (it) {
+ return has$1(it) ? get(it) : set(it, {});
+ };
- return true;
- },
- escapeHTML: function escapeHTML(text) {
- if (typeof text === 'string') {
- return text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''').replace(/`/g, '`');
- }
- return text;
- },
- getRealDataAttr: function getRealDataAttr(dataAttr) {
- var _iteratorNormalCompletion6 = true;
- var _didIteratorError6 = false;
- var _iteratorError6 = undefined;
+ var getterFor = function (TYPE) {
+ return function (it) {
+ var state;
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
+ throw TypeError('Incompatible receiver, ' + TYPE + ' required');
+ } return state;
+ };
+ };
- try {
- for (var _iterator6 = Object.entries(dataAttr)[Symbol.iterator](), _step6; !(_iteratorNormalCompletion6 = (_step6 = _iterator6.next()).done); _iteratorNormalCompletion6 = true) {
- var _ref = _step6.value;
+ if (nativeWeakMap) {
+ var store = new WeakMap$1();
+ var wmget = store.get;
+ var wmhas = store.has;
+ var wmset = store.set;
+ set = function (it, metadata) {
+ wmset.call(store, it, metadata);
+ return metadata;
+ };
+ get = function (it) {
+ return wmget.call(store, it) || {};
+ };
+ has$1 = function (it) {
+ return wmhas.call(store, it);
+ };
+ } else {
+ var STATE = sharedKey('state');
+ hiddenKeys[STATE] = true;
+ set = function (it, metadata) {
+ hide(it, STATE, metadata);
+ return metadata;
+ };
+ get = function (it) {
+ return has(it, STATE) ? it[STATE] : {};
+ };
+ has$1 = function (it) {
+ return has(it, STATE);
+ };
+ }
- var _ref2 = _slicedToArray(_ref, 2);
+ var internalState = {
+ set: set,
+ get: get,
+ has: has$1,
+ enforce: enforce,
+ getterFor: getterFor
+ };
- var attr = _ref2[0];
- var value = _ref2[1];
+ var redefine = createCommonjsModule(function (module) {
+ var getInternalState = internalState.get;
+ var enforceInternalState = internalState.enforce;
+ var TEMPLATE = String(functionToString).split('toString');
- var auxAttr = attr.split(/(?=[A-Z])/).join('-').toLowerCase();
- if (auxAttr !== attr) {
- dataAttr[auxAttr] = value;
- delete dataAttr[attr];
- }
- }
- } catch (err) {
- _didIteratorError6 = true;
- _iteratorError6 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion6 && _iterator6.return) {
- _iterator6.return();
- }
- } finally {
- if (_didIteratorError6) {
- throw _iteratorError6;
- }
- }
- }
+ shared('inspectSource', function (it) {
+ return functionToString.call(it);
+ });
- return dataAttr;
- },
- getItemField: function getItemField(item, field, escape) {
- var value = item;
+ (module.exports = function (O, key, value, options) {
+ var unsafe = options ? !!options.unsafe : false;
+ var simple = options ? !!options.enumerable : false;
+ var noTargetGet = options ? !!options.noTargetGet : false;
+ if (typeof value == 'function') {
+ if (typeof key == 'string' && !has(value, 'name')) hide(value, 'name', key);
+ enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
+ }
+ if (O === global_1) {
+ if (simple) O[key] = value;
+ else setGlobal(key, value);
+ return;
+ } else if (!unsafe) {
+ delete O[key];
+ } else if (!noTargetGet && O[key]) {
+ simple = true;
+ }
+ if (simple) O[key] = value;
+ else hide(O, key, value);
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
+ })(Function.prototype, 'toString', function toString() {
+ return typeof this == 'function' && getInternalState(this).source || functionToString.call(this);
+ });
+ });
- if (typeof field !== 'string' || item.hasOwnProperty(field)) {
- return escape ? this.escapeHTML(item[field]) : item[field];
- }
+ var path = global_1;
- var props = field.split('.');
- var _iteratorNormalCompletion7 = true;
- var _didIteratorError7 = false;
- var _iteratorError7 = undefined;
+ var aFunction = function (variable) {
+ return typeof variable == 'function' ? variable : undefined;
+ };
- try {
- for (var _iterator7 = props[Symbol.iterator](), _step7; !(_iteratorNormalCompletion7 = (_step7 = _iterator7.next()).done); _iteratorNormalCompletion7 = true) {
- var p = _step7.value;
+ var getBuiltIn = function (namespace, method) {
+ return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
+ : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
+ };
- value = value && value[p];
- }
- } catch (err) {
- _didIteratorError7 = true;
- _iteratorError7 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion7 && _iterator7.return) {
- _iterator7.return();
- }
- } finally {
- if (_didIteratorError7) {
- throw _iteratorError7;
- }
- }
- }
+ var ceil = Math.ceil;
+ var floor = Math.floor;
- return escape ? this.escapeHTML(value) : value;
- },
- isIEBrowser: function isIEBrowser() {
- return navigator.userAgent.includes('MSIE ') || /Trident.*rv:11\./.test(navigator.userAgent);
- },
- findIndex: function findIndex(items, item) {
- var _iteratorNormalCompletion8 = true;
- var _didIteratorError8 = false;
- var _iteratorError8 = undefined;
+ // `ToInteger` abstract operation
+ // https://tc39.github.io/ecma262/#sec-tointeger
+ var toInteger = function (argument) {
+ return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
+ };
- try {
- for (var _iterator8 = items.entries()[Symbol.iterator](), _step8; !(_iteratorNormalCompletion8 = (_step8 = _iterator8.next()).done); _iteratorNormalCompletion8 = true) {
- var _ref3 = _step8.value;
+ var min = Math.min;
- var _ref4 = _slicedToArray(_ref3, 2);
+ // `ToLength` abstract operation
+ // https://tc39.github.io/ecma262/#sec-tolength
+ var toLength = function (argument) {
+ return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
+ };
- var i = _ref4[0];
- var it = _ref4[1];
+ var max = Math.max;
+ var min$1 = Math.min;
- if (JSON.stringify(it) === JSON.stringify(item)) {
- return i;
- }
- }
- } catch (err) {
- _didIteratorError8 = true;
- _iteratorError8 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion8 && _iterator8.return) {
- _iterator8.return();
- }
- } finally {
- if (_didIteratorError8) {
- throw _iteratorError8;
- }
- }
- }
+ // Helper for a popular repeating case of the spec:
+ // Let integer be ? ToInteger(index).
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(length, length).
+ var toAbsoluteIndex = function (index, length) {
+ var integer = toInteger(index);
+ return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
+ };
- return -1;
- }
- };
+ // `Array.prototype.{ indexOf, includes }` methods implementation
+ var createMethod = function (IS_INCLUDES) {
+ return function ($this, el, fromIndex) {
+ var O = toIndexedObject($this);
+ var length = toLength(O.length);
+ var index = toAbsoluteIndex(fromIndex, length);
+ var value;
+ // Array#includes uses SameValueZero equality algorithm
+ // eslint-disable-next-line no-self-compare
+ if (IS_INCLUDES && el != el) while (length > index) {
+ value = O[index++];
+ // eslint-disable-next-line no-self-compare
+ if (value != value) return true;
+ // Array#indexOf ignores holes, Array#includes - not
+ } else for (;length > index; index++) {
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
+ } return !IS_INCLUDES && -1;
+ };
+ };
- // BOOTSTRAP TABLE CLASS DEFINITION
- // ======================
+ var arrayIncludes = {
+ // `Array.prototype.includes` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.includes
+ includes: createMethod(true),
+ // `Array.prototype.indexOf` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
+ indexOf: createMethod(false)
+ };
- var DEFAULTS = {
- height: undefined,
- classes: 'table table-bordered table-hover',
- theadClasses: '',
- rowStyle: function rowStyle(row, index) {
- return {};
- },
- rowAttributes: function rowAttributes(row, index) {
- return {};
- },
+ var indexOf = arrayIncludes.indexOf;
- undefinedText: '-',
- locale: undefined,
- sortable: true,
- sortClass: undefined,
- silentSort: true,
- sortName: undefined,
- sortOrder: 'asc',
- sortStable: false,
- rememberOrder: false,
- customSort: undefined,
- columns: [[]],
- data: [],
- url: undefined,
- method: 'get',
- cache: true,
- contentType: 'application/json',
- dataType: 'json',
- ajax: undefined,
- ajaxOptions: {},
- queryParams: function queryParams(params) {
- return params;
- },
- queryParamsType: 'limit', responseHandler: function responseHandler(res) {
- return res;
- },
+ var objectKeysInternal = function (object, names) {
+ var O = toIndexedObject(object);
+ var i = 0;
+ var result = [];
+ var key;
+ for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
+ // Don't enum bug & hidden keys
+ while (names.length > i) if (has(O, key = names[i++])) {
+ ~indexOf(result, key) || result.push(key);
+ }
+ return result;
+ };
- totalField: 'total',
- dataField: 'rows',
- pagination: false,
- onlyInfoPagination: false,
- paginationLoop: true,
- sidePagination: 'client', // client or server
- totalRows: 0,
- pageNumber: 1,
- pageSize: 10,
- pageList: [10, 25, 50, 100],
- paginationHAlign: 'right', // right, left
- paginationVAlign: 'bottom', // bottom, top, both
- paginationDetailHAlign: 'left', // right, left
- paginationPreText: '‹',
- paginationNextText: '›',
- paginationSuccessivelySize: 5, // Maximum successively number of pages in a row
- paginationPagesBySide: 1, // Number of pages on each side (right, left) of the current page.
- paginationUseIntermediate: false, // Calculate intermediate pages for quick access
- search: false,
- searchOnEnterKey: false,
- strictSearch: false,
- trimOnSearch: true,
- searchAlign: 'right',
- searchTimeOut: 500,
- searchText: '',
- customSearch: undefined,
- showHeader: true,
- showFooter: false,
- footerStyle: function footerStyle(row, index) {
- return {};
- },
+ // IE8- don't enum bug keys
+ var enumBugKeys = [
+ 'constructor',
+ 'hasOwnProperty',
+ 'isPrototypeOf',
+ 'propertyIsEnumerable',
+ 'toLocaleString',
+ 'toString',
+ 'valueOf'
+ ];
- showColumns: false,
- minimumCountColumns: 1,
- showPaginationSwitch: false,
- showRefresh: false,
- showToggle: false,
- showFullscreen: false,
- smartDisplay: true,
- escape: false,
- idField: undefined,
- uniqueId: undefined,
- cardView: false,
- detailView: false,
- detailFormatter: function detailFormatter(index, row) {
- return '';
- },
- detailFilter: function detailFilter(index, row) {
- return true;
- },
+ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
- selectItemName: 'btSelectItem',
- clickToSelect: false,
- ignoreClickToSelectOn: function ignoreClickToSelectOn(_ref5) {
- var tagName = _ref5.tagName;
+ // `Object.getOwnPropertyNames` method
+ // https://tc39.github.io/ecma262/#sec-object.getownpropertynames
+ var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
+ return objectKeysInternal(O, hiddenKeys$1);
+ };
- return ['A', 'BUTTON'].includes(tagName);
- },
+ var objectGetOwnPropertyNames = {
+ f: f$3
+ };
- singleSelect: false,
- checkboxHeader: true,
- maintainSelected: false,
- toolbar: undefined,
- toolbarAlign: 'left',
- buttonsToolbar: undefined,
- buttonsAlign: 'right',
- buttonsClass: bootstrap.classes.buttons,
- icons: bootstrap.icons,
- iconSize: undefined,
- iconsPrefix: bootstrap.iconsPrefix, onAll: function onAll(name, args) {
- return false;
- },
- onClickCell: function onClickCell(field, value, row, $element) {
- return false;
- },
- onDblClickCell: function onDblClickCell(field, value, row, $element) {
- return false;
- },
- onClickRow: function onClickRow(item, $element) {
- return false;
- },
- onDblClickRow: function onDblClickRow(item, $element) {
- return false;
- },
- onSort: function onSort(name, order) {
- return false;
- },
- onCheck: function onCheck(row) {
- return false;
- },
- onUncheck: function onUncheck(row) {
- return false;
- },
- onCheckAll: function onCheckAll(rows) {
- return false;
- },
- onUncheckAll: function onUncheckAll(rows) {
- return false;
- },
- onCheckSome: function onCheckSome(rows) {
- return false;
- },
- onUncheckSome: function onUncheckSome(rows) {
- return false;
- },
- onLoadSuccess: function onLoadSuccess(data) {
- return false;
- },
- onLoadError: function onLoadError(status) {
- return false;
- },
- onColumnSwitch: function onColumnSwitch(field, checked) {
- return false;
- },
- onPageChange: function onPageChange(number, size) {
- return false;
- },
- onSearch: function onSearch(text) {
- return false;
- },
- onToggle: function onToggle(cardView) {
- return false;
- },
- onPreBody: function onPreBody(data) {
- return false;
- },
- onPostBody: function onPostBody() {
- return false;
- },
- onPostHeader: function onPostHeader() {
- return false;
- },
- onExpandRow: function onExpandRow(index, row, $detail) {
- return false;
- },
- onCollapseRow: function onCollapseRow(index, row) {
- return false;
- },
- onRefreshOptions: function onRefreshOptions(options) {
- return false;
- },
- onRefresh: function onRefresh(params) {
- return false;
- },
- onResetView: function onResetView() {
- return false;
- },
- onScrollBody: function onScrollBody() {
- return false;
- }
- };
+ var f$4 = Object.getOwnPropertySymbols;
- var LOCALES = {};
- LOCALES['en-US'] = LOCALES.en = {
- formatLoadingMessage: function formatLoadingMessage() {
- return 'Loading, please wait...';
- },
- formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return Utils.sprintf('%s rows per page', pageNumber);
- },
- formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
- return Utils.sprintf('Showing %s to %s of %s rows', pageFrom, pageTo, totalRows);
- },
- formatDetailPagination: function formatDetailPagination(totalRows) {
- return Utils.sprintf('Showing %s rows', totalRows);
- },
- formatSearch: function formatSearch() {
- return 'Search';
- },
- formatNoMatches: function formatNoMatches() {
- return 'No matching records found';
- },
- formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
- },
- formatRefresh: function formatRefresh() {
- return 'Refresh';
- },
- formatToggle: function formatToggle() {
- return 'Toggle';
- },
- formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
- },
- formatColumns: function formatColumns() {
- return 'Columns';
- },
- formatAllRows: function formatAllRows() {
- return 'All';
- }
- };
+ var objectGetOwnPropertySymbols = {
+ f: f$4
+ };
- $.extend(DEFAULTS, LOCALES['en-US']);
+ // all object keys, includes non-enumerable and symbols
+ var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
+ var keys = objectGetOwnPropertyNames.f(anObject(it));
+ var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
+ return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
+ };
- var COLUMN_DEFAULTS = {
- radio: false,
- checkbox: false,
- checkboxEnabled: true,
- field: undefined,
- title: undefined,
- titleTooltip: undefined,
- 'class': undefined,
- align: undefined, // left, right, center
- halign: undefined, // left, right, center
- falign: undefined, // left, right, center
- valign: undefined, // top, middle, bottom
- width: undefined,
- sortable: false,
- order: 'asc', // asc, desc
- visible: true,
- switchable: true,
- clickToSelect: true,
- formatter: undefined,
- footerFormatter: undefined,
- events: undefined,
- sorter: undefined,
- sortName: undefined,
- cellStyle: undefined,
- searchable: true,
- searchFormatter: true,
- cardVisible: true,
- escape: false,
- showSelectTitle: false
- };
+ var copyConstructorProperties = function (target, source) {
+ var keys = ownKeys(source);
+ var defineProperty = objectDefineProperty.f;
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
+ for (var i = 0; i < keys.length; i++) {
+ var key = keys[i];
+ if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
+ }
+ };
- var EVENTS = {
- 'all.bs.table': 'onAll',
- 'click-cell.bs.table': 'onClickCell',
- 'dbl-click-cell.bs.table': 'onDblClickCell',
- 'click-row.bs.table': 'onClickRow',
- 'dbl-click-row.bs.table': 'onDblClickRow',
- 'sort.bs.table': 'onSort',
- 'check.bs.table': 'onCheck',
- 'uncheck.bs.table': 'onUncheck',
- 'check-all.bs.table': 'onCheckAll',
- 'uncheck-all.bs.table': 'onUncheckAll',
- 'check-some.bs.table': 'onCheckSome',
- 'uncheck-some.bs.table': 'onUncheckSome',
- 'load-success.bs.table': 'onLoadSuccess',
- 'load-error.bs.table': 'onLoadError',
- 'column-switch.bs.table': 'onColumnSwitch',
- 'page-change.bs.table': 'onPageChange',
- 'search.bs.table': 'onSearch',
- 'toggle.bs.table': 'onToggle',
- 'pre-body.bs.table': 'onPreBody',
- 'post-body.bs.table': 'onPostBody',
- 'post-header.bs.table': 'onPostHeader',
- 'expand-row.bs.table': 'onExpandRow',
- 'collapse-row.bs.table': 'onCollapseRow',
- 'refresh-options.bs.table': 'onRefreshOptions',
- 'reset-view.bs.table': 'onResetView',
- 'refresh.bs.table': 'onRefresh',
- 'scroll-body.bs.table': 'onScrollBody'
- };
+ var replacement = /#|\.prototype\./;
- var BootstrapTable = function () {
- function BootstrapTable(el, options) {
- _classCallCheck(this, BootstrapTable);
+ var isForced = function (feature, detection) {
+ var value = data[normalize(feature)];
+ return value == POLYFILL ? true
+ : value == NATIVE ? false
+ : typeof detection == 'function' ? fails(detection)
+ : !!detection;
+ };
- this.options = options;
- this.$el = $(el);
- this.$el_ = this.$el.clone();
- this.timeoutId_ = 0;
- this.timeoutFooter_ = 0;
+ var normalize = isForced.normalize = function (string) {
+ return String(string).replace(replacement, '.').toLowerCase();
+ };
- this.init();
- }
+ var data = isForced.data = {};
+ var NATIVE = isForced.NATIVE = 'N';
+ var POLYFILL = isForced.POLYFILL = 'P';
- _createClass(BootstrapTable, [{
- key: 'init',
- value: function init() {
- this.initLocale();
- this.initContainer();
- this.initTable();
- this.initHeader();
- this.initData();
- this.initHiddenRows();
- this.initFooter();
- this.initToolbar();
- this.initPagination();
- this.initBody();
- this.initSearchText();
- this.initServer();
- }
- }, {
- key: 'initLocale',
- value: function initLocale() {
- if (this.options.locale) {
- var locales = $.fn.bootstrapTable.locales;
- var parts = this.options.locale.split(/-|_/);
+ var isForced_1 = isForced;
- parts[0] = parts[0].toLowerCase();
- if (parts[1]) {
- parts[1] = parts[1].toUpperCase();
- }
+ var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
- if (locales[this.options.locale]) {
- $.extend(this.options, locales[this.options.locale]);
- } else if (locales[parts.join('-')]) {
- $.extend(this.options, locales[parts.join('-')]);
- } else if (locales[parts[0]]) {
- $.extend(this.options, locales[parts[0]]);
- }
- }
- }
- }, {
- key: 'initContainer',
- value: function initContainer() {
- var topPagination = ['top', 'both'].includes(this.options.paginationVAlign) ? '<div class="fixed-table-pagination clearfix"></div>' : '';
- var bottomPagination = ['bottom', 'both'].includes(this.options.paginationVAlign) ? '<div class="fixed-table-pagination"></div>' : '';
- this.$container = $('\n <div class="bootstrap-table">\n <div class="fixed-table-toolbar"></div>\n ' + topPagination + '\n <div class="fixed-table-container">\n <div class="fixed-table-header"><table></table></div>\n <div class="fixed-table-body">\n <div class="fixed-table-loading">\n ' + this.options.formatLoadingMessage() + '\n </div>\n </div>\n <div class="fixed-table-footer"><table><tr></tr></table></div>\n </div>\n ' + bottomPagination + '\n </div>\n ');
- this.$container.insertAfter(this.$el);
- this.$tableContainer = this.$container.find('.fixed-table-container');
- this.$tableHeader = this.$container.find('.fixed-table-header');
- this.$tableBody = this.$container.find('.fixed-table-body');
- this.$tableLoading = this.$container.find('.fixed-table-loading');
- this.$tableFooter = this.$container.find('.fixed-table-footer');
- // checking if custom table-toolbar exists or not
- if (this.options.buttonsToolbar) {
- this.$toolbar = $('body').find(this.options.buttonsToolbar);
- } else {
- this.$toolbar = this.$container.find('.fixed-table-toolbar');
- }
- this.$pagination = this.$container.find('.fixed-table-pagination');
- this.$tableBody.append(this.$el);
- this.$container.after('<div class="clearfix"></div>');
- this.$el.addClass(this.options.classes);
- if (this.options.height) {
- this.$tableContainer.addClass('fixed-height');
+ /*
+ options.target - name of the target object
+ options.global - target is the global object
+ options.stat - export as static methods of target
+ options.proto - export as prototype methods of target
+ options.real - real prototype method for the `pure` version
+ options.forced - export even if the native feature is available
+ options.bind - bind methods to the target, required for the `pure` version
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
+ options.sham - add a flag to not completely full polyfills
+ options.enumerable - export as enumerable property
+ options.noTargetGet - prevent calling a getter on target
+ */
+ var _export = function (options, source) {
+ var TARGET = options.target;
+ var GLOBAL = options.global;
+ var STATIC = options.stat;
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
+ if (GLOBAL) {
+ target = global_1;
+ } else if (STATIC) {
+ target = global_1[TARGET] || setGlobal(TARGET, {});
+ } else {
+ target = (global_1[TARGET] || {}).prototype;
+ }
+ if (target) for (key in source) {
+ sourceProperty = source[key];
+ if (options.noTargetGet) {
+ descriptor = getOwnPropertyDescriptor$1(target, key);
+ targetProperty = descriptor && descriptor.value;
+ } else targetProperty = target[key];
+ FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
+ // contained in target
+ if (!FORCED && targetProperty !== undefined) {
+ if (typeof sourceProperty === typeof targetProperty) continue;
+ copyConstructorProperties(sourceProperty, targetProperty);
+ }
+ // add a flag to not completely full polyfills
+ if (options.sham || (targetProperty && targetProperty.sham)) {
+ hide(sourceProperty, 'sham', true);
+ }
+ // extend global
+ redefine(target, key, sourceProperty, options);
+ }
+ };
- if (this.options.classes.split(' ').includes('table-bordered')) {
- this.$tableBody.append('<div class="fixed-table-border"></div>');
- this.$tableBorder = this.$tableBody.find('.fixed-table-border');
- this.$tableLoading.addClass('fixed-table-border');
- }
- }
- }
- }, {
- key: 'initTable',
- value: function initTable() {
- var _this = this;
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
+ // Chrome 38 Symbol has incorrect toString conversion
+ // eslint-disable-next-line no-undef
+ return !String(Symbol());
+ });
- var columns = [];
- var data = [];
+ // `IsArray` abstract operation
+ // https://tc39.github.io/ecma262/#sec-isarray
+ var isArray = Array.isArray || function isArray(arg) {
+ return classofRaw(arg) == 'Array';
+ };
- this.$header = this.$el.find('>thead');
- if (!this.$header.length) {
- this.$header = $('<thead class="' + this.options.theadClasses + '"></thead>').appendTo(this.$el);
- } else if (this.options.theadClasses) {
- this.$header.addClass(this.options.theadClasses);
- }
- this.$header.find('tr').each(function (i, el) {
- var column = [];
+ // `ToObject` abstract operation
+ // https://tc39.github.io/ecma262/#sec-toobject
+ var toObject = function (argument) {
+ return Object(requireObjectCoercible(argument));
+ };
- $(el).find('th').each(function (i, el) {
- // #2014: getFieldIndex and elsewhere assume this is string, causes issues if not
- if (typeof $(el).data('field') !== 'undefined') {
- $(el).data('field', '' + $(el).data('field'));
- }
- column.push($.extend({}, {
- title: $(el).html(),
- 'class': $(el).attr('class'),
- titleTooltip: $(el).attr('title'),
- rowspan: $(el).attr('rowspan') ? +$(el).attr('rowspan') : undefined,
- colspan: $(el).attr('colspan') ? +$(el).attr('colspan') : undefined
- }, $(el).data()));
- });
- columns.push(column);
- });
+ // `Object.keys` method
+ // https://tc39.github.io/ecma262/#sec-object.keys
+ var objectKeys = Object.keys || function keys(O) {
+ return objectKeysInternal(O, enumBugKeys);
+ };
- if (!Array.isArray(this.options.columns[0])) {
- this.options.columns = [this.options.columns];
- }
+ // `Object.defineProperties` method
+ // https://tc39.github.io/ecma262/#sec-object.defineproperties
+ var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
+ anObject(O);
+ var keys = objectKeys(Properties);
+ var length = keys.length;
+ var index = 0;
+ var key;
+ while (length > index) objectDefineProperty.f(O, key = keys[index++], Properties[key]);
+ return O;
+ };
- this.options.columns = $.extend(true, [], columns, this.options.columns);
- this.columns = [];
- this.fieldsColumnsIndex = [];
+ var html = getBuiltIn('document', 'documentElement');
- Utils.setFieldIndex(this.options.columns);
+ var IE_PROTO = sharedKey('IE_PROTO');
- this.options.columns.forEach(function (columns, i) {
- columns.forEach(function (_column, j) {
- var column = $.extend({}, BootstrapTable.COLUMN_DEFAULTS, _column);
+ var PROTOTYPE = 'prototype';
+ var Empty = function () { /* empty */ };
- if (typeof column.fieldIndex !== 'undefined') {
- _this.columns[column.fieldIndex] = column;
- _this.fieldsColumnsIndex[column.field] = column.fieldIndex;
- }
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
+ var createDict = function () {
+ // Thrash, waste and sodomy: IE GC bug
+ var iframe = documentCreateElement('iframe');
+ var length = enumBugKeys.length;
+ var lt = '<';
+ var script = 'script';
+ var gt = '>';
+ var js = 'java' + script + ':';
+ var iframeDocument;
+ iframe.style.display = 'none';
+ html.appendChild(iframe);
+ iframe.src = String(js);
+ iframeDocument = iframe.contentWindow.document;
+ iframeDocument.open();
+ iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt);
+ iframeDocument.close();
+ createDict = iframeDocument.F;
+ while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]];
+ return createDict();
+ };
- _this.options.columns[i][j] = column;
- });
- });
+ // `Object.create` method
+ // https://tc39.github.io/ecma262/#sec-object.create
+ var objectCreate = Object.create || function create(O, Properties) {
+ var result;
+ if (O !== null) {
+ Empty[PROTOTYPE] = anObject(O);
+ result = new Empty();
+ Empty[PROTOTYPE] = null;
+ // add "__proto__" for Object.getPrototypeOf polyfill
+ result[IE_PROTO] = O;
+ } else result = createDict();
+ return Properties === undefined ? result : objectDefineProperties(result, Properties);
+ };
- // if options.data is setting, do not process tbody data
- if (this.options.data.length) {
- return;
- }
+ hiddenKeys[IE_PROTO] = true;
- var m = [];
- this.$el.find('>tbody>tr').each(function (y, el) {
- var row = {};
+ var nativeGetOwnPropertyNames = objectGetOwnPropertyNames.f;
- // save tr's id, class and data-* attributes
- row._id = $(el).attr('id');
- row._class = $(el).attr('class');
- row._data = Utils.getRealDataAttr($(el).data());
+ var toString$1 = {}.toString;
- $(el).find('>td').each(function (_x, el) {
- var cspan = +$(el).attr('colspan') || 1;
- var rspan = +$(el).attr('rowspan') || 1;
- var x = _x;
+ var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
+ ? Object.getOwnPropertyNames(window) : [];
- // skip already occupied cells in current row
- for (; m[y] && m[y][x]; x++) {}
- // ignore
+ var getWindowNames = function (it) {
+ try {
+ return nativeGetOwnPropertyNames(it);
+ } catch (error) {
+ return windowNames.slice();
+ }
+ };
+ // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
+ var f$5 = function getOwnPropertyNames(it) {
+ return windowNames && toString$1.call(it) == '[object Window]'
+ ? getWindowNames(it)
+ : nativeGetOwnPropertyNames(toIndexedObject(it));
+ };
- // mark matrix elements occupied by current cell with true
- for (var tx = x; tx < x + cspan; tx++) {
- for (var ty = y; ty < y + rspan; ty++) {
- if (!m[ty]) {
- // fill missing rows
- m[ty] = [];
- }
- m[ty][tx] = true;
- }
- }
+ var objectGetOwnPropertyNamesExternal = {
+ f: f$5
+ };
- var field = _this.columns[x].field;
+ var Symbol$1 = global_1.Symbol;
+ var store$1 = shared('wks');
- row[field] = $(el).html();
- // save td's id, class and data-* attributes
- row['_' + field + '_id'] = $(el).attr('id');
- row['_' + field + '_class'] = $(el).attr('class');
- row['_' + field + '_rowspan'] = $(el).attr('rowspan');
- row['_' + field + '_colspan'] = $(el).attr('colspan');
- row['_' + field + '_title'] = $(el).attr('title');
- row['_' + field + '_data'] = Utils.getRealDataAttr($(el).data());
- });
- data.push(row);
- });
- this.options.data = data;
- if (data.length) {
- this.fromHtml = true;
- }
- }
- }, {
- key: 'initHeader',
- value: function initHeader() {
- var _this2 = this;
+ var wellKnownSymbol = function (name) {
+ return store$1[name] || (store$1[name] = nativeSymbol && Symbol$1[name]
+ || (nativeSymbol ? Symbol$1 : uid)('Symbol.' + name));
+ };
- var visibleColumns = {};
- var html = [];
+ var f$6 = wellKnownSymbol;
- this.header = {
- fields: [],
- styles: [],
- classes: [],
- formatters: [],
- events: [],
- sorters: [],
- sortNames: [],
- cellStyles: [],
- searchables: []
- };
+ var wrappedWellKnownSymbol = {
+ f: f$6
+ };
- this.options.columns.forEach(function (columns, i) {
- html.push('<tr>');
+ var defineProperty = objectDefineProperty.f;
- if (i === 0 && !_this2.options.cardView && _this2.options.detailView) {
- html.push('<th class="detail" rowspan="' + _this2.options.columns.length + '">\n <div class="fht-cell"></div>\n </th>\n ');
- }
+ var defineWellKnownSymbol = function (NAME) {
+ var Symbol = path.Symbol || (path.Symbol = {});
+ if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {
+ value: wrappedWellKnownSymbol.f(NAME)
+ });
+ };
- columns.forEach(function (column, j) {
- var text = '';
+ var defineProperty$1 = objectDefineProperty.f;
- var halign = ''; // header align style
- var align = ''; // body align style
- var style = '';
- var class_ = Utils.sprintf(' class="%s"', column['class']);
- var unitWidth = 'px';
- var width = column.width;
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
- if (column.width !== undefined && !_this2.options.cardView) {
- if (typeof column.width === 'string') {
- if (column.width.includes('%')) {
- unitWidth = '%';
- }
- }
- }
- if (column.width && typeof column.width === 'string') {
- width = column.width.replace('%', '').replace('px', '');
- }
+ var setToStringTag = function (it, TAG, STATIC) {
+ if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
+ defineProperty$1(it, TO_STRING_TAG, { configurable: true, value: TAG });
+ }
+ };
- halign = Utils.sprintf('text-align: %s; ', column.halign ? column.halign : column.align);
- align = Utils.sprintf('text-align: %s; ', column.align);
- style = Utils.sprintf('vertical-align: %s; ', column.valign);
- style += Utils.sprintf('width: %s; ', (column.checkbox || column.radio) && !width ? !column.showSelectTitle ? '36px' : undefined : width ? width + unitWidth : undefined);
+ var aFunction$1 = function (it) {
+ if (typeof it != 'function') {
+ throw TypeError(String(it) + ' is not a function');
+ } return it;
+ };
- if (typeof column.fieldIndex !== 'undefined') {
- _this2.header.fields[column.fieldIndex] = column.field;
- _this2.header.styles[column.fieldIndex] = align + style;
- _this2.header.classes[column.fieldIndex] = class_;
- _this2.header.formatters[column.fieldIndex] = column.formatter;
- _this2.header.events[column.fieldIndex] = column.events;
- _this2.header.sorters[column.fieldIndex] = column.sorter;
- _this2.header.sortNames[column.fieldIndex] = column.sortName;
- _this2.header.cellStyles[column.fieldIndex] = column.cellStyle;
- _this2.header.searchables[column.fieldIndex] = column.searchable;
+ // optional / simple context binding
+ var bindContext = function (fn, that, length) {
+ aFunction$1(fn);
+ if (that === undefined) return fn;
+ switch (length) {
+ case 0: return function () {
+ return fn.call(that);
+ };
+ case 1: return function (a) {
+ return fn.call(that, a);
+ };
+ case 2: return function (a, b) {
+ return fn.call(that, a, b);
+ };
+ case 3: return function (a, b, c) {
+ return fn.call(that, a, b, c);
+ };
+ }
+ return function (/* ...args */) {
+ return fn.apply(that, arguments);
+ };
+ };
- if (!column.visible) {
- return;
- }
+ var SPECIES = wellKnownSymbol('species');
- if (_this2.options.cardView && !column.cardVisible) {
- return;
- }
+ // `ArraySpeciesCreate` abstract operation
+ // https://tc39.github.io/ecma262/#sec-arrayspeciescreate
+ var arraySpeciesCreate = function (originalArray, length) {
+ var C;
+ if (isArray(originalArray)) {
+ C = originalArray.constructor;
+ // cross-realm fallback
+ if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
+ else if (isObject(C)) {
+ C = C[SPECIES];
+ if (C === null) C = undefined;
+ }
+ } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
+ };
- visibleColumns[column.field] = column;
- }
+ var push = [].push;
- html.push('<th' + Utils.sprintf(' title="%s"', column.titleTooltip), column.checkbox || column.radio ? Utils.sprintf(' class="bs-checkbox %s"', column['class'] || '') : class_, Utils.sprintf(' style="%s"', halign + style), Utils.sprintf(' rowspan="%s"', column.rowspan), Utils.sprintf(' colspan="%s"', column.colspan), Utils.sprintf(' data-field="%s"', column.field),
- // If `column` is not the first element of `this.options.columns[0]`, then className 'data-not-first-th' should be added.
- j === 0 && i > 0 ? ' data-not-first-th' : '', '>');
+ // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation
+ var createMethod$1 = function (TYPE) {
+ var IS_MAP = TYPE == 1;
+ var IS_FILTER = TYPE == 2;
+ var IS_SOME = TYPE == 3;
+ var IS_EVERY = TYPE == 4;
+ var IS_FIND_INDEX = TYPE == 6;
+ var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
+ return function ($this, callbackfn, that, specificCreate) {
+ var O = toObject($this);
+ var self = indexedObject(O);
+ var boundFunction = bindContext(callbackfn, that, 3);
+ var length = toLength(self.length);
+ var index = 0;
+ var create = specificCreate || arraySpeciesCreate;
+ var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;
+ var value, result;
+ for (;length > index; index++) if (NO_HOLES || index in self) {
+ value = self[index];
+ result = boundFunction(value, index, O);
+ if (TYPE) {
+ if (IS_MAP) target[index] = result; // map
+ else if (result) switch (TYPE) {
+ case 3: return true; // some
+ case 5: return value; // find
+ case 6: return index; // findIndex
+ case 2: push.call(target, value); // filter
+ } else if (IS_EVERY) return false; // every
+ }
+ }
+ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
+ };
+ };
- html.push(Utils.sprintf('<div class="th-inner %s">', _this2.options.sortable && column.sortable ? 'sortable both' : ''));
+ var arrayIteration = {
+ // `Array.prototype.forEach` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
+ forEach: createMethod$1(0),
+ // `Array.prototype.map` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.map
+ map: createMethod$1(1),
+ // `Array.prototype.filter` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.filter
+ filter: createMethod$1(2),
+ // `Array.prototype.some` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.some
+ some: createMethod$1(3),
+ // `Array.prototype.every` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.every
+ every: createMethod$1(4),
+ // `Array.prototype.find` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.find
+ find: createMethod$1(5),
+ // `Array.prototype.findIndex` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
+ findIndex: createMethod$1(6)
+ };
- text = _this2.options.escape ? Utils.escapeHTML(column.title) : column.title;
+ var $forEach = arrayIteration.forEach;
- var title = text;
- if (column.checkbox) {
- text = '';
- if (!_this2.options.singleSelect && _this2.options.checkboxHeader) {
- text = '<input name="btSelectAll" type="checkbox" />';
- }
- _this2.header.stateField = column.field;
- }
- if (column.radio) {
- text = '';
- _this2.header.stateField = column.field;
- _this2.options.singleSelect = true;
- }
- if (!text && column.showSelectTitle) {
- text += title;
- }
+ var HIDDEN = sharedKey('hidden');
+ var SYMBOL = 'Symbol';
+ var PROTOTYPE$1 = 'prototype';
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
+ var setInternalState = internalState.set;
+ var getInternalState = internalState.getterFor(SYMBOL);
+ var ObjectPrototype = Object[PROTOTYPE$1];
+ var $Symbol = global_1.Symbol;
+ var JSON$1 = global_1.JSON;
+ var nativeJSONStringify = JSON$1 && JSON$1.stringify;
+ var nativeGetOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
+ var nativeDefineProperty$1 = objectDefineProperty.f;
+ var nativeGetOwnPropertyNames$1 = objectGetOwnPropertyNamesExternal.f;
+ var nativePropertyIsEnumerable$1 = objectPropertyIsEnumerable.f;
+ var AllSymbols = shared('symbols');
+ var ObjectPrototypeSymbols = shared('op-symbols');
+ var StringToSymbolRegistry = shared('string-to-symbol-registry');
+ var SymbolToStringRegistry = shared('symbol-to-string-registry');
+ var WellKnownSymbolsStore = shared('wks');
+ var QObject = global_1.QObject;
+ // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
+ var USE_SETTER = !QObject || !QObject[PROTOTYPE$1] || !QObject[PROTOTYPE$1].findChild;
- html.push(text);
- html.push('</div>');
- html.push('<div class="fht-cell"></div>');
- html.push('</div>');
- html.push('</th>');
- });
- html.push('</tr>');
- });
+ // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
+ var setSymbolDescriptor = descriptors && fails(function () {
+ return objectCreate(nativeDefineProperty$1({}, 'a', {
+ get: function () { return nativeDefineProperty$1(this, 'a', { value: 7 }).a; }
+ })).a != 7;
+ }) ? function (O, P, Attributes) {
+ var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor$1(ObjectPrototype, P);
+ if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];
+ nativeDefineProperty$1(O, P, Attributes);
+ if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {
+ nativeDefineProperty$1(ObjectPrototype, P, ObjectPrototypeDescriptor);
+ }
+ } : nativeDefineProperty$1;
- this.$header.html(html.join(''));
- this.$header.find('th[data-field]').each(function (i, el) {
- $(el).data(visibleColumns[$(el).data('field')]);
- });
- this.$container.off('click', '.th-inner').on('click', '.th-inner', function (e) {
- var $this = $(e.currentTarget);
+ var wrap = function (tag, description) {
+ var symbol = AllSymbols[tag] = objectCreate($Symbol[PROTOTYPE$1]);
+ setInternalState(symbol, {
+ type: SYMBOL,
+ tag: tag,
+ description: description
+ });
+ if (!descriptors) symbol.description = description;
+ return symbol;
+ };
- if (_this2.options.detailView && !$this.parent().hasClass('bs-checkbox')) {
- if ($this.closest('.bootstrap-table')[0] !== _this2.$container[0]) {
- return false;
- }
- }
+ var isSymbol = nativeSymbol && typeof $Symbol.iterator == 'symbol' ? function (it) {
+ return typeof it == 'symbol';
+ } : function (it) {
+ return Object(it) instanceof $Symbol;
+ };
- if (_this2.options.sortable && $this.parent().data().sortable) {
- _this2.onSort(e);
- }
- });
+ var $defineProperty = function defineProperty(O, P, Attributes) {
+ if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);
+ anObject(O);
+ var key = toPrimitive(P, true);
+ anObject(Attributes);
+ if (has(AllSymbols, key)) {
+ if (!Attributes.enumerable) {
+ if (!has(O, HIDDEN)) nativeDefineProperty$1(O, HIDDEN, createPropertyDescriptor(1, {}));
+ O[HIDDEN][key] = true;
+ } else {
+ if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
+ Attributes = objectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
+ } return setSymbolDescriptor(O, key, Attributes);
+ } return nativeDefineProperty$1(O, key, Attributes);
+ };
- this.$header.children().children().off('keypress').on('keypress', function (e) {
- if (_this2.options.sortable && $(e.currentTarget).data().sortable) {
- var code = e.keyCode || e.which;
- if (code === 13) {
- // Enter keycode
- _this2.onSort(e);
- }
- }
- });
+ var $defineProperties = function defineProperties(O, Properties) {
+ anObject(O);
+ var properties = toIndexedObject(Properties);
+ var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
+ $forEach(keys, function (key) {
+ if (!descriptors || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);
+ });
+ return O;
+ };
- $(window).off('resize.bootstrap-table');
- if (!this.options.showHeader || this.options.cardView) {
- this.$header.hide();
- this.$tableHeader.hide();
- this.$tableLoading.css('top', 0);
- } else {
- this.$header.show();
- this.$tableHeader.show();
- this.$tableLoading.css('top', this.$header.outerHeight() + 1);
- // Assign the correct sortable arrow
- this.getCaret();
- $(window).on('resize.bootstrap-table', $.proxy(this.resetWidth, this));
- }
+ var $create = function create(O, Properties) {
+ return Properties === undefined ? objectCreate(O) : $defineProperties(objectCreate(O), Properties);
+ };
- this.$selectAll = this.$header.find('[name="btSelectAll"]');
- this.$selectAll.off('click').on('click', function (_ref6) {
- var currentTarget = _ref6.currentTarget;
+ var $propertyIsEnumerable = function propertyIsEnumerable(V) {
+ var P = toPrimitive(V, true);
+ var enumerable = nativePropertyIsEnumerable$1.call(this, P);
+ if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false;
+ return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true;
+ };
- var checked = $(currentTarget).prop('checked');
- _this2[checked ? 'checkAll' : 'uncheckAll']();
- _this2.updateSelected();
- });
- }
- }, {
- key: 'initFooter',
- value: function initFooter() {
- if (!this.options.showFooter || this.options.cardView) {
- this.$tableFooter.hide();
- } else {
- this.$tableFooter.show();
- }
- }
- }, {
- key: 'initData',
- value: function initData(data, type) {
- if (type === 'append') {
- this.options.data = this.options.data.concat(data);
- } else if (type === 'prepend') {
- this.options.data = [].concat(data).concat(this.options.data);
- } else {
- this.options.data = data || this.options.data;
- }
+ var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
+ var it = toIndexedObject(O);
+ var key = toPrimitive(P, true);
+ if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return;
+ var descriptor = nativeGetOwnPropertyDescriptor$1(it, key);
+ if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) {
+ descriptor.enumerable = true;
+ }
+ return descriptor;
+ };
- this.data = this.options.data;
+ var $getOwnPropertyNames = function getOwnPropertyNames(O) {
+ var names = nativeGetOwnPropertyNames$1(toIndexedObject(O));
+ var result = [];
+ $forEach(names, function (key) {
+ if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key);
+ });
+ return result;
+ };
- if (this.options.sidePagination === 'server') {
- return;
- }
- this.initSort();
- }
- }, {
- key: 'initSort',
- value: function initSort() {
- var _this3 = this;
+ var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
+ var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;
+ var names = nativeGetOwnPropertyNames$1(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
+ var result = [];
+ $forEach(names, function (key) {
+ if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) {
+ result.push(AllSymbols[key]);
+ }
+ });
+ return result;
+ };
- var name = this.options.sortName;
- var order = this.options.sortOrder === 'desc' ? -1 : 1;
- var index = this.header.fields.indexOf(this.options.sortName);
- var timeoutId = 0;
+ // `Symbol` constructor
+ // https://tc39.github.io/ecma262/#sec-symbol-constructor
+ if (!nativeSymbol) {
+ $Symbol = function Symbol() {
+ if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor');
+ var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]);
+ var tag = uid(description);
+ var setter = function (value) {
+ if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);
+ if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
+ setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
+ };
+ if (descriptors && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });
+ return wrap(tag, description);
+ };
- if (index !== -1) {
- if (this.options.sortStable) {
- this.data.forEach(function (row, i) {
- if (!row.hasOwnProperty('_position')) {
- row._position = i;
- }
- });
- }
+ redefine($Symbol[PROTOTYPE$1], 'toString', function toString() {
+ return getInternalState(this).tag;
+ });
- if (this.options.customSort) {
- Utils.calculateObjectValue(this.options, this.options.customSort, [this.options.sortName, this.options.sortOrder, this.data]);
- } else {
- this.data.sort(function (a, b) {
- if (_this3.header.sortNames[index]) {
- name = _this3.header.sortNames[index];
- }
- var aa = Utils.getItemField(a, name, _this3.options.escape);
- var bb = Utils.getItemField(b, name, _this3.options.escape);
- var value = Utils.calculateObjectValue(_this3.header, _this3.header.sorters[index], [aa, bb, a, b]);
+ objectPropertyIsEnumerable.f = $propertyIsEnumerable;
+ objectDefineProperty.f = $defineProperty;
+ objectGetOwnPropertyDescriptor.f = $getOwnPropertyDescriptor;
+ objectGetOwnPropertyNames.f = objectGetOwnPropertyNamesExternal.f = $getOwnPropertyNames;
+ objectGetOwnPropertySymbols.f = $getOwnPropertySymbols;
- if (value !== undefined) {
- if (_this3.options.sortStable && value === 0) {
- return order * (a._position - b._position);
- }
- return order * value;
- }
+ if (descriptors) {
+ // https://github.com/tc39/proposal-Symbol-description
+ nativeDefineProperty$1($Symbol[PROTOTYPE$1], 'description', {
+ configurable: true,
+ get: function description() {
+ return getInternalState(this).description;
+ }
+ });
+ {
+ redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });
+ }
+ }
- // Fix #161: undefined or null string sort bug.
- if (aa === undefined || aa === null) {
- aa = '';
- }
- if (bb === undefined || bb === null) {
- bb = '';
- }
+ wrappedWellKnownSymbol.f = function (name) {
+ return wrap(wellKnownSymbol(name), name);
+ };
+ }
- if (_this3.options.sortStable && aa === bb) {
- aa = a._position;
- bb = b._position;
- }
+ _export({ global: true, wrap: true, forced: !nativeSymbol, sham: !nativeSymbol }, {
+ Symbol: $Symbol
+ });
- // IF both values are numeric, do a numeric comparison
- if ($.isNumeric(aa) && $.isNumeric(bb)) {
- // Convert numerical values form string to float.
- aa = parseFloat(aa);
- bb = parseFloat(bb);
- if (aa < bb) {
- return order * -1;
- }
- if (aa > bb) {
- return order;
- }
- return 0;
- }
+ $forEach(objectKeys(WellKnownSymbolsStore), function (name) {
+ defineWellKnownSymbol(name);
+ });
- if (aa === bb) {
- return 0;
- }
+ _export({ target: SYMBOL, stat: true, forced: !nativeSymbol }, {
+ // `Symbol.for` method
+ // https://tc39.github.io/ecma262/#sec-symbol.for
+ 'for': function (key) {
+ var string = String(key);
+ if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
+ var symbol = $Symbol(string);
+ StringToSymbolRegistry[string] = symbol;
+ SymbolToStringRegistry[symbol] = string;
+ return symbol;
+ },
+ // `Symbol.keyFor` method
+ // https://tc39.github.io/ecma262/#sec-symbol.keyfor
+ keyFor: function keyFor(sym) {
+ if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');
+ if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
+ },
+ useSetter: function () { USE_SETTER = true; },
+ useSimple: function () { USE_SETTER = false; }
+ });
- // If value is not a string, convert to string
- if (typeof aa !== 'string') {
- aa = aa.toString();
- }
+ _export({ target: 'Object', stat: true, forced: !nativeSymbol, sham: !descriptors }, {
+ // `Object.create` method
+ // https://tc39.github.io/ecma262/#sec-object.create
+ create: $create,
+ // `Object.defineProperty` method
+ // https://tc39.github.io/ecma262/#sec-object.defineproperty
+ defineProperty: $defineProperty,
+ // `Object.defineProperties` method
+ // https://tc39.github.io/ecma262/#sec-object.defineproperties
+ defineProperties: $defineProperties,
+ // `Object.getOwnPropertyDescriptor` method
+ // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors
+ getOwnPropertyDescriptor: $getOwnPropertyDescriptor
+ });
- if (aa.localeCompare(bb) === -1) {
- return order * -1;
- }
+ _export({ target: 'Object', stat: true, forced: !nativeSymbol }, {
+ // `Object.getOwnPropertyNames` method
+ // https://tc39.github.io/ecma262/#sec-object.getownpropertynames
+ getOwnPropertyNames: $getOwnPropertyNames,
+ // `Object.getOwnPropertySymbols` method
+ // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols
+ getOwnPropertySymbols: $getOwnPropertySymbols
+ });
- return order;
- });
- }
+ // Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3443
+ _export({ target: 'Object', stat: true, forced: fails(function () { objectGetOwnPropertySymbols.f(1); }) }, {
+ getOwnPropertySymbols: function getOwnPropertySymbols(it) {
+ return objectGetOwnPropertySymbols.f(toObject(it));
+ }
+ });
- if (this.options.sortClass !== undefined) {
- clearTimeout(timeoutId);
- timeoutId = setTimeout(function () {
- _this3.$el.removeClass(_this3.options.sortClass);
- var index = _this3.$header.find('[data-field="' + _this3.options.sortName + '"]').index();
- _this3.$el.find('tr td:nth-child(' + (index + 1) + ')').addClass(_this3.options.sortClass);
- }, 250);
- }
- }
- }
- }, {
- key: 'onSort',
- value: function onSort(_ref7) {
- var type = _ref7.type,
- currentTarget = _ref7.currentTarget;
+ // `JSON.stringify` method behavior with symbols
+ // https://tc39.github.io/ecma262/#sec-json.stringify
+ JSON$1 && _export({ target: 'JSON', stat: true, forced: !nativeSymbol || fails(function () {
+ var symbol = $Symbol();
+ // MS Edge converts symbol values to JSON as {}
+ return nativeJSONStringify([symbol]) != '[null]'
+ // WebKit converts symbol values to JSON as null
+ || nativeJSONStringify({ a: symbol }) != '{}'
+ // V8 throws on boxed symbols
+ || nativeJSONStringify(Object(symbol)) != '{}';
+ }) }, {
+ stringify: function stringify(it) {
+ var args = [it];
+ var index = 1;
+ var replacer, $replacer;
+ while (arguments.length > index) args.push(arguments[index++]);
+ $replacer = replacer = args[1];
+ if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
+ if (!isArray(replacer)) replacer = function (key, value) {
+ if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
+ if (!isSymbol(value)) return value;
+ };
+ args[1] = replacer;
+ return nativeJSONStringify.apply(JSON$1, args);
+ }
+ });
- var $this = type === 'keypress' ? $(currentTarget) : $(currentTarget).parent();
- var $this_ = this.$header.find('th').eq($this.index());
+ // `Symbol.prototype[@@toPrimitive]` method
+ // https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive
+ if (!$Symbol[PROTOTYPE$1][TO_PRIMITIVE]) hide($Symbol[PROTOTYPE$1], TO_PRIMITIVE, $Symbol[PROTOTYPE$1].valueOf);
+ // `Symbol.prototype[@@toStringTag]` property
+ // https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag
+ setToStringTag($Symbol, SYMBOL);
- this.$header.add(this.$header_).find('span.order').remove();
+ hiddenKeys[HIDDEN] = true;
- if (this.options.sortName === $this.data('field')) {
- this.options.sortOrder = this.options.sortOrder === 'asc' ? 'desc' : 'asc';
- } else {
- this.options.sortName = $this.data('field');
- if (this.options.rememberOrder) {
- this.options.sortOrder = $this.data('order') === 'asc' ? 'desc' : 'asc';
- } else {
- this.options.sortOrder = this.columns[this.fieldsColumnsIndex[$this.data('field')]].order;
- }
- }
- this.trigger('sort', this.options.sortName, this.options.sortOrder);
+ var defineProperty$2 = objectDefineProperty.f;
- $this.add($this_).data('order', this.options.sortOrder);
- // Assign the correct sortable arrow
- this.getCaret();
+ var NativeSymbol = global_1.Symbol;
- if (this.options.sidePagination === 'server') {
- this.initServer(this.options.silentSort);
- return;
- }
+ if (descriptors && typeof NativeSymbol == 'function' && (!('description' in NativeSymbol.prototype) ||
+ // Safari 12 bug
+ NativeSymbol().description !== undefined
+ )) {
+ var EmptyStringDescriptionStore = {};
+ // wrap Symbol constructor for correct work with undefined description
+ var SymbolWrapper = function Symbol() {
+ var description = arguments.length < 1 || arguments[0] === undefined ? undefined : String(arguments[0]);
+ var result = this instanceof SymbolWrapper
+ ? new NativeSymbol(description)
+ // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
+ : description === undefined ? NativeSymbol() : NativeSymbol(description);
+ if (description === '') EmptyStringDescriptionStore[result] = true;
+ return result;
+ };
+ copyConstructorProperties(SymbolWrapper, NativeSymbol);
+ var symbolPrototype = SymbolWrapper.prototype = NativeSymbol.prototype;
+ symbolPrototype.constructor = SymbolWrapper;
- this.initSort();
- this.initBody();
- }
- }, {
- key: 'initToolbar',
- value: function initToolbar() {
- var _this4 = this;
+ var symbolToString = symbolPrototype.toString;
+ var native = String(NativeSymbol('test')) == 'Symbol(test)';
+ var regexp = /^Symbol\((.*)\)[^)]+$/;
+ defineProperty$2(symbolPrototype, 'description', {
+ configurable: true,
+ get: function description() {
+ var symbol = isObject(this) ? this.valueOf() : this;
+ var string = symbolToString.call(symbol);
+ if (has(EmptyStringDescriptionStore, symbol)) return '';
+ var desc = native ? string.slice(7, -1) : string.replace(regexp, '$1');
+ return desc === '' ? undefined : desc;
+ }
+ });
- var html = [];
- var timeoutId = 0;
- var $keepOpen = void 0;
- var $search = void 0;
- var switchableCount = 0;
+ _export({ global: true, forced: true }, {
+ Symbol: SymbolWrapper
+ });
+ }
- if (this.$toolbar.find('.bs-bars').children().length) {
- $('body').append($(this.options.toolbar));
- }
- this.$toolbar.html('');
+ // `Symbol.iterator` well-known symbol
+ // https://tc39.github.io/ecma262/#sec-symbol.iterator
+ defineWellKnownSymbol('iterator');
- if (typeof this.options.toolbar === 'string' || _typeof(this.options.toolbar) === 'object') {
- $(Utils.sprintf('<div class="bs-bars %s-%s"></div>', bootstrap.classes.pull, this.options.toolbarAlign)).appendTo(this.$toolbar).append($(this.options.toolbar));
- }
+ var createProperty = function (object, key, value) {
+ var propertyKey = toPrimitive(key);
+ if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
+ else object[propertyKey] = value;
+ };
- // showColumns, showToggle, showRefresh
- html = [Utils.sprintf('<div class="columns columns-%s btn-group %s-%s">', this.options.buttonsAlign, bootstrap.classes.pull, this.options.buttonsAlign)];
+ var SPECIES$1 = wellKnownSymbol('species');
- if (typeof this.options.icons === 'string') {
- this.options.icons = Utils.calculateObjectValue(null, this.options.icons);
- }
+ var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
+ return !fails(function () {
+ var array = [];
+ var constructor = array.constructor = {};
+ constructor[SPECIES$1] = function () {
+ return { foo: 1 };
+ };
+ return array[METHOD_NAME](Boolean).foo !== 1;
+ });
+ };
- if (this.options.showPaginationSwitch) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="paginationSwitch" aria-label="pagination Switch" title="%s">', this.options.formatPaginationSwitch()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.paginationSwitchDown), '</button>');
- }
+ var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
+ var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
+ var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
- if (this.options.showFullscreen) {
- this.$toolbar.find('button[name="fullscreen"]').off('click').on('click', $.proxy(this.toggleFullscreen, this));
- }
+ var IS_CONCAT_SPREADABLE_SUPPORT = !fails(function () {
+ var array = [];
+ array[IS_CONCAT_SPREADABLE] = false;
+ return array.concat()[0] !== array;
+ });
- if (this.options.showRefresh) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="refresh" aria-label="refresh" title="%s">', this.options.formatRefresh()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.refresh), '</button>');
- }
+ var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
- if (this.options.showToggle) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="toggle" aria-label="toggle" title="%s">', this.options.formatToggle()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.toggleOff), '</button>');
- }
+ var isConcatSpreadable = function (O) {
+ if (!isObject(O)) return false;
+ var spreadable = O[IS_CONCAT_SPREADABLE];
+ return spreadable !== undefined ? !!spreadable : isArray(O);
+ };
- if (this.options.showFullscreen) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="fullscreen" aria-label="fullscreen" title="%s">', this.options.formatFullscreen()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.fullscreen), '</button>');
- }
+ var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
- if (this.options.showColumns) {
- html.push(Utils.sprintf('<div class="keep-open btn-group" title="%s">', this.options.formatColumns()), '<button type="button" aria-label="columns" class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + ' dropdown-toggle" data-toggle="dropdown">', Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.columns), ' <span class="caret"></span>', '</button>', bootstrap.html.toobarDropdow[0]);
+ // `Array.prototype.concat` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.concat
+ // with adding support of @@isConcatSpreadable and @@species
+ _export({ target: 'Array', proto: true, forced: FORCED }, {
+ concat: function concat(arg) { // eslint-disable-line no-unused-vars
+ var O = toObject(this);
+ var A = arraySpeciesCreate(O, 0);
+ var n = 0;
+ var i, k, length, len, E;
+ for (i = -1, length = arguments.length; i < length; i++) {
+ E = i === -1 ? O : arguments[i];
+ if (isConcatSpreadable(E)) {
+ len = toLength(E.length);
+ if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
+ for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
+ } else {
+ if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
+ createProperty(A, n++, E);
+ }
+ }
+ A.length = n;
+ return A;
+ }
+ });
- this.columns.forEach(function (column, i) {
- if (column.radio || column.checkbox) {
- return;
- }
+ var $filter = arrayIteration.filter;
- if (_this4.options.cardView && !column.cardVisible) {
- return;
- }
- var checked = column.visible ? ' checked="checked"' : '';
+ // `Array.prototype.filter` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.filter
+ // with adding support of @@species
+ _export({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('filter') }, {
+ filter: function filter(callbackfn /* , thisArg */) {
+ return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
+ }
+ });
- if (column.switchable) {
- html.push(Utils.sprintf(bootstrap.html.toobarDropdowItem, Utils.sprintf('<input type="checkbox" data-field="%s" value="%s"%s> %s', column.field, i, checked, column.title)));
- switchableCount++;
- }
- });
- html.push(bootstrap.html.toobarDropdow[1], '</div>');
- }
+ var UNSCOPABLES = wellKnownSymbol('unscopables');
+ var ArrayPrototype = Array.prototype;
- html.push('</div>');
+ // Array.prototype[@@unscopables]
+ // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
+ hide(ArrayPrototype, UNSCOPABLES, objectCreate(null));
+ }
- // Fix #188: this.showToolbar is for extensions
- if (this.showToolbar || html.length > 2) {
- this.$toolbar.append(html.join(''));
- }
+ // add a key to Array.prototype[@@unscopables]
+ var addToUnscopables = function (key) {
+ ArrayPrototype[UNSCOPABLES][key] = true;
+ };
- if (this.options.showPaginationSwitch) {
- this.$toolbar.find('button[name="paginationSwitch"]').off('click').on('click', $.proxy(this.togglePagination, this));
- }
+ var $find = arrayIteration.find;
- if (this.options.showRefresh) {
- this.$toolbar.find('button[name="refresh"]').off('click').on('click', $.proxy(this.refresh, this));
- }
- if (this.options.showToggle) {
- this.$toolbar.find('button[name="toggle"]').off('click').on('click', function () {
- _this4.toggleView();
- });
- }
+ var FIND = 'find';
+ var SKIPS_HOLES = true;
- if (this.options.showColumns) {
- $keepOpen = this.$toolbar.find('.keep-open');
+ // Shouldn't skip holes
+ if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
- if (switchableCount <= this.options.minimumCountColumns) {
- $keepOpen.find('input').prop('disabled', true);
- }
+ // `Array.prototype.find` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.find
+ _export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
+ find: function find(callbackfn /* , that = undefined */) {
+ return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
+ }
+ });
- $keepOpen.find('li').off('click').on('click', function (e) {
- e.stopImmediatePropagation();
- });
- $keepOpen.find('input').off('click').on('click', function (_ref8) {
- var currentTarget = _ref8.currentTarget;
+ // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
+ addToUnscopables(FIND);
- var $this = $(currentTarget);
+ var $findIndex = arrayIteration.findIndex;
- _this4.toggleColumn($this.val(), $this.prop('checked'), false);
- _this4.trigger('column-switch', $this.data('field'), $this.prop('checked'));
- });
- }
- if (this.options.search) {
- html = [];
- html.push(Utils.sprintf('<div class="%s-%s search">', bootstrap.classes.pull, this.options.searchAlign), Utils.sprintf('<input class="form-control' + Utils.sprintf(' input-%s', this.options.iconSize) + '" type="text" placeholder="%s">', this.options.formatSearch()), '</div>');
+ var FIND_INDEX = 'findIndex';
+ var SKIPS_HOLES$1 = true;
- this.$toolbar.append(html.join(''));
- $search = this.$toolbar.find('.search input');
- $search.off('keyup drop blur').on('keyup drop blur', function (event) {
- if (_this4.options.searchOnEnterKey && event.keyCode !== 13) {
- return;
- }
+ // Shouldn't skip holes
+ if (FIND_INDEX in []) Array(1)[FIND_INDEX](function () { SKIPS_HOLES$1 = false; });
- if ([37, 38, 39, 40].includes(event.keyCode)) {
- return;
- }
+ // `Array.prototype.findIndex` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.findindex
+ _export({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, {
+ findIndex: function findIndex(callbackfn /* , that = undefined */) {
+ return $findIndex(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
+ }
+ });
- clearTimeout(timeoutId); // doesn't matter if it's 0
- timeoutId = setTimeout(function () {
- _this4.onSearch(event);
- }, _this4.options.searchTimeOut);
- });
+ // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
+ addToUnscopables(FIND_INDEX);
- if (Utils.isIEBrowser()) {
- $search.off('mouseup').on('mouseup', function (event) {
- clearTimeout(timeoutId); // doesn't matter if it's 0
- timeoutId = setTimeout(function () {
- _this4.onSearch(event);
- }, _this4.options.searchTimeOut);
- });
- }
- }
- }
- }, {
- key: 'onSearch',
- value: function onSearch(_ref9) {
- var currentTarget = _ref9.currentTarget,
- firedByInitSearchText = _ref9.firedByInitSearchText;
+ var $includes = arrayIncludes.includes;
- var text = $.trim($(currentTarget).val());
- // trim search input
- if (this.options.trimOnSearch && $(currentTarget).val() !== text) {
- $(currentTarget).val(text);
- }
+ // `Array.prototype.includes` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.includes
+ _export({ target: 'Array', proto: true }, {
+ includes: function includes(el /* , fromIndex = 0 */) {
+ return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
+ }
+ });
- if (text === this.searchText) {
- return;
- }
- this.searchText = text;
- this.options.searchText = text;
+ // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
+ addToUnscopables('includes');
- if (!firedByInitSearchText) {
- this.options.pageNumber = 1;
- }
- this.initSearch();
- if (firedByInitSearchText) {
- if (this.options.sidePagination === 'client') {
- this.updatePagination();
- }
- } else {
- this.updatePagination();
- }
- this.trigger('search', text);
- }
- }, {
- key: 'initSearch',
- value: function initSearch() {
- var _this5 = this;
+ var sloppyArrayMethod = function (METHOD_NAME, argument) {
+ var method = [][METHOD_NAME];
+ return !method || !fails(function () {
+ // eslint-disable-next-line no-useless-call,no-throw-literal
+ method.call(null, argument || function () { throw 1; }, 1);
+ });
+ };
- if (this.options.sidePagination !== 'server') {
- if (this.options.customSearch) {
- Utils.calculateObjectValue(this.options, this.options.customSearch, [this.searchText]);
- return;
- }
+ var $indexOf = arrayIncludes.indexOf;
- var s = this.searchText && (this.options.escape ? Utils.escapeHTML(this.searchText) : this.searchText).toLowerCase();
- var f = $.isEmptyObject(this.filterColumns) ? null : this.filterColumns;
- // Check filter
- this.data = f ? this.options.data.filter(function (item, i) {
- for (var key in f) {
- if (Array.isArray(f[key]) && !f[key].includes(item[key]) || !Array.isArray(f[key]) && item[key] !== f[key]) {
- return false;
- }
- }
- return true;
- }) : this.options.data;
+ var nativeIndexOf = [].indexOf;
- this.data = s ? this.data.filter(function (item, i) {
- for (var j = 0; j < _this5.header.fields.length; j++) {
- if (!_this5.header.searchables[j]) {
- continue;
- }
+ var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;
+ var SLOPPY_METHOD = sloppyArrayMethod('indexOf');
- var key = $.isNumeric(_this5.header.fields[j]) ? parseInt(_this5.header.fields[j], 10) : _this5.header.fields[j];
- var column = _this5.columns[_this5.fieldsColumnsIndex[key]];
- var value = void 0;
+ // `Array.prototype.indexOf` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
+ _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {
+ indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
+ return NEGATIVE_ZERO
+ // convert -0 to +0
+ ? nativeIndexOf.apply(this, arguments) || 0
+ : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);
+ }
+ });
- if (typeof key === 'string') {
- value = item;
- var props = key.split('.');
- for (var _i2 = 0; _i2 < props.length; _i2++) {
- if (value[props[_i2]] !== null) {
- value = value[props[_i2]];
- }
- }
- } else {
- value = item[key];
- }
+ var correctPrototypeGetter = !fails(function () {
+ function F() { /* empty */ }
+ F.prototype.constructor = null;
+ return Object.getPrototypeOf(new F()) !== F.prototype;
+ });
- // Fix #142: respect searchForamtter boolean
- if (column && column.searchFormatter) {
- value = Utils.calculateObjectValue(column, _this5.header.formatters[j], [value, item, i], value);
- }
+ var IE_PROTO$1 = sharedKey('IE_PROTO');
+ var ObjectPrototype$1 = Object.prototype;
- if (typeof value === 'string' || typeof value === 'number') {
- if (_this5.options.strictSearch) {
- if (('' + value).toLowerCase() === s) {
- return true;
- }
- } else {
- if (('' + value).toLowerCase().includes(s)) {
- return true;
- }
- }
- }
- }
- return false;
- }) : this.data;
- }
- }
- }, {
- key: 'initPagination',
- value: function initPagination() {
- var _this6 = this;
+ // `Object.getPrototypeOf` method
+ // https://tc39.github.io/ecma262/#sec-object.getprototypeof
+ var objectGetPrototypeOf = correctPrototypeGetter ? Object.getPrototypeOf : function (O) {
+ O = toObject(O);
+ if (has(O, IE_PROTO$1)) return O[IE_PROTO$1];
+ if (typeof O.constructor == 'function' && O instanceof O.constructor) {
+ return O.constructor.prototype;
+ } return O instanceof Object ? ObjectPrototype$1 : null;
+ };
- if (!this.options.pagination) {
- this.$pagination.hide();
- return;
- }
- this.$pagination.show();
+ var ITERATOR = wellKnownSymbol('iterator');
+ var BUGGY_SAFARI_ITERATORS = false;
- var html = [];
- var $allSelected = false;
- var i = void 0;
- var from = void 0;
- var to = void 0;
- var $pageList = void 0;
- var $pre = void 0;
- var $next = void 0;
- var $number = void 0;
- var data = this.getData();
- var pageList = this.options.pageList;
+ var returnThis = function () { return this; };
- if (this.options.sidePagination !== 'server') {
- this.options.totalRows = data.length;
- }
+ // `%IteratorPrototype%` object
+ // https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object
+ var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
- this.totalPages = 0;
- if (this.options.totalRows) {
- if (this.options.pageSize === this.options.formatAllRows()) {
- this.options.pageSize = this.options.totalRows;
- $allSelected = true;
- } else if (this.options.pageSize === this.options.totalRows) {
- // Fix #667 Table with pagination,
- // multiple pages and a search this matches to one page throws exception
- var pageLst = typeof this.options.pageList === 'string' ? this.options.pageList.replace('[', '').replace(']', '').replace(/ /g, '').toLowerCase().split(',') : this.options.pageList;
- if (pageLst.includes(this.options.formatAllRows().toLowerCase())) {
- $allSelected = true;
- }
- }
+ if ([].keys) {
+ arrayIterator = [].keys();
+ // Safari 8 has buggy iterators w/o `next`
+ if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
+ else {
+ PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator));
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
+ }
+ }
- this.totalPages = ~~((this.options.totalRows - 1) / this.options.pageSize) + 1;
+ if (IteratorPrototype == undefined) IteratorPrototype = {};
- this.options.totalPages = this.totalPages;
- }
- if (this.totalPages > 0 && this.options.pageNumber > this.totalPages) {
- this.options.pageNumber = this.totalPages;
- }
+ // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
+ if ( !has(IteratorPrototype, ITERATOR)) hide(IteratorPrototype, ITERATOR, returnThis);
- this.pageFrom = (this.options.pageNumber - 1) * this.options.pageSize + 1;
- this.pageTo = this.options.pageNumber * this.options.pageSize;
- if (this.pageTo > this.options.totalRows) {
- this.pageTo = this.options.totalRows;
- }
+ var iteratorsCore = {
+ IteratorPrototype: IteratorPrototype,
+ BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
+ };
- html.push(Utils.sprintf('<div class="%s-%s pagination-detail">', bootstrap.classes.pull, this.options.paginationDetailHAlign), '<span class="pagination-info">', this.options.onlyInfoPagination ? this.options.formatDetailPagination(this.options.totalRows) : this.options.formatShowingRows(this.pageFrom, this.pageTo, this.options.totalRows), '</span>');
+ var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
- if (!this.options.onlyInfoPagination) {
- html.push('<span class="page-list">');
+ var createIteratorConstructor = function (IteratorConstructor, NAME, next) {
+ var TO_STRING_TAG = NAME + ' Iterator';
+ IteratorConstructor.prototype = objectCreate(IteratorPrototype$1, { next: createPropertyDescriptor(1, next) });
+ setToStringTag(IteratorConstructor, TO_STRING_TAG, false);
+ return IteratorConstructor;
+ };
- var pageNumber = [Utils.sprintf('<span class="btn-group %s">', this.options.paginationVAlign === 'top' || this.options.paginationVAlign === 'both' ? 'dropdown' : 'dropup'), '<button type="button" class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + ' dropdown-toggle" data-toggle="dropdown">', '<span class="page-size">', $allSelected ? this.options.formatAllRows() : this.options.pageSize, '</span>', ' <span class="caret"></span>', '</button>', bootstrap.html.pageDropdown[0]];
+ var aPossiblePrototype = function (it) {
+ if (!isObject(it) && it !== null) {
+ throw TypeError("Can't set " + String(it) + ' as a prototype');
+ } return it;
+ };
- if (typeof this.options.pageList === 'string') {
- var list = this.options.pageList.replace('[', '').replace(']', '').replace(/ /g, '').split(',');
+ // `Object.setPrototypeOf` method
+ // https://tc39.github.io/ecma262/#sec-object.setprototypeof
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
+ /* eslint-disable no-proto */
+ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
+ var CORRECT_SETTER = false;
+ var test = {};
+ var setter;
+ try {
+ setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
+ setter.call(test, []);
+ CORRECT_SETTER = test instanceof Array;
+ } catch (error) { /* empty */ }
+ return function setPrototypeOf(O, proto) {
+ anObject(O);
+ aPossiblePrototype(proto);
+ if (CORRECT_SETTER) setter.call(O, proto);
+ else O.__proto__ = proto;
+ return O;
+ };
+ }() : undefined);
- pageList = [];
- var _iteratorNormalCompletion9 = true;
- var _didIteratorError9 = false;
- var _iteratorError9 = undefined;
+ var IteratorPrototype$2 = iteratorsCore.IteratorPrototype;
+ var BUGGY_SAFARI_ITERATORS$1 = iteratorsCore.BUGGY_SAFARI_ITERATORS;
+ var ITERATOR$1 = wellKnownSymbol('iterator');
+ var KEYS = 'keys';
+ var VALUES = 'values';
+ var ENTRIES = 'entries';
- try {
- for (var _iterator9 = list[Symbol.iterator](), _step9; !(_iteratorNormalCompletion9 = (_step9 = _iterator9.next()).done); _iteratorNormalCompletion9 = true) {
- var value = _step9.value;
+ var returnThis$1 = function () { return this; };
- pageList.push(value.toUpperCase() === this.options.formatAllRows().toUpperCase() || value.toUpperCase() === 'UNLIMITED' ? this.options.formatAllRows() : +value);
- }
- } catch (err) {
- _didIteratorError9 = true;
- _iteratorError9 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion9 && _iterator9.return) {
- _iterator9.return();
- }
- } finally {
- if (_didIteratorError9) {
- throw _iteratorError9;
- }
- }
- }
- }
+ var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
+ createIteratorConstructor(IteratorConstructor, NAME, next);
- pageList.forEach(function (page, i) {
- if (!_this6.options.smartDisplay || i === 0 || pageList[i - 1] < _this6.options.totalRows) {
- var active = void 0;
- if ($allSelected) {
- active = page === _this6.options.formatAllRows() ? 'active' : '';
- } else {
- active = page === _this6.options.pageSize ? 'active' : '';
- }
- pageNumber.push(Utils.sprintf(bootstrap.html.pageDropdownItem, active, page));
- }
- });
- pageNumber.push(bootstrap.html.pageDropdown[1] + '</span>');
+ var getIterationMethod = function (KIND) {
+ if (KIND === DEFAULT && defaultIterator) return defaultIterator;
+ if (!BUGGY_SAFARI_ITERATORS$1 && KIND in IterablePrototype) return IterablePrototype[KIND];
+ switch (KIND) {
+ case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
+ case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
+ case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
+ } return function () { return new IteratorConstructor(this); };
+ };
- html.push(this.options.formatRecordsPerPage(pageNumber.join('')));
- html.push('</span>');
+ var TO_STRING_TAG = NAME + ' Iterator';
+ var INCORRECT_VALUES_NAME = false;
+ var IterablePrototype = Iterable.prototype;
+ var nativeIterator = IterablePrototype[ITERATOR$1]
+ || IterablePrototype['@@iterator']
+ || DEFAULT && IterablePrototype[DEFAULT];
+ var defaultIterator = !BUGGY_SAFARI_ITERATORS$1 && nativeIterator || getIterationMethod(DEFAULT);
+ var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
+ var CurrentIteratorPrototype, methods, KEY;
- html.push('</div>', Utils.sprintf('<div class="%s-%s pagination">', bootstrap.classes.pull, this.options.paginationHAlign), '<ul class="pagination' + Utils.sprintf(' pagination-%s', this.options.iconSize) + '">', Utils.sprintf('<li class="page-item page-pre"><a class="page-link" href="#">%s</a></li>', this.options.paginationPreText));
+ // fix native
+ if (anyNativeIterator) {
+ CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable()));
+ if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) {
+ if ( objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) {
+ if (objectSetPrototypeOf) {
+ objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$2);
+ } else if (typeof CurrentIteratorPrototype[ITERATOR$1] != 'function') {
+ hide(CurrentIteratorPrototype, ITERATOR$1, returnThis$1);
+ }
+ }
+ // Set @@toStringTag to native iterators
+ setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true);
+ }
+ }
- if (this.totalPages < this.options.paginationSuccessivelySize) {
- from = 1;
- to = this.totalPages;
- } else {
- from = this.options.pageNumber - this.options.paginationPagesBySide;
- to = from + this.options.paginationPagesBySide * 2;
- }
+ // fix Array#{values, @@iterator}.name in V8 / FF
+ if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
+ INCORRECT_VALUES_NAME = true;
+ defaultIterator = function values() { return nativeIterator.call(this); };
+ }
- if (this.options.pageNumber < this.options.paginationSuccessivelySize - 1) {
- to = this.options.paginationSuccessivelySize;
- }
+ // define iterator
+ if ( IterablePrototype[ITERATOR$1] !== defaultIterator) {
+ hide(IterablePrototype, ITERATOR$1, defaultIterator);
+ }
- if (to > this.totalPages) {
- to = this.totalPages;
- }
+ // export additional methods
+ if (DEFAULT) {
+ methods = {
+ values: getIterationMethod(VALUES),
+ keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
+ entries: getIterationMethod(ENTRIES)
+ };
+ if (FORCED) for (KEY in methods) {
+ if (BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
+ redefine(IterablePrototype, KEY, methods[KEY]);
+ }
+ } else _export({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME }, methods);
+ }
- if (this.options.paginationSuccessivelySize > this.totalPages - from) {
- from = from - (this.options.paginationSuccessivelySize - (this.totalPages - from)) + 1;
- }
+ return methods;
+ };
- if (from < 1) {
- from = 1;
- }
+ var ARRAY_ITERATOR = 'Array Iterator';
+ var setInternalState$1 = internalState.set;
+ var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR);
- if (to > this.totalPages) {
- to = this.totalPages;
- }
+ // `Array.prototype.entries` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.entries
+ // `Array.prototype.keys` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.keys
+ // `Array.prototype.values` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.values
+ // `Array.prototype[@@iterator]` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator
+ // `CreateArrayIterator` internal method
+ // https://tc39.github.io/ecma262/#sec-createarrayiterator
+ var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
+ setInternalState$1(this, {
+ type: ARRAY_ITERATOR,
+ target: toIndexedObject(iterated), // target
+ index: 0, // next index
+ kind: kind // kind
+ });
+ // `%ArrayIteratorPrototype%.next` method
+ // https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next
+ }, function () {
+ var state = getInternalState$1(this);
+ var target = state.target;
+ var kind = state.kind;
+ var index = state.index++;
+ if (!target || index >= target.length) {
+ state.target = undefined;
+ return { value: undefined, done: true };
+ }
+ if (kind == 'keys') return { value: index, done: false };
+ if (kind == 'values') return { value: target[index], done: false };
+ return { value: [index, target[index]], done: false };
+ }, 'values');
- var middleSize = Math.round(this.options.paginationPagesBySide / 2);
- var pageItem = function pageItem(i) {
- var classes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- return '\n <li class="page-item' + classes + (i === _this6.options.pageNumber ? ' active' : '') + '">\n <a class="page-link" href="#">' + i + '</a>\n </li>\n ';
- };
+ // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
+ addToUnscopables('keys');
+ addToUnscopables('values');
+ addToUnscopables('entries');
- if (from > 1) {
- var max = this.options.paginationPagesBySide;
- if (max >= from) max = from - 1;
- for (i = 1; i <= max; i++) {
- html.push(pageItem(i));
- }
- if (from - 1 === max + 1) {
- i = from - 1;
- html.push(pageItem(i));
- } else {
- if (from - 1 > max) {
- if (from - this.options.paginationPagesBySide * 2 > this.options.paginationPagesBySide && this.options.paginationUseIntermediate) {
- i = Math.round((from - middleSize) / 2 + middleSize);
- html.push(pageItem(i, ' page-intermediate'));
- } else {
- html.push('\n <li class="page-item page-first-separator disabled">\n <a class="page-link" href="#">...</a>\n </li>');
- }
- }
- }
- }
+ var nativeJoin = [].join;
- for (i = from; i <= to; i++) {
- html.push(pageItem(i));
- }
+ var ES3_STRINGS = indexedObject != Object;
+ var SLOPPY_METHOD$1 = sloppyArrayMethod('join', ',');
- if (this.totalPages > to) {
- var min = this.totalPages - (this.options.paginationPagesBySide - 1);
- if (to >= min) min = to + 1;
- if (to + 1 === min - 1) {
- i = to + 1;
- html.push(pageItem(i));
- } else {
- if (min > to + 1) {
- if (this.totalPages - to > this.options.paginationPagesBySide * 2 && this.options.paginationUseIntermediate) {
- i = Math.round((this.totalPages - middleSize - to) / 2 + to);
- html.push(pageItem(i, ' page-intermediate'));
- } else {
- html.push('\n <li class="page-item page-last-separator disabled">\n <a class="page-link" href="#">...</a>\n </li>');
- }
- }
- }
+ // `Array.prototype.join` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.join
+ _export({ target: 'Array', proto: true, forced: ES3_STRINGS || SLOPPY_METHOD$1 }, {
+ join: function join(separator) {
+ return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
+ }
+ });
- for (i = min; i <= this.totalPages; i++) {
- html.push(pageItem(i));
- }
- }
+ var SPECIES$2 = wellKnownSymbol('species');
+ var nativeSlice = [].slice;
+ var max$1 = Math.max;
- html.push('\n <li class="page-item page-next">\n <a class="page-link" href="#">' + this.options.paginationNextText + '</a>\n </li>\n </ul>\n </div>\n ');
- }
- this.$pagination.html(html.join(''));
+ // `Array.prototype.slice` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.slice
+ // fallback for not array-like ES3 strings and DOM objects
+ _export({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('slice') }, {
+ slice: function slice(start, end) {
+ var O = toIndexedObject(this);
+ var length = toLength(O.length);
+ var k = toAbsoluteIndex(start, length);
+ var fin = toAbsoluteIndex(end === undefined ? length : end, length);
+ // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
+ var Constructor, result, n;
+ if (isArray(O)) {
+ Constructor = O.constructor;
+ // cross-realm fallback
+ if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {
+ Constructor = undefined;
+ } else if (isObject(Constructor)) {
+ Constructor = Constructor[SPECIES$2];
+ if (Constructor === null) Constructor = undefined;
+ }
+ if (Constructor === Array || Constructor === undefined) {
+ return nativeSlice.call(O, k, fin);
+ }
+ }
+ result = new (Constructor === undefined ? Array : Constructor)(max$1(fin - k, 0));
+ for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
+ result.length = n;
+ return result;
+ }
+ });
- if (!this.options.onlyInfoPagination) {
- $pageList = this.$pagination.find('.page-list a');
- $pre = this.$pagination.find('.page-pre');
- $next = this.$pagination.find('.page-next');
- $number = this.$pagination.find('.page-item').not('.page-next, .page-pre');
+ var nativeSort = [].sort;
+ var test = [1, 2, 3];
- if (this.options.smartDisplay) {
- if (this.totalPages <= 1) {
- this.$pagination.find('div.pagination').hide();
- }
- if (pageList.length < 2 || this.options.totalRows <= pageList[0]) {
- this.$pagination.find('span.page-list').hide();
- }
+ // IE8-
+ var FAILS_ON_UNDEFINED = fails(function () {
+ test.sort(undefined);
+ });
+ // V8 bug
+ var FAILS_ON_NULL = fails(function () {
+ test.sort(null);
+ });
+ // Old WebKit
+ var SLOPPY_METHOD$2 = sloppyArrayMethod('sort');
- // when data is empty, hide the pagination
- this.$pagination[this.getData().length ? 'show' : 'hide']();
- }
+ var FORCED$1 = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || SLOPPY_METHOD$2;
- if (!this.options.paginationLoop) {
- if (this.options.pageNumber === 1) {
- $pre.addClass('disabled');
- }
- if (this.options.pageNumber === this.totalPages) {
- $next.addClass('disabled');
- }
- }
+ // `Array.prototype.sort` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.sort
+ _export({ target: 'Array', proto: true, forced: FORCED$1 }, {
+ sort: function sort(comparefn) {
+ return comparefn === undefined
+ ? nativeSort.call(toObject(this))
+ : nativeSort.call(toObject(this), aFunction$1(comparefn));
+ }
+ });
- if ($allSelected) {
- this.options.pageSize = this.options.formatAllRows();
- }
- // removed the events for last and first, onPageNumber executeds the same logic
- $pageList.off('click').on('click', $.proxy(this.onPageListChange, this));
- $pre.off('click').on('click', $.proxy(this.onPagePre, this));
- $next.off('click').on('click', $.proxy(this.onPageNext, this));
- $number.off('click').on('click', $.proxy(this.onPageNumber, this));
- }
- }
- }, {
- key: 'updatePagination',
- value: function updatePagination(event) {
- // Fix #171: IE disabled button can be clicked bug.
- if (event && $(event.currentTarget).hasClass('disabled')) {
- return;
- }
+ var max$2 = Math.max;
+ var min$2 = Math.min;
+ var MAX_SAFE_INTEGER$1 = 0x1FFFFFFFFFFFFF;
+ var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded';
- if (!this.options.maintainSelected) {
- this.resetRows();
- }
+ // `Array.prototype.splice` method
+ // https://tc39.github.io/ecma262/#sec-array.prototype.splice
+ // with adding support of @@species
+ _export({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('splice') }, {
+ splice: function splice(start, deleteCount /* , ...items */) {
+ var O = toObject(this);
+ var len = toLength(O.length);
+ var actualStart = toAbsoluteIndex(start, len);
+ var argumentsLength = arguments.length;
+ var insertCount, actualDeleteCount, A, k, from, to;
+ if (argumentsLength === 0) {
+ insertCount = actualDeleteCount = 0;
+ } else if (argumentsLength === 1) {
+ insertCount = 0;
+ actualDeleteCount = len - actualStart;
+ } else {
+ insertCount = argumentsLength - 2;
+ actualDeleteCount = min$2(max$2(toInteger(deleteCount), 0), len - actualStart);
+ }
+ if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER$1) {
+ throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED);
+ }
+ A = arraySpeciesCreate(O, actualDeleteCount);
+ for (k = 0; k < actualDeleteCount; k++) {
+ from = actualStart + k;
+ if (from in O) createProperty(A, k, O[from]);
+ }
+ A.length = actualDeleteCount;
+ if (insertCount < actualDeleteCount) {
+ for (k = actualStart; k < len - actualDeleteCount; k++) {
+ from = k + actualDeleteCount;
+ to = k + insertCount;
+ if (from in O) O[to] = O[from];
+ else delete O[to];
+ }
+ for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1];
+ } else if (insertCount > actualDeleteCount) {
+ for (k = len - actualDeleteCount; k > actualStart; k--) {
+ from = k + actualDeleteCount - 1;
+ to = k + insertCount - 1;
+ if (from in O) O[to] = O[from];
+ else delete O[to];
+ }
+ }
+ for (k = 0; k < insertCount; k++) {
+ O[k + actualStart] = arguments[k + 2];
+ }
+ O.length = len - actualDeleteCount + insertCount;
+ return A;
+ }
+ });
- this.initPagination();
- if (this.options.sidePagination === 'server') {
- this.initServer();
- } else {
- this.initBody();
- }
+ // makes subclassing work correct for wrapped built-ins
+ var inheritIfRequired = function ($this, dummy, Wrapper) {
+ var NewTarget, NewTargetPrototype;
+ if (
+ // it can work only with native `setPrototypeOf`
+ objectSetPrototypeOf &&
+ // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
+ typeof (NewTarget = dummy.constructor) == 'function' &&
+ NewTarget !== Wrapper &&
+ isObject(NewTargetPrototype = NewTarget.prototype) &&
+ NewTargetPrototype !== Wrapper.prototype
+ ) objectSetPrototypeOf($this, NewTargetPrototype);
+ return $this;
+ };
- this.trigger('page-change', this.options.pageNumber, this.options.pageSize);
- }
- }, {
- key: 'onPageListChange',
- value: function onPageListChange(event) {
- event.preventDefault();
- var $this = $(event.currentTarget);
+ // a string of all valid unicode whitespaces
+ // eslint-disable-next-line max-len
+ var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
- $this.parent().addClass('active').siblings().removeClass('active');
- this.options.pageSize = $this.text().toUpperCase() === this.options.formatAllRows().toUpperCase() ? this.options.formatAllRows() : +$this.text();
- this.$toolbar.find('.page-size').text(this.options.pageSize);
+ var whitespace = '[' + whitespaces + ']';
+ var ltrim = RegExp('^' + whitespace + whitespace + '*');
+ var rtrim = RegExp(whitespace + whitespace + '*$');
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'onPagePre',
- value: function onPagePre(event) {
- event.preventDefault();
- if (this.options.pageNumber - 1 === 0) {
- this.options.pageNumber = this.options.totalPages;
- } else {
- this.options.pageNumber--;
- }
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'onPageNext',
- value: function onPageNext(event) {
- event.preventDefault();
- if (this.options.pageNumber + 1 > this.options.totalPages) {
- this.options.pageNumber = 1;
- } else {
- this.options.pageNumber++;
- }
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'onPageNumber',
- value: function onPageNumber(event) {
- event.preventDefault();
- if (this.options.pageNumber === +$(event.currentTarget).text()) {
- return;
- }
- this.options.pageNumber = +$(event.currentTarget).text();
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'initRow',
- value: function initRow(item, i, data, parentDom) {
- var _this7 = this;
+ // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
+ var createMethod$2 = function (TYPE) {
+ return function ($this) {
+ var string = String(requireObjectCoercible($this));
+ if (TYPE & 1) string = string.replace(ltrim, '');
+ if (TYPE & 2) string = string.replace(rtrim, '');
+ return string;
+ };
+ };
- var html = [];
- var style = {};
- var csses = [];
- var data_ = '';
- var attributes = {};
- var htmlAttributes = [];
+ var stringTrim = {
+ // `String.prototype.{ trimLeft, trimStart }` methods
+ // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart
+ start: createMethod$2(1),
+ // `String.prototype.{ trimRight, trimEnd }` methods
+ // https://tc39.github.io/ecma262/#sec-string.prototype.trimend
+ end: createMethod$2(2),
+ // `String.prototype.trim` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype.trim
+ trim: createMethod$2(3)
+ };
- if (Utils.findIndex(this.hiddenRows, item) > -1) {
- return;
- }
+ var getOwnPropertyNames = objectGetOwnPropertyNames.f;
+ var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
+ var defineProperty$3 = objectDefineProperty.f;
+ var trim = stringTrim.trim;
- style = Utils.calculateObjectValue(this.options, this.options.rowStyle, [item, i], style);
+ var NUMBER = 'Number';
+ var NativeNumber = global_1[NUMBER];
+ var NumberPrototype = NativeNumber.prototype;
- if (style && style.css) {
- var _iteratorNormalCompletion10 = true;
- var _didIteratorError10 = false;
- var _iteratorError10 = undefined;
+ // Opera ~12 has broken Object#toString
+ var BROKEN_CLASSOF = classofRaw(objectCreate(NumberPrototype)) == NUMBER;
- try {
- for (var _iterator10 = Object.entries(style.css)[Symbol.iterator](), _step10; !(_iteratorNormalCompletion10 = (_step10 = _iterator10.next()).done); _iteratorNormalCompletion10 = true) {
- var _ref10 = _step10.value;
+ // `ToNumber` abstract operation
+ // https://tc39.github.io/ecma262/#sec-tonumber
+ var toNumber = function (argument) {
+ var it = toPrimitive(argument, false);
+ var first, third, radix, maxCode, digits, length, index, code;
+ if (typeof it == 'string' && it.length > 2) {
+ it = trim(it);
+ first = it.charCodeAt(0);
+ if (first === 43 || first === 45) {
+ third = it.charCodeAt(2);
+ if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix
+ } else if (first === 48) {
+ switch (it.charCodeAt(1)) {
+ case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i
+ case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i
+ default: return +it;
+ }
+ digits = it.slice(2);
+ length = digits.length;
+ for (index = 0; index < length; index++) {
+ code = digits.charCodeAt(index);
+ // parseInt parses a string to a first unavailable symbol
+ // but ToNumber should return NaN if a string contains unavailable symbols
+ if (code < 48 || code > maxCode) return NaN;
+ } return parseInt(digits, radix);
+ }
+ } return +it;
+ };
- var _ref11 = _slicedToArray(_ref10, 2);
+ // `Number` constructor
+ // https://tc39.github.io/ecma262/#sec-number-constructor
+ if (isForced_1(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
+ var NumberWrapper = function Number(value) {
+ var it = arguments.length < 1 ? 0 : value;
+ var dummy = this;
+ return dummy instanceof NumberWrapper
+ // check on 1..constructor(foo) case
+ && (BROKEN_CLASSOF ? fails(function () { NumberPrototype.valueOf.call(dummy); }) : classofRaw(dummy) != NUMBER)
+ ? inheritIfRequired(new NativeNumber(toNumber(it)), dummy, NumberWrapper) : toNumber(it);
+ };
+ for (var keys$1 = descriptors ? getOwnPropertyNames(NativeNumber) : (
+ // ES3:
+ 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
+ // ES2015 (in case, if modules with ES2015 Number statics required before):
+ 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +
+ 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'
+ ).split(','), j = 0, key; keys$1.length > j; j++) {
+ if (has(NativeNumber, key = keys$1[j]) && !has(NumberWrapper, key)) {
+ defineProperty$3(NumberWrapper, key, getOwnPropertyDescriptor$2(NativeNumber, key));
+ }
+ }
+ NumberWrapper.prototype = NumberPrototype;
+ NumberPrototype.constructor = NumberWrapper;
+ redefine(global_1, NUMBER, NumberWrapper);
+ }
- var key = _ref11[0];
- var value = _ref11[1];
+ var nativeAssign = Object.assign;
- csses.push(key + ': ' + value);
- }
- } catch (err) {
- _didIteratorError10 = true;
- _iteratorError10 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion10 && _iterator10.return) {
- _iterator10.return();
- }
- } finally {
- if (_didIteratorError10) {
- throw _iteratorError10;
- }
- }
- }
- }
+ // `Object.assign` method
+ // https://tc39.github.io/ecma262/#sec-object.assign
+ // should work with symbols and should have deterministic property order (V8 bug)
+ var objectAssign = !nativeAssign || fails(function () {
+ var A = {};
+ var B = {};
+ // eslint-disable-next-line no-undef
+ var symbol = Symbol();
+ var alphabet = 'abcdefghijklmnopqrst';
+ A[symbol] = 7;
+ alphabet.split('').forEach(function (chr) { B[chr] = chr; });
+ return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;
+ }) ? function assign(target, source) { // eslint-disable-line no-unused-vars
+ var T = toObject(target);
+ var argumentsLength = arguments.length;
+ var index = 1;
+ var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
+ var propertyIsEnumerable = objectPropertyIsEnumerable.f;
+ while (argumentsLength > index) {
+ var S = indexedObject(arguments[index++]);
+ var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);
+ var length = keys.length;
+ var j = 0;
+ var key;
+ while (length > j) {
+ key = keys[j++];
+ if (!descriptors || propertyIsEnumerable.call(S, key)) T[key] = S[key];
+ }
+ } return T;
+ } : nativeAssign;
- attributes = Utils.calculateObjectValue(this.options, this.options.rowAttributes, [item, i], attributes);
+ // `Object.assign` method
+ // https://tc39.github.io/ecma262/#sec-object.assign
+ _export({ target: 'Object', stat: true, forced: Object.assign !== objectAssign }, {
+ assign: objectAssign
+ });
- if (attributes) {
- var _iteratorNormalCompletion11 = true;
- var _didIteratorError11 = false;
- var _iteratorError11 = undefined;
+ var propertyIsEnumerable = objectPropertyIsEnumerable.f;
- try {
- for (var _iterator11 = Object.entries(attributes)[Symbol.iterator](), _step11; !(_iteratorNormalCompletion11 = (_step11 = _iterator11.next()).done); _iteratorNormalCompletion11 = true) {
- var _ref12 = _step11.value;
+ // `Object.{ entries, values }` methods implementation
+ var createMethod$3 = function (TO_ENTRIES) {
+ return function (it) {
+ var O = toIndexedObject(it);
+ var keys = objectKeys(O);
+ var length = keys.length;
+ var i = 0;
+ var result = [];
+ var key;
+ while (length > i) {
+ key = keys[i++];
+ if (!descriptors || propertyIsEnumerable.call(O, key)) {
+ result.push(TO_ENTRIES ? [key, O[key]] : O[key]);
+ }
+ }
+ return result;
+ };
+ };
- var _ref13 = _slicedToArray(_ref12, 2);
+ var objectToArray = {
+ // `Object.entries` method
+ // https://tc39.github.io/ecma262/#sec-object.entries
+ entries: createMethod$3(true),
+ // `Object.values` method
+ // https://tc39.github.io/ecma262/#sec-object.values
+ values: createMethod$3(false)
+ };
- var _key2 = _ref13[0];
- var _value2 = _ref13[1];
+ var $entries = objectToArray.entries;
- htmlAttributes.push(_key2 + '="' + Utils.escapeHTML(_value2) + '"');
- }
- } catch (err) {
- _didIteratorError11 = true;
- _iteratorError11 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion11 && _iterator11.return) {
- _iterator11.return();
- }
- } finally {
- if (_didIteratorError11) {
- throw _iteratorError11;
- }
- }
- }
- }
+ // `Object.entries` method
+ // https://tc39.github.io/ecma262/#sec-object.entries
+ _export({ target: 'Object', stat: true }, {
+ entries: function entries(O) {
+ return $entries(O);
+ }
+ });
- if (item._data && !$.isEmptyObject(item._data)) {
- var _iteratorNormalCompletion12 = true;
- var _didIteratorError12 = false;
- var _iteratorError12 = undefined;
+ var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag');
+ // ES3 wrong here
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
- try {
- for (var _iterator12 = Object.entries(item._data)[Symbol.iterator](), _step12; !(_iteratorNormalCompletion12 = (_step12 = _iterator12.next()).done); _iteratorNormalCompletion12 = true) {
- var _ref14 = _step12.value;
+ // fallback for IE11 Script Access Denied error
+ var tryGet = function (it, key) {
+ try {
+ return it[key];
+ } catch (error) { /* empty */ }
+ };
- var _ref15 = _slicedToArray(_ref14, 2);
+ // getting tag from ES6+ `Object.prototype.toString`
+ var classof = function (it) {
+ var O, tag, result;
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
+ // @@toStringTag case
+ : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG$1)) == 'string' ? tag
+ // builtinTag case
+ : CORRECT_ARGUMENTS ? classofRaw(O)
+ // ES3 arguments fallback
+ : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
+ };
- var k = _ref15[0];
- var v = _ref15[1];
+ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
+ var test$1 = {};
- // ignore data-index
- if (k === 'index') {
- return;
- }
- data_ += ' data-' + k + '="' + v + '"';
- }
- } catch (err) {
- _didIteratorError12 = true;
- _iteratorError12 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion12 && _iterator12.return) {
- _iterator12.return();
- }
- } finally {
- if (_didIteratorError12) {
- throw _iteratorError12;
- }
- }
- }
- }
+ test$1[TO_STRING_TAG$2] = 'z';
- html.push('<tr', Utils.sprintf(' %s', htmlAttributes.length ? htmlAttributes.join(' ') : undefined), Utils.sprintf(' id="%s"', Array.isArray(item) ? undefined : item._id), Utils.sprintf(' class="%s"', style.classes || (Array.isArray(item) ? undefined : item._class)), ' data-index="' + i + '"', Utils.sprintf(' data-uniqueid="%s"', item[this.options.uniqueId]), Utils.sprintf('%s', data_), '>');
+ // `Object.prototype.toString` method implementation
+ // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
+ var objectToString = String(test$1) !== '[object z]' ? function toString() {
+ return '[object ' + classof(this) + ']';
+ } : test$1.toString;
- if (this.options.cardView) {
- html.push('<td colspan="' + this.header.fields.length + '"><div class="card-views">');
- }
+ var ObjectPrototype$2 = Object.prototype;
- if (!this.options.cardView && this.options.detailView) {
- html.push('<td>');
+ // `Object.prototype.toString` method
+ // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
+ if (objectToString !== ObjectPrototype$2.toString) {
+ redefine(ObjectPrototype$2, 'toString', objectToString, { unsafe: true });
+ }
- if (Utils.calculateObjectValue(null, this.options.detailFilter, [i, item])) {
- html.push('\n <a class="detail-icon" href="#">\n <i class="' + this.options.iconsPrefix + ' ' + this.options.icons.detailOpen + '"></i>\n </a>\n ');
- }
+ var trim$1 = stringTrim.trim;
- html.push('</td>');
- }
- this.header.fields.forEach(function (field, j) {
- var text = '';
- var value_ = Utils.getItemField(item, field, _this7.options.escape);
- var value = '';
- var type = '';
- var cellStyle = {};
- var id_ = '';
- var class_ = _this7.header.classes[j];
- var style_ = '';
- var data_ = '';
- var rowspan_ = '';
- var colspan_ = '';
- var title_ = '';
- var column = _this7.columns[j];
+ var nativeParseFloat = global_1.parseFloat;
+ var FORCED$2 = 1 / nativeParseFloat(whitespaces + '-0') !== -Infinity;
- if (_this7.fromHtml && typeof value_ === 'undefined') {
- if (!column.checkbox && !column.radio) {
- return;
- }
- }
+ // `parseFloat` method
+ // https://tc39.github.io/ecma262/#sec-parsefloat-string
+ var _parseFloat = FORCED$2 ? function parseFloat(string) {
+ var trimmedString = trim$1(String(string));
+ var result = nativeParseFloat(trimmedString);
+ return result === 0 && trimmedString.charAt(0) == '-' ? -0 : result;
+ } : nativeParseFloat;
- if (!column.visible) {
- return;
- }
+ // `parseFloat` method
+ // https://tc39.github.io/ecma262/#sec-parsefloat-string
+ _export({ global: true, forced: parseFloat != _parseFloat }, {
+ parseFloat: _parseFloat
+ });
- if (_this7.options.cardView && !column.cardVisible) {
- return;
- }
+ var trim$2 = stringTrim.trim;
- if (column.escape) {
- value_ = Utils.escapeHTML(value_);
- }
- if (csses.concat([_this7.header.styles[j]]).length) {
- style_ = ' style="' + csses.concat([_this7.header.styles[j]]).join('; ') + '"';
- }
- // handle td's id and class
- if (item['_' + field + '_id']) {
- id_ = Utils.sprintf(' id="%s"', item['_' + field + '_id']);
- }
- if (item['_' + field + '_class']) {
- class_ = Utils.sprintf(' class="%s"', item['_' + field + '_class']);
- }
- if (item['_' + field + '_rowspan']) {
- rowspan_ = Utils.sprintf(' rowspan="%s"', item['_' + field + '_rowspan']);
- }
- if (item['_' + field + '_colspan']) {
- colspan_ = Utils.sprintf(' colspan="%s"', item['_' + field + '_colspan']);
- }
- if (item['_' + field + '_title']) {
- title_ = Utils.sprintf(' title="%s"', item['_' + field + '_title']);
- }
- cellStyle = Utils.calculateObjectValue(_this7.header, _this7.header.cellStyles[j], [value_, item, i, field], cellStyle);
- if (cellStyle.classes) {
- class_ = ' class="' + cellStyle.classes + '"';
- }
- if (cellStyle.css) {
- var csses_ = [];
- var _iteratorNormalCompletion13 = true;
- var _didIteratorError13 = false;
- var _iteratorError13 = undefined;
+ var nativeParseInt = global_1.parseInt;
+ var hex = /^[+-]?0[Xx]/;
+ var FORCED$3 = nativeParseInt(whitespaces + '08') !== 8 || nativeParseInt(whitespaces + '0x16') !== 22;
- try {
- for (var _iterator13 = Object.entries(cellStyle.css)[Symbol.iterator](), _step13; !(_iteratorNormalCompletion13 = (_step13 = _iterator13.next()).done); _iteratorNormalCompletion13 = true) {
- var _ref16 = _step13.value;
+ // `parseInt` method
+ // https://tc39.github.io/ecma262/#sec-parseint-string-radix
+ var _parseInt = FORCED$3 ? function parseInt(string, radix) {
+ var S = trim$2(String(string));
+ return nativeParseInt(S, (radix >>> 0) || (hex.test(S) ? 16 : 10));
+ } : nativeParseInt;
- var _ref17 = _slicedToArray(_ref16, 2);
+ // `parseInt` method
+ // https://tc39.github.io/ecma262/#sec-parseint-string-radix
+ _export({ global: true, forced: parseInt != _parseInt }, {
+ parseInt: _parseInt
+ });
- var _key3 = _ref17[0];
- var _value3 = _ref17[1];
+ // `RegExp.prototype.flags` getter implementation
+ // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
+ var regexpFlags = function () {
+ var that = anObject(this);
+ var result = '';
+ if (that.global) result += 'g';
+ if (that.ignoreCase) result += 'i';
+ if (that.multiline) result += 'm';
+ if (that.dotAll) result += 's';
+ if (that.unicode) result += 'u';
+ if (that.sticky) result += 'y';
+ return result;
+ };
- csses_.push(_key3 + ': ' + _value3);
- }
- } catch (err) {
- _didIteratorError13 = true;
- _iteratorError13 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion13 && _iterator13.return) {
- _iterator13.return();
- }
- } finally {
- if (_didIteratorError13) {
- throw _iteratorError13;
- }
- }
- }
+ var TO_STRING = 'toString';
+ var RegExpPrototype = RegExp.prototype;
+ var nativeToString = RegExpPrototype[TO_STRING];
- style_ = ' style="' + csses_.concat(_this7.header.styles[j]).join('; ') + '"';
- }
+ var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
+ // FF44- RegExp#toString has a wrong name
+ var INCORRECT_NAME = nativeToString.name != TO_STRING;
- value = Utils.calculateObjectValue(column, _this7.header.formatters[j], [value_, item, i, field], value_);
+ // `RegExp.prototype.toString` method
+ // https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring
+ if (NOT_GENERIC || INCORRECT_NAME) {
+ redefine(RegExp.prototype, TO_STRING, function toString() {
+ var R = anObject(this);
+ var p = String(R.source);
+ var rf = R.flags;
+ var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? regexpFlags.call(R) : rf);
+ return '/' + p + '/' + f;
+ }, { unsafe: true });
+ }
- if (item['_' + field + '_data'] && !$.isEmptyObject(item['_' + field + '_data'])) {
- var _iteratorNormalCompletion14 = true;
- var _didIteratorError14 = false;
- var _iteratorError14 = undefined;
+ var MATCH = wellKnownSymbol('match');
- try {
- for (var _iterator14 = Object.entries(item['_' + field + '_data'])[Symbol.iterator](), _step14; !(_iteratorNormalCompletion14 = (_step14 = _iterator14.next()).done); _iteratorNormalCompletion14 = true) {
- var _ref18 = _step14.value;
+ // `IsRegExp` abstract operation
+ // https://tc39.github.io/ecma262/#sec-isregexp
+ var isRegexp = function (it) {
+ var isRegExp;
+ return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp');
+ };
- var _ref19 = _slicedToArray(_ref18, 2);
+ var notARegexp = function (it) {
+ if (isRegexp(it)) {
+ throw TypeError("The method doesn't accept regular expressions");
+ } return it;
+ };
- var _k2 = _ref19[0];
- var _v = _ref19[1];
+ var MATCH$1 = wellKnownSymbol('match');
- // ignore data-index
- if (_k2 === 'index') {
- return;
- }
- data_ += ' data-' + _k2 + '="' + _v + '"';
- }
- } catch (err) {
- _didIteratorError14 = true;
- _iteratorError14 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion14 && _iterator14.return) {
- _iterator14.return();
- }
- } finally {
- if (_didIteratorError14) {
- throw _iteratorError14;
- }
- }
- }
- }
+ var correctIsRegexpLogic = function (METHOD_NAME) {
+ var regexp = /./;
+ try {
+ '/./'[METHOD_NAME](regexp);
+ } catch (e) {
+ try {
+ regexp[MATCH$1] = false;
+ return '/./'[METHOD_NAME](regexp);
+ } catch (f) { /* empty */ }
+ } return false;
+ };
- if (column.checkbox || column.radio) {
- type = column.checkbox ? 'checkbox' : type;
- type = column.radio ? 'radio' : type;
+ // `String.prototype.includes` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype.includes
+ _export({ target: 'String', proto: true, forced: !correctIsRegexpLogic('includes') }, {
+ includes: function includes(searchString /* , position = 0 */) {
+ return !!~String(requireObjectCoercible(this))
+ .indexOf(notARegexp(searchString), arguments.length > 1 ? arguments[1] : undefined);
+ }
+ });
- var c = column['class'] || '';
- var isChecked = value === true || value_ || value && value.checked;
- var isDisabled = !column.checkboxEnabled || value && value.disabled;
+ // `String.prototype.{ codePointAt, at }` methods implementation
+ var createMethod$4 = function (CONVERT_TO_STRING) {
+ return function ($this, pos) {
+ var S = String(requireObjectCoercible($this));
+ var position = toInteger(pos);
+ var size = S.length;
+ var first, second;
+ if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
+ first = S.charCodeAt(position);
+ return first < 0xD800 || first > 0xDBFF || position + 1 === size
+ || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
+ ? CONVERT_TO_STRING ? S.charAt(position) : first
+ : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
+ };
+ };
- text = [_this7.options.cardView ? '<div class="card-view ' + c + '">' : '<td class="bs-checkbox ' + c + '">', '<input\n data-index="' + i + '"\n name="' + _this7.options.selectItemName + '"\n type="' + type + '"\n ' + Utils.sprintf('value="%s"', item[_this7.options.idField]) + '\n ' + Utils.sprintf('checked="%s"', isChecked ? 'checked' : undefined) + '\n ' + Utils.sprintf('disabled="%s"', isDisabled ? 'disabled' : undefined) + ' />', _this7.header.formatters[j] && typeof value === 'string' ? value : '', _this7.options.cardView ? '</div>' : '</td>'].join('');
+ var stringMultibyte = {
+ // `String.prototype.codePointAt` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat
+ codeAt: createMethod$4(false),
+ // `String.prototype.at` method
+ // https://github.com/mathiasbynens/String.prototype.at
+ charAt: createMethod$4(true)
+ };
- item[_this7.header.stateField] = value === true || !!value_ || value && value.checked;
- } else {
- value = typeof value === 'undefined' || value === null ? _this7.options.undefinedText : value;
+ var charAt = stringMultibyte.charAt;
- if (_this7.options.cardView) {
- var cardTitle = _this7.options.showHeader ? '<span class="title"' + style + '>' + Utils.getFieldTitle(_this7.columns, field) + '</span>' : '';
- text = '<div class="card-view">' + cardTitle + '<span class="value">' + value + '</span></div>';
- if (_this7.options.smartDisplay && value === '') {
- text = '<div class="card-view"></div>';
- }
- } else {
- text = '<td' + id_ + class_ + style_ + data_ + rowspan_ + colspan_ + title_ + '>' + value + '</td>';
- }
- }
+ var STRING_ITERATOR = 'String Iterator';
+ var setInternalState$2 = internalState.set;
+ var getInternalState$2 = internalState.getterFor(STRING_ITERATOR);
- html.push(text);
- });
+ // `String.prototype[@@iterator]` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator
+ defineIterator(String, 'String', function (iterated) {
+ setInternalState$2(this, {
+ type: STRING_ITERATOR,
+ string: String(iterated),
+ index: 0
+ });
+ // `%StringIteratorPrototype%.next` method
+ // https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next
+ }, function next() {
+ var state = getInternalState$2(this);
+ var string = state.string;
+ var index = state.index;
+ var point;
+ if (index >= string.length) return { value: undefined, done: true };
+ point = charAt(string, index);
+ state.index += point.length;
+ return { value: point, done: false };
+ });
- if (this.options.cardView) {
- html.push('</div></td>');
- }
- html.push('</tr>');
+ var nativeExec = RegExp.prototype.exec;
+ // This always refers to the native implementation, because the
+ // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
+ // which loads this file before patching the method.
+ var nativeReplace = String.prototype.replace;
- return html.join('');
- }
- }, {
- key: 'initBody',
- value: function initBody(fixedScroll) {
- var _this8 = this;
+ var patchedExec = nativeExec;
- var data = this.getData();
+ var UPDATES_LAST_INDEX_WRONG = (function () {
+ var re1 = /a/;
+ var re2 = /b*/g;
+ nativeExec.call(re1, 'a');
+ nativeExec.call(re2, 'a');
+ return re1.lastIndex !== 0 || re2.lastIndex !== 0;
+ })();
- this.trigger('pre-body', data);
+ // nonparticipating capturing group, copied from es5-shim's String#split patch.
+ var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
- this.$body = this.$el.find('>tbody');
- if (!this.$body.length) {
- this.$body = $('<tbody></tbody>').appendTo(this.$el);
- }
+ var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;
- // Fix #389 Bootstrap-table-flatJSON is not working
- if (!this.options.pagination || this.options.sidePagination === 'server') {
- this.pageFrom = 1;
- this.pageTo = data.length;
- }
+ if (PATCH) {
+ patchedExec = function exec(str) {
+ var re = this;
+ var lastIndex, reCopy, match, i;
- var trFragments = $(document.createDocumentFragment());
- var hasTr = false;
+ if (NPCG_INCLUDED) {
+ reCopy = new RegExp('^' + re.source + '$(?!\\s)', regexpFlags.call(re));
+ }
+ if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
- for (var i = this.pageFrom - 1; i < this.pageTo; i++) {
- var item = data[i];
- var tr = this.initRow(item, i, data, trFragments);
- hasTr = hasTr || !!tr;
- if (tr && typeof tr === 'string') {
- trFragments.append(tr);
- }
- }
+ match = nativeExec.call(re, str);
- // show no records
- if (!hasTr) {
- this.$body.html('<tr class="no-records-found">' + Utils.sprintf('<td colspan="%s">%s</td>', this.$header.find('th').length, this.options.formatNoMatches()) + '</tr>');
- } else {
- this.$body.html(trFragments);
- }
+ if (UPDATES_LAST_INDEX_WRONG && match) {
+ re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
+ }
+ if (NPCG_INCLUDED && match && match.length > 1) {
+ // Fix browsers whose `exec` methods don't consistently return `undefined`
+ // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
+ nativeReplace.call(match[0], reCopy, function () {
+ for (i = 1; i < arguments.length - 2; i++) {
+ if (arguments[i] === undefined) match[i] = undefined;
+ }
+ });
+ }
- if (!fixedScroll) {
- this.scrollTo(0);
- }
+ return match;
+ };
+ }
- // click to select by column
- this.$body.find('> tr[data-index] > td').off('click dblclick').on('click dblclick', function (_ref20) {
- var currentTarget = _ref20.currentTarget,
- type = _ref20.type,
- target = _ref20.target;
+ var regexpExec = patchedExec;
- var $td = $(currentTarget);
- var $tr = $td.parent();
- var item = _this8.data[$tr.data('index')];
- var index = $td[0].cellIndex;
- var fields = _this8.getVisibleFields();
- var field = fields[_this8.options.detailView && !_this8.options.cardView ? index - 1 : index];
- var column = _this8.columns[_this8.fieldsColumnsIndex[field]];
- var value = Utils.getItemField(item, field, _this8.options.escape);
+ var SPECIES$3 = wellKnownSymbol('species');
- if ($td.find('.detail-icon').length) {
- return;
- }
+ var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
+ // #replace needs built-in support for named groups.
+ // #match works fine because it just return the exec results, even if it has
+ // a "grops" property.
+ var re = /./;
+ re.exec = function () {
+ var result = [];
+ result.groups = { a: '7' };
+ return result;
+ };
+ return ''.replace(re, '$<a>') !== '7';
+ });
- _this8.trigger(type === 'click' ? 'click-cell' : 'dbl-click-cell', field, value, item, $td);
- _this8.trigger(type === 'click' ? 'click-row' : 'dbl-click-row', item, $tr, field);
+ // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
+ // Weex JS has frozen built-in prototypes, so use try / catch wrapper
+ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
+ var re = /(?:)/;
+ var originalExec = re.exec;
+ re.exec = function () { return originalExec.apply(this, arguments); };
+ var result = 'ab'.split(re);
+ return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
+ });
- // if click to select - then trigger the checkbox/radio click
- if (type === 'click' && _this8.options.clickToSelect && column.clickToSelect && !_this8.options.ignoreClickToSelectOn(target)) {
- var $selectItem = $tr.find(Utils.sprintf('[name="%s"]', _this8.options.selectItemName));
- if ($selectItem.length) {
- $selectItem[0].click(); // #144: .trigger('click') bug
- }
- }
- });
+ var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
+ var SYMBOL = wellKnownSymbol(KEY);
- this.$body.find('> tr[data-index] > td > .detail-icon').off('click').on('click', function (e) {
- e.preventDefault();
+ var DELEGATES_TO_SYMBOL = !fails(function () {
+ // String methods call symbol-named RegEp methods
+ var O = {};
+ O[SYMBOL] = function () { return 7; };
+ return ''[KEY](O) != 7;
+ });
- var $this = $(e.currentTarget); // Fix #980 Detail view, when searching, returns wrong row
- var $tr = $this.parent().parent();
- var index = $tr.data('index');
- var row = data[index];
+ var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
+ // Symbol-named RegExp methods call .exec
+ var execCalled = false;
+ var re = /a/;
+ re.exec = function () { execCalled = true; return null; };
- // remove and update
- if ($tr.next().is('tr.detail-view')) {
- $this.find('i').attr('class', Utils.sprintf('%s %s', _this8.options.iconsPrefix, _this8.options.icons.detailOpen));
- _this8.trigger('collapse-row', index, row, $tr.next());
- $tr.next().remove();
- } else {
- $this.find('i').attr('class', Utils.sprintf('%s %s', _this8.options.iconsPrefix, _this8.options.icons.detailClose));
- $tr.after(Utils.sprintf('<tr class="detail-view"><td colspan="%s"></td></tr>', $tr.find('td').length));
- var $element = $tr.next().find('td');
- var content = Utils.calculateObjectValue(_this8.options, _this8.options.detailFormatter, [index, row, $element], '');
- if ($element.length === 1) {
- $element.append(content);
- }
- _this8.trigger('expand-row', index, row, $element);
- }
- _this8.resetView();
- return false;
- });
+ if (KEY === 'split') {
+ // RegExp[@@split] doesn't call the regex's exec method, but first creates
+ // a new one. We need to return the patched regex when creating the new one.
+ re.constructor = {};
+ re.constructor[SPECIES$3] = function () { return re; };
+ }
- this.$selectItem = this.$body.find(Utils.sprintf('[name="%s"]', this.options.selectItemName));
- this.$selectItem.off('click').on('click', function (e) {
- e.stopImmediatePropagation();
+ re[SYMBOL]('');
+ return !execCalled;
+ });
- var $this = $(e.currentTarget);
- _this8.check_($this.prop('checked'), $this.data('index'));
- });
+ if (
+ !DELEGATES_TO_SYMBOL ||
+ !DELEGATES_TO_EXEC ||
+ (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||
+ (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
+ ) {
+ var nativeRegExpMethod = /./[SYMBOL];
+ var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
+ if (regexp.exec === regexpExec) {
+ if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
+ // The native String method already delegates to @@method (this
+ // polyfilled function), leasing to infinite recursion.
+ // We avoid it by directly calling the native @@method method.
+ return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
+ }
+ return { done: true, value: nativeMethod.call(str, regexp, arg2) };
+ }
+ return { done: false };
+ });
+ var stringMethod = methods[0];
+ var regexMethod = methods[1];
- this.header.events.forEach(function (_events, i) {
- var events = _events;
- if (!events) {
- return;
- }
- // fix bug, if events is defined with namespace
- if (typeof events === 'string') {
- events = Utils.calculateObjectValue(null, events);
- }
+ redefine(String.prototype, KEY, stringMethod);
+ redefine(RegExp.prototype, SYMBOL, length == 2
+ // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
+ // 21.2.5.11 RegExp.prototype[@@split](string, limit)
+ ? function (string, arg) { return regexMethod.call(string, this, arg); }
+ // 21.2.5.6 RegExp.prototype[@@match](string)
+ // 21.2.5.9 RegExp.prototype[@@search](string)
+ : function (string) { return regexMethod.call(string, this); }
+ );
+ if (sham) hide(RegExp.prototype[SYMBOL], 'sham', true);
+ }
+ };
- var field = _this8.header.fields[i];
- var fieldIndex = _this8.getVisibleFields().indexOf(field);
+ var charAt$1 = stringMultibyte.charAt;
- if (fieldIndex === -1) {
- return;
- }
+ // `AdvanceStringIndex` abstract operation
+ // https://tc39.github.io/ecma262/#sec-advancestringindex
+ var advanceStringIndex = function (S, index, unicode) {
+ return index + (unicode ? charAt$1(S, index).length : 1);
+ };
- if (_this8.options.detailView && !_this8.options.cardView) {
- fieldIndex += 1;
- }
+ // `RegExpExec` abstract operation
+ // https://tc39.github.io/ecma262/#sec-regexpexec
+ var regexpExecAbstract = function (R, S) {
+ var exec = R.exec;
+ if (typeof exec === 'function') {
+ var result = exec.call(R, S);
+ if (typeof result !== 'object') {
+ throw TypeError('RegExp exec method returned something other than an Object or null');
+ }
+ return result;
+ }
- var _loop = function _loop(key, event) {
- _this8.$body.find('>tr:not(.no-records-found)').each(function (i, tr) {
- var $tr = $(tr);
- var $td = $tr.find(_this8.options.cardView ? '.card-view' : 'td').eq(fieldIndex);
- var index = key.indexOf(' ');
- var name = key.substring(0, index);
- var el = key.substring(index + 1);
+ if (classofRaw(R) !== 'RegExp') {
+ throw TypeError('RegExp#exec called on incompatible receiver');
+ }
- $td.find(el).off(name).on(name, function (e) {
- var index = $tr.data('index');
- var row = _this8.data[index];
- var value = row[field];
+ return regexpExec.call(R, S);
+ };
- event.apply(_this8, [e, value, row, index]);
- });
- });
- };
+ var max$3 = Math.max;
+ var min$3 = Math.min;
+ var floor$1 = Math.floor;
+ var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g;
+ var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g;
- var _iteratorNormalCompletion15 = true;
- var _didIteratorError15 = false;
- var _iteratorError15 = undefined;
+ var maybeToString = function (it) {
+ return it === undefined ? it : String(it);
+ };
- try {
- for (var _iterator15 = Object.entries(events)[Symbol.iterator](), _step15; !(_iteratorNormalCompletion15 = (_step15 = _iterator15.next()).done); _iteratorNormalCompletion15 = true) {
- var _ref21 = _step15.value;
+ // @@replace logic
+ fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative) {
+ return [
+ // `String.prototype.replace` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype.replace
+ function replace(searchValue, replaceValue) {
+ var O = requireObjectCoercible(this);
+ var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
+ return replacer !== undefined
+ ? replacer.call(searchValue, O, replaceValue)
+ : nativeReplace.call(String(O), searchValue, replaceValue);
+ },
+ // `RegExp.prototype[@@replace]` method
+ // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
+ function (regexp, replaceValue) {
+ var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
+ if (res.done) return res.value;
- var _ref22 = _slicedToArray(_ref21, 2);
+ var rx = anObject(regexp);
+ var S = String(this);
- var key = _ref22[0];
- var event = _ref22[1];
+ var functionalReplace = typeof replaceValue === 'function';
+ if (!functionalReplace) replaceValue = String(replaceValue);
- _loop(key, event);
- }
- } catch (err) {
- _didIteratorError15 = true;
- _iteratorError15 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion15 && _iterator15.return) {
- _iterator15.return();
- }
- } finally {
- if (_didIteratorError15) {
- throw _iteratorError15;
- }
- }
- }
- });
+ var global = rx.global;
+ if (global) {
+ var fullUnicode = rx.unicode;
+ rx.lastIndex = 0;
+ }
+ var results = [];
+ while (true) {
+ var result = regexpExecAbstract(rx, S);
+ if (result === null) break;
- this.updateSelected();
- this.resetView();
+ results.push(result);
+ if (!global) break;
- this.trigger('post-body', data);
- }
- }, {
- key: 'initServer',
- value: function initServer(silent, query, url) {
- var _this9 = this;
+ var matchStr = String(result[0]);
+ if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
+ }
- var data = {};
- var index = this.header.fields.indexOf(this.options.sortName);
+ var accumulatedResult = '';
+ var nextSourcePosition = 0;
+ for (var i = 0; i < results.length; i++) {
+ result = results[i];
- var params = {
- searchText: this.searchText,
- sortName: this.options.sortName,
- sortOrder: this.options.sortOrder
- };
+ var matched = String(result[0]);
+ var position = max$3(min$3(toInteger(result.index), S.length), 0);
+ var captures = [];
+ // NOTE: This is equivalent to
+ // captures = result.slice(1).map(maybeToString)
+ // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
+ // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
+ // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
+ for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
+ var namedCaptures = result.groups;
+ if (functionalReplace) {
+ var replacerArgs = [matched].concat(captures, position, S);
+ if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
+ var replacement = String(replaceValue.apply(undefined, replacerArgs));
+ } else {
+ replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
+ }
+ if (position >= nextSourcePosition) {
+ accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
+ nextSourcePosition = position + matched.length;
+ }
+ }
+ return accumulatedResult + S.slice(nextSourcePosition);
+ }
+ ];
- if (this.header.sortNames[index]) {
- params.sortName = this.header.sortNames[index];
- }
+ // https://tc39.github.io/ecma262/#sec-getsubstitution
+ function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
+ var tailPos = position + matched.length;
+ var m = captures.length;
+ var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
+ if (namedCaptures !== undefined) {
+ namedCaptures = toObject(namedCaptures);
+ symbols = SUBSTITUTION_SYMBOLS;
+ }
+ return nativeReplace.call(replacement, symbols, function (match, ch) {
+ var capture;
+ switch (ch.charAt(0)) {
+ case '$': return '$';
+ case '&': return matched;
+ case '`': return str.slice(0, position);
+ case "'": return str.slice(tailPos);
+ case '<':
+ capture = namedCaptures[ch.slice(1, -1)];
+ break;
+ default: // \d\d?
+ var n = +ch;
+ if (n === 0) return match;
+ if (n > m) {
+ var f = floor$1(n / 10);
+ if (f === 0) return match;
+ if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
+ return match;
+ }
+ capture = captures[n - 1];
+ }
+ return capture === undefined ? '' : capture;
+ });
+ }
+ });
- if (this.options.pagination && this.options.sidePagination === 'server') {
- params.pageSize = this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize;
- params.pageNumber = this.options.pageNumber;
- }
+ // `SameValue` abstract operation
+ // https://tc39.github.io/ecma262/#sec-samevalue
+ var sameValue = Object.is || function is(x, y) {
+ // eslint-disable-next-line no-self-compare
+ return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
+ };
- if (!(url || this.options.url) && !this.options.ajax) {
- return;
- }
+ // @@search logic
+ fixRegexpWellKnownSymbolLogic('search', 1, function (SEARCH, nativeSearch, maybeCallNative) {
+ return [
+ // `String.prototype.search` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype.search
+ function search(regexp) {
+ var O = requireObjectCoercible(this);
+ var searcher = regexp == undefined ? undefined : regexp[SEARCH];
+ return searcher !== undefined ? searcher.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
+ },
+ // `RegExp.prototype[@@search]` method
+ // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search
+ function (regexp) {
+ var res = maybeCallNative(nativeSearch, regexp, this);
+ if (res.done) return res.value;
- if (this.options.queryParamsType === 'limit') {
- params = {
- search: params.searchText,
- sort: params.sortName,
- order: params.sortOrder
- };
+ var rx = anObject(regexp);
+ var S = String(this);
- if (this.options.pagination && this.options.sidePagination === 'server') {
- params.offset = this.options.pageSize === this.options.formatAllRows() ? 0 : this.options.pageSize * (this.options.pageNumber - 1);
- params.limit = this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize;
- if (params.limit === 0) {
- delete params.limit;
- }
- }
- }
+ var previousLastIndex = rx.lastIndex;
+ if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;
+ var result = regexpExecAbstract(rx, S);
+ if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;
+ return result === null ? -1 : result.index;
+ }
+ ];
+ });
- if (!$.isEmptyObject(this.filterColumnsPartial)) {
- params.filter = JSON.stringify(this.filterColumnsPartial, null);
- }
+ var SPECIES$4 = wellKnownSymbol('species');
- data = Utils.calculateObjectValue(this.options, this.options.queryParams, [params], data);
+ // `SpeciesConstructor` abstract operation
+ // https://tc39.github.io/ecma262/#sec-speciesconstructor
+ var speciesConstructor = function (O, defaultConstructor) {
+ var C = anObject(O).constructor;
+ var S;
+ return C === undefined || (S = anObject(C)[SPECIES$4]) == undefined ? defaultConstructor : aFunction$1(S);
+ };
- $.extend(data, query || {});
+ var arrayPush = [].push;
+ var min$4 = Math.min;
+ var MAX_UINT32 = 0xFFFFFFFF;
- // false to stop request
- if (data === false) {
- return;
- }
+ // babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError
+ var SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); });
- if (!silent) {
- this.$tableLoading.show();
- }
- var request = $.extend({}, Utils.calculateObjectValue(null, this.options.ajaxOptions), {
- type: this.options.method,
- url: url || this.options.url,
- data: this.options.contentType === 'application/json' && this.options.method === 'post' ? JSON.stringify(data) : data,
- cache: this.options.cache,
- contentType: this.options.contentType,
- dataType: this.options.dataType,
- success: function success(_res) {
- var res = Utils.calculateObjectValue(_this9.options, _this9.options.responseHandler, [_res], _res);
+ // @@split logic
+ fixRegexpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) {
+ var internalSplit;
+ if (
+ 'abbc'.split(/(b)*/)[1] == 'c' ||
+ 'test'.split(/(?:)/, -1).length != 4 ||
+ 'ab'.split(/(?:ab)*/).length != 2 ||
+ '.'.split(/(.?)(.?)/).length != 4 ||
+ '.'.split(/()()/).length > 1 ||
+ ''.split(/.?/).length
+ ) {
+ // based on es5-shim implementation, need to rework it
+ internalSplit = function (separator, limit) {
+ var string = String(requireObjectCoercible(this));
+ var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
+ if (lim === 0) return [];
+ if (separator === undefined) return [string];
+ // If `separator` is not a regex, use native split
+ if (!isRegexp(separator)) {
+ return nativeSplit.call(string, separator, lim);
+ }
+ var output = [];
+ var flags = (separator.ignoreCase ? 'i' : '') +
+ (separator.multiline ? 'm' : '') +
+ (separator.unicode ? 'u' : '') +
+ (separator.sticky ? 'y' : '');
+ var lastLastIndex = 0;
+ // Make `global` and avoid `lastIndex` issues by working with a copy
+ var separatorCopy = new RegExp(separator.source, flags + 'g');
+ var match, lastIndex, lastLength;
+ while (match = regexpExec.call(separatorCopy, string)) {
+ lastIndex = separatorCopy.lastIndex;
+ if (lastIndex > lastLastIndex) {
+ output.push(string.slice(lastLastIndex, match.index));
+ if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1));
+ lastLength = match[0].length;
+ lastLastIndex = lastIndex;
+ if (output.length >= lim) break;
+ }
+ if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
+ }
+ if (lastLastIndex === string.length) {
+ if (lastLength || !separatorCopy.test('')) output.push('');
+ } else output.push(string.slice(lastLastIndex));
+ return output.length > lim ? output.slice(0, lim) : output;
+ };
+ // Chakra, V8
+ } else if ('0'.split(undefined, 0).length) {
+ internalSplit = function (separator, limit) {
+ return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit);
+ };
+ } else internalSplit = nativeSplit;
- _this9.load(res);
- _this9.trigger('load-success', res);
- if (!silent) {
- _this9.$tableLoading.hide();
- }
- },
- error: function error(jqXHR) {
- var data = [];
- if (_this9.options.sidePagination === 'server') {
- data = {};
- data[_this9.options.totalField] = 0;
- data[_this9.options.dataField] = [];
- }
- _this9.load(data);
- _this9.trigger('load-error', jqXHR.status, jqXHR);
- if (!silent) _this9.$tableLoading.hide();
- }
- });
+ return [
+ // `String.prototype.split` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype.split
+ function split(separator, limit) {
+ var O = requireObjectCoercible(this);
+ var splitter = separator == undefined ? undefined : separator[SPLIT];
+ return splitter !== undefined
+ ? splitter.call(separator, O, limit)
+ : internalSplit.call(String(O), separator, limit);
+ },
+ // `RegExp.prototype[@@split]` method
+ // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split
+ //
+ // NOTE: This cannot be properly polyfilled in engines that don't support
+ // the 'y' flag.
+ function (regexp, limit) {
+ var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit);
+ if (res.done) return res.value;
- if (this.options.ajax) {
- Utils.calculateObjectValue(this, this.options.ajax, [request], null);
- } else {
- if (this._xhr && this._xhr.readyState !== 4) {
- this._xhr.abort();
- }
- this._xhr = $.ajax(request);
- }
- }
- }, {
- key: 'initSearchText',
- value: function initSearchText() {
- if (this.options.search) {
- this.searchText = '';
- if (this.options.searchText !== '') {
- var $search = this.$toolbar.find('.search input');
- $search.val(this.options.searchText);
- this.onSearch({ currentTarget: $search, firedByInitSearchText: true });
- }
- }
- }
- }, {
- key: 'getCaret',
- value: function getCaret() {
- var _this10 = this;
+ var rx = anObject(regexp);
+ var S = String(this);
+ var C = speciesConstructor(rx, RegExp);
- this.$header.find('th').each(function (i, th) {
- $(th).find('.sortable').removeClass('desc asc').addClass($(th).data('field') === _this10.options.sortName ? _this10.options.sortOrder : 'both');
- });
- }
- }, {
- key: 'updateSelected',
- value: function updateSelected() {
- var checkAll = this.$selectItem.filter(':enabled').length && this.$selectItem.filter(':enabled').length === this.$selectItem.filter(':enabled').filter(':checked').length;
+ var unicodeMatching = rx.unicode;
+ var flags = (rx.ignoreCase ? 'i' : '') +
+ (rx.multiline ? 'm' : '') +
+ (rx.unicode ? 'u' : '') +
+ (SUPPORTS_Y ? 'y' : 'g');
- this.$selectAll.add(this.$selectAll_).prop('checked', checkAll);
+ // ^(? + rx + ) is needed, in combination with some S slicing, to
+ // simulate the 'y' flag.
+ var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags);
+ var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
+ if (lim === 0) return [];
+ if (S.length === 0) return regexpExecAbstract(splitter, S) === null ? [S] : [];
+ var p = 0;
+ var q = 0;
+ var A = [];
+ while (q < S.length) {
+ splitter.lastIndex = SUPPORTS_Y ? q : 0;
+ var z = regexpExecAbstract(splitter, SUPPORTS_Y ? S : S.slice(q));
+ var e;
+ if (
+ z === null ||
+ (e = min$4(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p
+ ) {
+ q = advanceStringIndex(S, q, unicodeMatching);
+ } else {
+ A.push(S.slice(p, q));
+ if (A.length === lim) return A;
+ for (var i = 1; i <= z.length - 1; i++) {
+ A.push(z[i]);
+ if (A.length === lim) return A;
+ }
+ q = p = e;
+ }
+ }
+ A.push(S.slice(p));
+ return A;
+ }
+ ];
+ }, !SUPPORTS_Y);
- this.$selectItem.each(function (i, el) {
- $(el).closest('tr')[$(el).prop('checked') ? 'addClass' : 'removeClass']('selected');
- });
- }
- }, {
- key: 'updateRows',
- value: function updateRows() {
- var _this11 = this;
+ var non = '\u200B\u0085\u180E';
- this.$selectItem.each(function (i, el) {
- _this11.data[$(el).data('index')][_this11.header.stateField] = $(el).prop('checked');
- });
- }
- }, {
- key: 'resetRows',
- value: function resetRows() {
- var _iteratorNormalCompletion16 = true;
- var _didIteratorError16 = false;
- var _iteratorError16 = undefined;
+ // check that a method works with the correct list
+ // of whitespaces and has a correct name
+ var forcedStringTrimMethod = function (METHOD_NAME) {
+ return fails(function () {
+ return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME;
+ });
+ };
- try {
- for (var _iterator16 = this.data[Symbol.iterator](), _step16; !(_iteratorNormalCompletion16 = (_step16 = _iterator16.next()).done); _iteratorNormalCompletion16 = true) {
- var row = _step16.value;
+ var $trim = stringTrim.trim;
- this.$selectAll.prop('checked', false);
- this.$selectItem.prop('checked', false);
- if (this.header.stateField) {
- row[this.header.stateField] = false;
- }
- }
- } catch (err) {
- _didIteratorError16 = true;
- _iteratorError16 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion16 && _iterator16.return) {
- _iterator16.return();
- }
- } finally {
- if (_didIteratorError16) {
- throw _iteratorError16;
- }
- }
- }
- this.initHiddenRows();
- }
- }, {
- key: 'trigger',
- value: function trigger(_name) {
- var _options;
+ // `String.prototype.trim` method
+ // https://tc39.github.io/ecma262/#sec-string.prototype.trim
+ _export({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
+ trim: function trim() {
+ return $trim(this);
+ }
+ });
- var name = _name + '.bs.table';
+ // iterable DOM collections
+ // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
+ var domIterables = {
+ CSSRuleList: 0,
+ CSSStyleDeclaration: 0,
+ CSSValueList: 0,
+ ClientRectList: 0,
+ DOMRectList: 0,
+ DOMStringList: 0,
+ DOMTokenList: 1,
+ DataTransferItemList: 0,
+ FileList: 0,
+ HTMLAllCollection: 0,
+ HTMLCollection: 0,
+ HTMLFormElement: 0,
+ HTMLSelectElement: 0,
+ MediaList: 0,
+ MimeTypeArray: 0,
+ NamedNodeMap: 0,
+ NodeList: 1,
+ PaintRequestList: 0,
+ Plugin: 0,
+ PluginArray: 0,
+ SVGLengthList: 0,
+ SVGNumberList: 0,
+ SVGPathSegList: 0,
+ SVGPointList: 0,
+ SVGStringList: 0,
+ SVGTransformList: 0,
+ SourceBufferList: 0,
+ StyleSheetList: 0,
+ TextTrackCueList: 0,
+ TextTrackList: 0,
+ TouchList: 0
+ };
- for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key4 = 1; _key4 < _len2; _key4++) {
- args[_key4 - 1] = arguments[_key4];
- }
+ var $forEach$1 = arrayIteration.forEach;
- (_options = this.options)[BootstrapTable.EVENTS[name]].apply(_options, args);
- this.$el.trigger($.Event(name), args);
- this.options.onAll(name, args);
- this.$el.trigger($.Event('all.bs.table'), [name, args]);
- }
- }, {
- key: 'resetHeader',
- value: function resetHeader() {
- // fix #61: the hidden table reset header bug.
- // fix bug: get $el.css('width') error sometime (height = 500)
- clearTimeout(this.timeoutId_);
- this.timeoutId_ = setTimeout($.proxy(this.fitHeader, this), this.$el.is(':hidden') ? 100 : 0);
- }
- }, {
- key: 'fitHeader',
- value: function fitHeader() {
- var _this12 = this;
+ // `Array.prototype.forEach` method implementation
+ // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
+ var arrayForEach = sloppyArrayMethod('forEach') ? function forEach(callbackfn /* , thisArg */) {
+ return $forEach$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
+ } : [].forEach;
- if (this.$el.is(':hidden')) {
- this.timeoutId_ = setTimeout($.proxy(this.fitHeader, this), 100);
- return;
- }
- var fixedBody = this.$tableBody.get(0);
+ for (var COLLECTION_NAME in domIterables) {
+ var Collection = global_1[COLLECTION_NAME];
+ var CollectionPrototype = Collection && Collection.prototype;
+ // some Chrome versions have non-configurable methods on DOMTokenList
+ if (CollectionPrototype && CollectionPrototype.forEach !== arrayForEach) try {
+ hide(CollectionPrototype, 'forEach', arrayForEach);
+ } catch (error) {
+ CollectionPrototype.forEach = arrayForEach;
+ }
+ }
- var scrollWidth = fixedBody.scrollWidth > fixedBody.clientWidth && fixedBody.scrollHeight > fixedBody.clientHeight + this.$header.outerHeight() ? Utils.getScrollBarWidth() : 0;
+ var ITERATOR$2 = wellKnownSymbol('iterator');
+ var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag');
+ var ArrayValues = es_array_iterator.values;
- this.$el.css('margin-top', -this.$header.outerHeight());
+ for (var COLLECTION_NAME$1 in domIterables) {
+ var Collection$1 = global_1[COLLECTION_NAME$1];
+ var CollectionPrototype$1 = Collection$1 && Collection$1.prototype;
+ if (CollectionPrototype$1) {
+ // some Chrome versions have non-configurable methods on DOMTokenList
+ if (CollectionPrototype$1[ITERATOR$2] !== ArrayValues) try {
+ hide(CollectionPrototype$1, ITERATOR$2, ArrayValues);
+ } catch (error) {
+ CollectionPrototype$1[ITERATOR$2] = ArrayValues;
+ }
+ if (!CollectionPrototype$1[TO_STRING_TAG$3]) hide(CollectionPrototype$1, TO_STRING_TAG$3, COLLECTION_NAME$1);
+ if (domIterables[COLLECTION_NAME$1]) for (var METHOD_NAME in es_array_iterator) {
+ // some Chrome versions have non-configurable methods on DOMTokenList
+ if (CollectionPrototype$1[METHOD_NAME] !== es_array_iterator[METHOD_NAME]) try {
+ hide(CollectionPrototype$1, METHOD_NAME, es_array_iterator[METHOD_NAME]);
+ } catch (error) {
+ CollectionPrototype$1[METHOD_NAME] = es_array_iterator[METHOD_NAME];
+ }
+ }
+ }
+ }
- var focused = $(':focus');
- if (focused.length > 0) {
- var $th = focused.parents('th');
- if ($th.length > 0) {
- var dataField = $th.attr('data-field');
- if (dataField !== undefined) {
- var $headerTh = this.$header.find('[data-field=\'' + dataField + '\']');
- if ($headerTh.length > 0) {
- $headerTh.find(':input').addClass('focus-temp');
- }
- }
- }
- }
+ function _typeof(obj) {
+ if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
+ _typeof = function (obj) {
+ return typeof obj;
+ };
+ } else {
+ _typeof = function (obj) {
+ return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
+ };
+ }
- this.$header_ = this.$header.clone(true, true);
- this.$selectAll_ = this.$header_.find('[name="btSelectAll"]');
- this.$tableHeader.css({
- 'margin-right': scrollWidth
- }).find('table').css('width', this.$el.outerWidth()).html('').attr('class', this.$el.attr('class')).append(this.$header_);
+ return _typeof(obj);
+ }
- var focusedTemp = $('.focus-temp:visible:eq(0)');
- if (focusedTemp.length > 0) {
- focusedTemp.focus();
- this.$header.find('.focus-temp').removeClass('focus-temp');
- }
+ function _classCallCheck(instance, Constructor) {
+ if (!(instance instanceof Constructor)) {
+ throw new TypeError("Cannot call a class as a function");
+ }
+ }
- // fix bug: $.data() is not working as expected after $.append()
- this.$header.find('th[data-field]').each(function (i, el) {
- _this12.$header_.find(Utils.sprintf('th[data-field="%s"]', $(el).data('field'))).data($(el).data());
- });
+ function _defineProperties(target, props) {
+ for (var i = 0; i < props.length; i++) {
+ var descriptor = props[i];
+ descriptor.enumerable = descriptor.enumerable || false;
+ descriptor.configurable = true;
+ if ("value" in descriptor) descriptor.writable = true;
+ Object.defineProperty(target, descriptor.key, descriptor);
+ }
+ }
- var visibleFields = this.getVisibleFields();
- var $ths = this.$header_.find('th');
- var $tr = this.$body.find('>tr:first-child:not(.no-records-found)');
+ function _createClass(Constructor, protoProps, staticProps) {
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
+ if (staticProps) _defineProperties(Constructor, staticProps);
+ return Constructor;
+ }
- while ($tr.length && $tr.find('>td[colspan]:not([colspan="1"])').length) {
- $tr = $tr.next();
- }
+ function _slicedToArray(arr, i) {
+ return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest();
+ }
- $tr.find('> *').each(function (i, el) {
- var $this = $(el);
- var index = i;
+ function _toConsumableArray(arr) {
+ return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread();
+ }
- if (_this12.options.detailView && !_this12.options.cardView) {
- if (i === 0) {
- var $thDetail = $ths.filter('.detail');
- var _zoomWidth = $thDetail.width() - $thDetail.find('.fht-cell').width();
- $thDetail.find('.fht-cell').width($this.innerWidth() - _zoomWidth);
- }
- index = i - 1;
- }
+ function _arrayWithoutHoles(arr) {
+ if (Array.isArray(arr)) {
+ for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];
- if (index === -1) {
- return;
- }
+ return arr2;
+ }
+ }
- var $th = _this12.$header_.find(Utils.sprintf('th[data-field="%s"]', visibleFields[index]));
- if ($th.length > 1) {
- $th = $($ths[$this[0].cellIndex]);
- }
+ function _arrayWithHoles(arr) {
+ if (Array.isArray(arr)) return arr;
+ }
- var zoomWidth = $th.width() - $th.find('.fht-cell').width();
- $th.find('.fht-cell').width($this.innerWidth() - zoomWidth);
- });
+ function _iterableToArray(iter) {
+ if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter);
+ }
- this.horizontalScroll();
- this.trigger('post-header');
- }
- }, {
- key: 'resetFooter',
- value: function resetFooter() {
- var data = this.getData();
- var html = [];
+ function _iterableToArrayLimit(arr, i) {
+ var _arr = [];
+ var _n = true;
+ var _d = false;
+ var _e = undefined;
- if (!this.options.showFooter || this.options.cardView) {
- // do nothing
- return;
- }
+ try {
+ for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
+ _arr.push(_s.value);
- if (!this.options.cardView && this.options.detailView) {
- html.push('<td><div class="th-inner"> </div><div class="fht-cell"></div></td>');
- }
+ if (i && _arr.length === i) break;
+ }
+ } catch (err) {
+ _d = true;
+ _e = err;
+ } finally {
+ try {
+ if (!_n && _i["return"] != null) _i["return"]();
+ } finally {
+ if (_d) throw _e;
+ }
+ }
- var _iteratorNormalCompletion17 = true;
- var _didIteratorError17 = false;
- var _iteratorError17 = undefined;
+ return _arr;
+ }
- try {
- for (var _iterator17 = this.columns[Symbol.iterator](), _step17; !(_iteratorNormalCompletion17 = (_step17 = _iterator17.next()).done); _iteratorNormalCompletion17 = true) {
- var column = _step17.value;
+ function _nonIterableSpread() {
+ throw new TypeError("Invalid attempt to spread non-iterable instance");
+ }
- var falign = '';
+ function _nonIterableRest() {
+ throw new TypeError("Invalid attempt to destructure non-iterable instance");
+ }
- var valign = '';
- var csses = [];
- var style = {};
- var class_ = Utils.sprintf(' class="%s"', column['class']);
+ var VERSION = '1.15.4';
+ var bootstrapVersion = 4;
- if (!column.visible) {
- return;
- }
+ try {
+ var rawVersion = $.fn.dropdown.Constructor.VERSION; // Only try to parse VERSION if it is defined.
+ // It is undefined in older versions of Bootstrap (tested with 3.1.1).
- if (this.options.cardView && !column.cardVisible) {
- return;
- }
+ if (rawVersion !== undefined) {
+ bootstrapVersion = parseInt(rawVersion, 10);
+ }
+ } catch (e) {// ignore
+ }
- falign = Utils.sprintf('text-align: %s; ', column.falign ? column.falign : column.align);
- valign = Utils.sprintf('vertical-align: %s; ', column.valign);
+ var CONSTANTS = {
+ 3: {
+ iconsPrefix: 'glyphicon',
+ icons: {
+ paginationSwitchDown: 'glyphicon-collapse-down icon-chevron-down',
+ paginationSwitchUp: 'glyphicon-collapse-up icon-chevron-up',
+ refresh: 'glyphicon-refresh icon-refresh',
+ toggleOff: 'glyphicon-list-alt icon-list-alt',
+ toggleOn: 'glyphicon-list-alt icon-list-alt',
+ columns: 'glyphicon-th icon-th',
+ detailOpen: 'glyphicon-plus icon-plus',
+ detailClose: 'glyphicon-minus icon-minus',
+ fullscreen: 'glyphicon-fullscreen',
+ search: 'glyphicon-search',
+ clearSearch: 'glyphicon-trash'
+ },
+ classes: {
+ buttonsPrefix: 'btn',
+ buttons: 'default',
+ buttonsGroup: 'btn-group',
+ buttonsDropdown: 'btn-group',
+ pull: 'pull',
+ inputGroup: 'input-group',
+ input: 'form-control',
+ paginationDropdown: 'btn-group dropdown',
+ dropup: 'dropup',
+ dropdownActive: 'active',
+ paginationActive: 'active',
+ buttonActive: 'active'
+ },
+ html: {
+ toolbarDropdown: ['<ul class="dropdown-menu" role="menu">', '</ul>'],
+ toolbarDropdownItem: '<li role="menuitem"><label>%s</label></li>',
+ toolbarDropdownSeperator: '<li class="divider"></li>',
+ pageDropdown: ['<ul class="dropdown-menu" role="menu">', '</ul>'],
+ pageDropdownItem: '<li role="menuitem" class="%s"><a href="#">%s</a></li>',
+ dropdownCaret: '<span class="caret"></span>',
+ pagination: ['<ul class="pagination%s">', '</ul>'],
+ paginationItem: '<li class="page-item%s"><a class="page-link" aria-label="%s" href="javascript:void(0)">%s</a></li>',
+ icon: '<i class="%s %s"></i>',
+ inputGroup: '<div class="input-group">%s<span class="input-group-btn">%s</span></div>',
+ searchInput: '<input class="%s%s" type="text" placeholder="%s">',
+ searchButton: '<button class="%s" type="button" name="search" title="%s">%s %s</button>',
+ searchClearButton: '<button class="%s" type="button" name="clearSearch" title="%s">%s %s</button>'
+ }
+ },
+ 4: {
+ iconsPrefix: 'fa',
+ icons: {
+ paginationSwitchDown: 'fa-caret-square-down',
+ paginationSwitchUp: 'fa-caret-square-up',
+ refresh: 'fa-sync',
+ toggleOff: 'fa-toggle-off',
+ toggleOn: 'fa-toggle-on',
+ columns: 'fa-th-list',
+ detailOpen: 'fa-plus',
+ detailClose: 'fa-minus',
+ fullscreen: 'fa-arrows-alt',
+ search: 'fa-search',
+ clearSearch: 'fa-trash'
+ },
+ classes: {
+ buttonsPrefix: 'btn',
+ buttons: 'secondary',
+ buttonsGroup: 'btn-group',
+ buttonsDropdown: 'btn-group',
+ pull: 'float',
+ inputGroup: 'btn-group',
+ input: 'form-control',
+ paginationDropdown: 'btn-group dropdown',
+ dropup: 'dropup',
+ dropdownActive: 'active',
+ paginationActive: 'active',
+ buttonActive: 'active'
+ },
+ html: {
+ toolbarDropdown: ['<div class="dropdown-menu dropdown-menu-right">', '</div>'],
+ toolbarDropdownItem: '<label class="dropdown-item">%s</label>',
+ pageDropdown: ['<div class="dropdown-menu">', '</div>'],
+ pageDropdownItem: '<a class="dropdown-item %s" href="#">%s</a>',
+ toolbarDropdownSeperator: '<div class="dropdown-divider"></div>',
+ dropdownCaret: '<span class="caret"></span>',
+ pagination: ['<ul class="pagination%s">', '</ul>'],
+ paginationItem: '<li class="page-item%s"><a class="page-link" aria-label="%s" href="javascript:void(0)">%s</a></li>',
+ icon: '<i class="%s %s"></i>',
+ inputGroup: '<div class="input-group">%s<div class="input-group-append">%s</div></div>',
+ searchInput: '<input class="%s%s" type="text" placeholder="%s">',
+ searchButton: '<button class="%s" type="button" name="search" title="%s">%s %s</button>',
+ searchClearButton: '<button class="%s" type="button" name="clearSearch" title="%s">%s %s</button>'
+ }
+ }
+ }[bootstrapVersion];
+ var DEFAULTS = {
+ height: undefined,
+ classes: 'table table-bordered table-hover',
+ theadClasses: '',
+ rowStyle: function rowStyle(row, index) {
+ return {};
+ },
+ rowAttributes: function rowAttributes(row, index) {
+ return {};
+ },
+ undefinedText: '-',
+ locale: undefined,
+ virtualScroll: false,
+ virtualScrollItemHeight: undefined,
+ sortable: true,
+ sortClass: undefined,
+ silentSort: true,
+ sortName: undefined,
+ sortOrder: 'asc',
+ sortStable: false,
+ rememberOrder: false,
+ customSort: undefined,
+ columns: [[]],
+ data: [],
+ url: undefined,
+ method: 'get',
+ cache: true,
+ contentType: 'application/json',
+ dataType: 'json',
+ ajax: undefined,
+ ajaxOptions: {},
+ queryParams: function queryParams(params) {
+ return params;
+ },
+ queryParamsType: 'limit',
+ // 'limit', undefined
+ responseHandler: function responseHandler(res) {
+ return res;
+ },
+ totalField: 'total',
+ totalNotFilteredField: 'totalNotFiltered',
+ dataField: 'rows',
+ pagination: false,
+ onlyInfoPagination: false,
+ showExtendedPagination: false,
+ paginationLoop: true,
+ sidePagination: 'client',
+ // client or server
+ totalRows: 0,
+ totalNotFiltered: 0,
+ pageNumber: 1,
+ pageSize: 10,
+ pageList: [10, 25, 50, 100],
+ paginationHAlign: 'right',
+ // right, left
+ paginationVAlign: 'bottom',
+ // bottom, top, both
+ paginationDetailHAlign: 'left',
+ // right, left
+ paginationPreText: '‹',
+ paginationNextText: '›',
+ paginationSuccessivelySize: 5,
+ // Maximum successively number of pages in a row
+ paginationPagesBySide: 1,
+ // Number of pages on each side (right, left) of the current page.
+ paginationUseIntermediate: false,
+ // Calculate intermediate pages for quick access
+ search: false,
+ searchOnEnterKey: false,
+ strictSearch: false,
+ visibleSearch: false,
+ showButtonIcons: true,
+ showButtonText: false,
+ showSearchButton: false,
+ showSearchClearButton: false,
+ trimOnSearch: true,
+ searchAlign: 'right',
+ searchTimeOut: 500,
+ searchText: '',
+ customSearch: undefined,
+ showHeader: true,
+ showFooter: false,
+ footerStyle: function footerStyle(row, index) {
+ return {};
+ },
+ showColumns: false,
+ showColumnsToggleAll: false,
+ minimumCountColumns: 1,
+ showPaginationSwitch: false,
+ showRefresh: false,
+ showToggle: false,
+ showFullscreen: false,
+ smartDisplay: true,
+ escape: false,
+ filterOptions: {
+ filterAlgorithm: 'and'
+ },
+ idField: undefined,
+ selectItemName: 'btSelectItem',
+ clickToSelect: false,
+ ignoreClickToSelectOn: function ignoreClickToSelectOn(_ref) {
+ var tagName = _ref.tagName;
+ return ['A', 'BUTTON'].includes(tagName);
+ },
+ singleSelect: false,
+ checkboxHeader: true,
+ maintainMetaData: false,
+ multipleSelectRow: false,
+ uniqueId: undefined,
+ cardView: false,
+ detailView: false,
+ detailViewIcon: true,
+ detailViewByClick: false,
+ detailFormatter: function detailFormatter(index, row) {
+ return '';
+ },
+ detailFilter: function detailFilter(index, row) {
+ return true;
+ },
+ toolbar: undefined,
+ toolbarAlign: 'left',
+ buttonsToolbar: undefined,
+ buttonsAlign: 'right',
+ buttonsPrefix: CONSTANTS.classes.buttonsPrefix,
+ buttonsClass: CONSTANTS.classes.buttons,
+ icons: CONSTANTS.icons,
+ html: CONSTANTS.html,
+ iconSize: undefined,
+ iconsPrefix: CONSTANTS.iconsPrefix,
+ // glyphicon or fa(font-awesome)
+ onAll: function onAll(name, args) {
+ return false;
+ },
+ onClickCell: function onClickCell(field, value, row, $element) {
+ return false;
+ },
+ onDblClickCell: function onDblClickCell(field, value, row, $element) {
+ return false;
+ },
+ onClickRow: function onClickRow(item, $element) {
+ return false;
+ },
+ onDblClickRow: function onDblClickRow(item, $element) {
+ return false;
+ },
+ onSort: function onSort(name, order) {
+ return false;
+ },
+ onCheck: function onCheck(row) {
+ return false;
+ },
+ onUncheck: function onUncheck(row) {
+ return false;
+ },
+ onCheckAll: function onCheckAll(rows) {
+ return false;
+ },
+ onUncheckAll: function onUncheckAll(rows) {
+ return false;
+ },
+ onCheckSome: function onCheckSome(rows) {
+ return false;
+ },
+ onUncheckSome: function onUncheckSome(rows) {
+ return false;
+ },
+ onLoadSuccess: function onLoadSuccess(data) {
+ return false;
+ },
+ onLoadError: function onLoadError(status) {
+ return false;
+ },
+ onColumnSwitch: function onColumnSwitch(field, checked) {
+ return false;
+ },
+ onPageChange: function onPageChange(number, size) {
+ return false;
+ },
+ onSearch: function onSearch(text) {
+ return false;
+ },
+ onToggle: function onToggle(cardView) {
+ return false;
+ },
+ onPreBody: function onPreBody(data) {
+ return false;
+ },
+ onPostBody: function onPostBody() {
+ return false;
+ },
+ onPostHeader: function onPostHeader() {
+ return false;
+ },
+ onPostFooter: function onPostFooter() {
+ return false;
+ },
+ onExpandRow: function onExpandRow(index, row, $detail) {
+ return false;
+ },
+ onCollapseRow: function onCollapseRow(index, row) {
+ return false;
+ },
+ onRefreshOptions: function onRefreshOptions(options) {
+ return false;
+ },
+ onRefresh: function onRefresh(params) {
+ return false;
+ },
+ onResetView: function onResetView() {
+ return false;
+ },
+ onScrollBody: function onScrollBody() {
+ return false;
+ }
+ };
+ var EN = {
+ formatLoadingMessage: function formatLoadingMessage() {
+ return 'Loading, please wait';
+ },
+ formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
+ return "".concat(pageNumber, " rows per page");
+ },
+ formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
+ if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
+ return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows (filtered from ").concat(totalNotFiltered, " total rows)");
+ }
- style = Utils.calculateObjectValue(null, this.options.footerStyle);
+ return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows");
+ },
+ formatSRPaginationPreText: function formatSRPaginationPreText() {
+ return 'previous page';
+ },
+ formatSRPaginationPageText: function formatSRPaginationPageText(page) {
+ return "to page ".concat(page);
+ },
+ formatSRPaginationNextText: function formatSRPaginationNextText() {
+ return 'next page';
+ },
+ formatDetailPagination: function formatDetailPagination(totalRows) {
+ return "Showing ".concat(totalRows, " rows");
+ },
+ formatSearch: function formatSearch() {
+ return 'Search';
+ },
+ formatClearSearch: function formatClearSearch() {
+ return 'Clear Search';
+ },
+ formatNoMatches: function formatNoMatches() {
+ return 'No matching records found';
+ },
+ formatPaginationSwitch: function formatPaginationSwitch() {
+ return 'Hide/Show pagination';
+ },
+ formatPaginationSwitchDown: function formatPaginationSwitchDown() {
+ return 'Show pagination';
+ },
+ formatPaginationSwitchUp: function formatPaginationSwitchUp() {
+ return 'Hide pagination';
+ },
+ formatRefresh: function formatRefresh() {
+ return 'Refresh';
+ },
+ formatToggle: function formatToggle() {
+ return 'Toggle';
+ },
+ formatToggleOn: function formatToggleOn() {
+ return 'Show card view';
+ },
+ formatToggleOff: function formatToggleOff() {
+ return 'Hide card view';
+ },
+ formatColumns: function formatColumns() {
+ return 'Columns';
+ },
+ formatColumnsToggleAll: function formatColumnsToggleAll() {
+ return 'Toggle all';
+ },
+ formatFullscreen: function formatFullscreen() {
+ return 'Fullscreen';
+ },
+ formatAllRows: function formatAllRows() {
+ return 'All';
+ }
+ };
+ var COLUMN_DEFAULTS = {
+ field: undefined,
+ title: undefined,
+ titleTooltip: undefined,
+ 'class': undefined,
+ width: undefined,
+ widthUnit: 'px',
+ rowspan: undefined,
+ colspan: undefined,
+ align: undefined,
+ // left, right, center
+ halign: undefined,
+ // left, right, center
+ falign: undefined,
+ // left, right, center
+ valign: undefined,
+ // top, middle, bottom
+ cellStyle: undefined,
+ radio: false,
+ checkbox: false,
+ checkboxEnabled: true,
+ clickToSelect: true,
+ showSelectTitle: false,
+ sortable: false,
+ sortName: undefined,
+ order: 'asc',
+ // asc, desc
+ sorter: undefined,
+ visible: true,
+ switchable: true,
+ cardVisible: true,
+ searchable: true,
+ formatter: undefined,
+ footerFormatter: undefined,
+ detailFormatter: undefined,
+ searchFormatter: true,
+ escape: false,
+ events: undefined
+ };
+ var METHODS = ['getOptions', 'refreshOptions', 'getData', 'getSelections', 'getAllSelections', 'load', 'append', 'prepend', 'remove', 'removeAll', 'insertRow', 'updateRow', 'getRowByUniqueId', 'updateByUniqueId', 'removeByUniqueId', 'updateCell', 'updateCellByUniqueId', 'showRow', 'hideRow', 'getHiddenRows', 'showColumn', 'hideColumn', 'getVisibleColumns', 'getHiddenColumns', 'showAllColumns', 'hideAllColumns', 'mergeCells', 'checkAll', 'uncheckAll', 'checkInvert', 'check', 'uncheck', 'checkBy', 'uncheckBy', 'refresh', 'destroy', 'resetView', 'resetWidth', 'showLoading', 'hideLoading', 'togglePagination', 'toggleFullscreen', 'toggleView', 'resetSearch', 'filterBy', 'scrollTo', 'getScrollPosition', 'selectPage', 'prevPage', 'nextPage', 'toggleDetailView', 'expandRow', 'collapseRow', 'expandAllRows', 'collapseAllRows', 'updateColumnTitle', 'updateFormatText'];
+ var EVENTS = {
+ 'all.bs.table': 'onAll',
+ 'click-row.bs.table': 'onClickRow',
+ 'dbl-click-row.bs.table': 'onDblClickRow',
+ 'click-cell.bs.table': 'onClickCell',
+ 'dbl-click-cell.bs.table': 'onDblClickCell',
+ 'sort.bs.table': 'onSort',
+ 'check.bs.table': 'onCheck',
+ 'uncheck.bs.table': 'onUncheck',
+ 'check-all.bs.table': 'onCheckAll',
+ 'uncheck-all.bs.table': 'onUncheckAll',
+ 'check-some.bs.table': 'onCheckSome',
+ 'uncheck-some.bs.table': 'onUncheckSome',
+ 'load-success.bs.table': 'onLoadSuccess',
+ 'load-error.bs.table': 'onLoadError',
+ 'column-switch.bs.table': 'onColumnSwitch',
+ 'page-change.bs.table': 'onPageChange',
+ 'search.bs.table': 'onSearch',
+ 'toggle.bs.table': 'onToggle',
+ 'pre-body.bs.table': 'onPreBody',
+ 'post-body.bs.table': 'onPostBody',
+ 'post-header.bs.table': 'onPostHeader',
+ 'post-footer.bs.table': 'onPostFooter',
+ 'expand-row.bs.table': 'onExpandRow',
+ 'collapse-row.bs.table': 'onCollapseRow',
+ 'refresh-options.bs.table': 'onRefreshOptions',
+ 'reset-view.bs.table': 'onResetView',
+ 'refresh.bs.table': 'onRefresh',
+ 'scroll-body.bs.table': 'onScrollBody'
+ };
+ Object.assign(DEFAULTS, EN);
+ var Constants = {
+ VERSION: VERSION,
+ THEME: "bootstrap".concat(bootstrapVersion),
+ CONSTANTS: CONSTANTS,
+ DEFAULTS: DEFAULTS,
+ COLUMN_DEFAULTS: COLUMN_DEFAULTS,
+ METHODS: METHODS,
+ EVENTS: EVENTS,
+ LOCALES: {
+ en: EN,
+ 'en-US': EN
+ }
+ };
- if (style && style.css) {
- var _iteratorNormalCompletion18 = true;
- var _didIteratorError18 = false;
- var _iteratorError18 = undefined;
+ // `FlattenIntoArray` abstract operation
+ // https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray
+ var flattenIntoArray = function (target, original, source, sourceLen, start, depth, mapper, thisArg) {
+ var targetIndex = start;
+ var sourceIndex = 0;
+ var mapFn = mapper ? bindContext(mapper, thisArg, 3) : false;
+ var element;
- try {
- for (var _iterator18 = Object.keys(style.css)[Symbol.iterator](), _step18; !(_iteratorNormalCompletion18 = (_step18 = _iterator18.next()).done); _iteratorNormalCompletion18 = true) {
- var _ref23 = _step18.value;
+ while (sourceIndex < sourceLen) {
+ if (sourceIndex in source) {
+ element = mapFn ? mapFn(source[sourceIndex], sourceIndex, original) : source[sourceIndex];
- var _ref24 = _slicedToArray(_ref23, 2);
+ if (depth > 0 && isArray(element)) {
+ targetIndex = flattenIntoArray(target, original, element, toLength(element.length), targetIndex, depth - 1) - 1;
+ } else {
+ if (targetIndex >= 0x1FFFFFFFFFFFFF) throw TypeError('Exceed the acceptable array length');
+ target[targetIndex] = element;
+ }
- var key = _ref24[0];
- var value = _ref24[1];
+ targetIndex++;
+ }
+ sourceIndex++;
+ }
+ return targetIndex;
+ };
- csses.push(key + ': ' + value);
- }
- } catch (err) {
- _didIteratorError18 = true;
- _iteratorError18 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion18 && _iterator18.return) {
- _iterator18.return();
- }
- } finally {
- if (_didIteratorError18) {
- throw _iteratorError18;
- }
- }
- }
- }
+ var flattenIntoArray_1 = flattenIntoArray;
- html.push('<td', class_, Utils.sprintf(' style="%s"', falign + valign + csses.concat().join('; ')), '>');
- html.push('<div class="th-inner">');
+ // `Array.prototype.flat` method
+ // https://github.com/tc39/proposal-flatMap
+ _export({ target: 'Array', proto: true }, {
+ flat: function flat(/* depthArg = 1 */) {
+ var depthArg = arguments.length ? arguments[0] : undefined;
+ var O = toObject(this);
+ var sourceLen = toLength(O.length);
+ var A = arraySpeciesCreate(O, 0);
+ A.length = flattenIntoArray_1(A, O, O, sourceLen, 0, depthArg === undefined ? 1 : toInteger(depthArg));
+ return A;
+ }
+ });
- html.push(Utils.calculateObjectValue(column, column.footerFormatter, [data], ' ') || ' ');
+ // this method was added to unscopables after implementation
+ // in popular engines, so it's moved to a separate module
- html.push('</div>');
- html.push('<div class="fht-cell"></div>');
- html.push('</div>');
- html.push('</td>');
- }
- } catch (err) {
- _didIteratorError17 = true;
- _iteratorError17 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion17 && _iterator17.return) {
- _iterator17.return();
- }
- } finally {
- if (_didIteratorError17) {
- throw _iteratorError17;
- }
- }
- }
- this.$tableFooter.find('tr').html(html.join(''));
- this.$tableFooter.show();
- clearTimeout(this.timeoutFooter_);
- this.timeoutFooter_ = setTimeout($.proxy(this.fitFooter, this), this.$el.is(':hidden') ? 100 : 0);
- }
- }, {
- key: 'fitFooter',
- value: function fitFooter() {
- clearTimeout(this.timeoutFooter_);
- if (this.$el.is(':hidden')) {
- this.timeoutFooter_ = setTimeout($.proxy(this.fitFooter, this), 100);
- return;
- }
+ addToUnscopables('flat');
- var elWidth = this.$el.css('width');
- var scrollWidth = elWidth > this.$tableBody.width() ? Utils.getScrollBarWidth() : 0;
+ var FAILS_ON_PRIMITIVES = fails(function () { objectKeys(1); });
- this.$tableFooter.css({
- 'margin-right': scrollWidth
- }).find('table').css('width', elWidth).attr('class', this.$el.attr('class'));
+ // `Object.keys` method
+ // https://tc39.github.io/ecma262/#sec-object.keys
+ _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
+ keys: function keys(it) {
+ return objectKeys(toObject(it));
+ }
+ });
- var $footerTd = this.$tableFooter.find('td');
+ var Utils = {
+ // it only does '%s', and return '' when arguments are undefined
+ sprintf: function sprintf(_str) {
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
+ args[_key - 1] = arguments[_key];
+ }
- this.$body.find('>tr:first-child:not(.no-records-found) > *').each(function (i, el) {
- var $this = $(el);
+ var flag = true;
+ var i = 0;
- $footerTd.eq(i).find('.fht-cell').width($this.innerWidth());
- });
+ var str = _str.replace(/%s/g, function () {
+ var arg = args[i++];
- this.horizontalScroll();
- }
- }, {
- key: 'horizontalScroll',
- value: function horizontalScroll() {
- var _this13 = this;
+ if (typeof arg === 'undefined') {
+ flag = false;
+ return '';
+ }
- // horizontal scroll event
- // TODO: it's probably better improving the layout than binding to scroll event
+ return arg;
+ });
- this.trigger('scroll-body');
- this.$tableBody.off('scroll').on('scroll', function (_ref25) {
- var currentTarget = _ref25.currentTarget;
+ return flag ? str : '';
+ },
+ isEmptyObject: function isEmptyObject() {
+ var obj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ return Object.entries(obj).length === 0 && obj.constructor === Object;
+ },
+ isNumeric: function isNumeric(n) {
+ return !isNaN(parseFloat(n)) && isFinite(n);
+ },
+ getFieldTitle: function getFieldTitle(list, value) {
+ var _iteratorNormalCompletion = true;
+ var _didIteratorError = false;
+ var _iteratorError = undefined;
- if (_this13.options.showHeader && _this13.options.height) {
- _this13.$tableHeader.scrollLeft($(currentTarget).scrollLeft());
- }
+ try {
+ for (var _iterator = list[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
+ var item = _step.value;
- if (_this13.options.showFooter && !_this13.options.cardView) {
- _this13.$tableFooter.scrollLeft($(currentTarget).scrollLeft());
- }
- });
- }
- }, {
- key: 'toggleColumn',
- value: function toggleColumn(index, checked, needUpdate) {
- if (index === -1) {
- return;
- }
- this.columns[index].visible = checked;
- this.initHeader();
- this.initSearch();
- this.initPagination();
- this.initBody();
+ if (item.field === value) {
+ return item.title;
+ }
+ }
+ } catch (err) {
+ _didIteratorError = true;
+ _iteratorError = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
+ _iterator.return();
+ }
+ } finally {
+ if (_didIteratorError) {
+ throw _iteratorError;
+ }
+ }
+ }
- if (this.options.showColumns) {
- var $items = this.$toolbar.find('.keep-open input').prop('disabled', false);
+ return '';
+ },
+ setFieldIndex: function setFieldIndex(columns) {
+ var totalCol = 0;
+ var flag = [];
+ var _iteratorNormalCompletion2 = true;
+ var _didIteratorError2 = false;
+ var _iteratorError2 = undefined;
- if (needUpdate) {
- $items.filter(Utils.sprintf('[value="%s"]', index)).prop('checked', checked);
- }
+ try {
+ for (var _iterator2 = columns[0][Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
+ var column = _step2.value;
+ totalCol += column.colspan || 1;
+ }
+ } catch (err) {
+ _didIteratorError2 = true;
+ _iteratorError2 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion2 && _iterator2.return != null) {
+ _iterator2.return();
+ }
+ } finally {
+ if (_didIteratorError2) {
+ throw _iteratorError2;
+ }
+ }
+ }
- if ($items.filter(':checked').length <= this.options.minimumCountColumns) {
- $items.filter(':checked').prop('disabled', true);
- }
- }
- }
- }, {
- key: 'getVisibleFields',
- value: function getVisibleFields() {
- var visibleFields = [];
+ for (var i = 0; i < columns.length; i++) {
+ flag[i] = [];
- var _iteratorNormalCompletion19 = true;
- var _didIteratorError19 = false;
- var _iteratorError19 = undefined;
+ for (var j = 0; j < totalCol; j++) {
+ flag[i][j] = false;
+ }
+ }
- try {
- for (var _iterator19 = this.header.fields[Symbol.iterator](), _step19; !(_iteratorNormalCompletion19 = (_step19 = _iterator19.next()).done); _iteratorNormalCompletion19 = true) {
- var field = _step19.value;
+ for (var _i = 0; _i < columns.length; _i++) {
+ var _iteratorNormalCompletion3 = true;
+ var _didIteratorError3 = false;
+ var _iteratorError3 = undefined;
- var column = this.columns[this.fieldsColumnsIndex[field]];
+ try {
+ for (var _iterator3 = columns[_i][Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
+ var r = _step3.value;
+ var rowspan = r.rowspan || 1;
+ var colspan = r.colspan || 1;
- if (!column.visible) {
- continue;
- }
- visibleFields.push(field);
- }
- } catch (err) {
- _didIteratorError19 = true;
- _iteratorError19 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion19 && _iterator19.return) {
- _iterator19.return();
- }
- } finally {
- if (_didIteratorError19) {
- throw _iteratorError19;
- }
- }
- }
+ var index = flag[_i].indexOf(false);
- return visibleFields;
- }
- }, {
- key: 'resetView',
- value: function resetView(params) {
- var padding = 0;
+ r.colspanIndex = index;
- if (params && params.height) {
- this.options.height = params.height;
- }
+ if (colspan === 1) {
+ r.fieldIndex = index; // when field is undefined, use index instead
- this.$selectAll.prop('checked', this.$selectItem.length > 0 && this.$selectItem.length === this.$selectItem.filter(':checked').length);
+ if (typeof r.field === 'undefined') {
+ r.field = index;
+ }
+ } else {
+ r.colspanGroup = r.colspan;
+ }
- if (this.options.cardView) {
- // remove the element css
- this.$el.css('margin-top', '0');
- this.$tableContainer.css('padding-bottom', '0');
- this.$tableFooter.hide();
- return;
- }
+ for (var k = 0; k < rowspan; k++) {
+ flag[_i + k][index] = true;
+ }
- if (this.options.showHeader && this.options.height) {
- this.$tableHeader.show();
- this.resetHeader();
- padding += this.$header.outerHeight();
- } else {
- this.$tableHeader.hide();
- this.trigger('post-header');
- }
+ for (var _k = 0; _k < colspan; _k++) {
+ flag[_i][index + _k] = true;
+ }
+ }
+ } catch (err) {
+ _didIteratorError3 = true;
+ _iteratorError3 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion3 && _iterator3.return != null) {
+ _iterator3.return();
+ }
+ } finally {
+ if (_didIteratorError3) {
+ throw _iteratorError3;
+ }
+ }
+ }
+ }
+ },
+ updateFieldGroup: function updateFieldGroup(columns) {
+ var allColumns = columns.flat();
+ var _iteratorNormalCompletion4 = true;
+ var _didIteratorError4 = false;
+ var _iteratorError4 = undefined;
- if (this.options.showFooter) {
- this.resetFooter();
- if (this.options.height) {
- padding += this.$tableFooter.outerHeight() + 1;
- }
- }
+ try {
+ for (var _iterator4 = columns[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) {
+ var c = _step4.value;
+ var _iteratorNormalCompletion5 = true;
+ var _didIteratorError5 = false;
+ var _iteratorError5 = undefined;
- if (this.options.height) {
- var toolbarHeight = this.$toolbar.outerHeight(true);
- var paginationHeight = this.$pagination.outerHeight(true);
- var height = this.options.height - toolbarHeight - paginationHeight;
- var tableHeight = this.$tableBody.find('table').outerHeight(true);
- this.$tableContainer.css('height', height + 'px');
- this.$tableBorder && this.$tableBorder.css('height', height - tableHeight - padding - 1 + 'px');
- }
+ try {
+ for (var _iterator5 = c[Symbol.iterator](), _step5; !(_iteratorNormalCompletion5 = (_step5 = _iterator5.next()).done); _iteratorNormalCompletion5 = true) {
+ var r = _step5.value;
- // Assign the correct sortable arrow
- this.getCaret();
- this.$tableContainer.css('padding-bottom', padding + 'px');
- this.trigger('reset-view');
- }
- }, {
- key: 'getData',
- value: function getData(useCurrentPage) {
- var data = this.options.data;
- if (this.searchText || this.options.sortName || !$.isEmptyObject(this.filterColumns) || !$.isEmptyObject(this.filterColumnsPartial)) {
- data = this.data;
- }
+ if (r.colspanGroup > 1) {
+ var colspan = 0;
- if (useCurrentPage) {
- return data.slice(this.pageFrom - 1, this.pageTo);
- }
+ var _loop = function _loop(i) {
+ var column = allColumns.find(function (col) {
+ return col.fieldIndex === i;
+ });
- return data;
- }
- }, {
- key: 'load',
- value: function load(_data) {
- var fixedScroll = false;
- var data = _data;
+ if (column.visible) {
+ colspan++;
+ }
+ };
- // #431: support pagination
- if (this.options.pagination && this.options.sidePagination === 'server') {
- this.options.totalRows = data[this.options.totalField];
- }
+ for (var i = r.colspanIndex; i < r.colspanIndex + r.colspanGroup; i++) {
+ _loop(i);
+ }
- fixedScroll = data.fixedScroll;
- data = Array.isArray(data) ? data : data[this.options.dataField];
+ r.colspan = colspan;
+ r.visible = colspan > 0;
+ }
+ }
+ } catch (err) {
+ _didIteratorError5 = true;
+ _iteratorError5 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion5 && _iterator5.return != null) {
+ _iterator5.return();
+ }
+ } finally {
+ if (_didIteratorError5) {
+ throw _iteratorError5;
+ }
+ }
+ }
+ }
+ } catch (err) {
+ _didIteratorError4 = true;
+ _iteratorError4 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion4 && _iterator4.return != null) {
+ _iterator4.return();
+ }
+ } finally {
+ if (_didIteratorError4) {
+ throw _iteratorError4;
+ }
+ }
+ }
+ },
+ getScrollBarWidth: function getScrollBarWidth() {
+ if (this.cachedWidth === undefined) {
+ var $inner = $('<div/>').addClass('fixed-table-scroll-inner');
+ var $outer = $('<div/>').addClass('fixed-table-scroll-outer');
+ $outer.append($inner);
+ $('body').append($outer);
+ var w1 = $inner[0].offsetWidth;
+ $outer.css('overflow', 'scroll');
+ var w2 = $inner[0].offsetWidth;
- this.initData(data);
- this.initSearch();
- this.initPagination();
- this.initBody(fixedScroll);
- }
- }, {
- key: 'append',
- value: function append(data) {
- this.initData(data, 'append');
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'prepend',
- value: function prepend(data) {
- this.initData(data, 'prepend');
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'remove',
- value: function remove(params) {
- var len = this.options.data.length;
- var i = void 0;
- var row = void 0;
+ if (w1 === w2) {
+ w2 = $outer[0].clientWidth;
+ }
- if (!params.hasOwnProperty('field') || !params.hasOwnProperty('values')) {
- return;
- }
+ $outer.remove();
+ this.cachedWidth = w1 - w2;
+ }
- for (i = len - 1; i >= 0; i--) {
- row = this.options.data[i];
+ return this.cachedWidth;
+ },
+ calculateObjectValue: function calculateObjectValue(self, name, args, defaultValue) {
+ var func = name;
- if (!row.hasOwnProperty(params.field)) {
- continue;
- }
- if (params.values.includes(row[params.field])) {
- this.options.data.splice(i, 1);
- if (this.options.sidePagination === 'server') {
- this.options.totalRows -= 1;
- }
- }
- }
+ if (typeof name === 'string') {
+ // support obj.func1.func2
+ var names = name.split('.');
- if (len === this.options.data.length) {
- return;
- }
+ if (names.length > 1) {
+ func = window;
+ var _iteratorNormalCompletion6 = true;
+ var _didIteratorError6 = false;
+ var _iteratorError6 = undefined;
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'removeAll',
- value: function removeAll() {
- if (this.options.data.length > 0) {
- this.options.data.splice(0, this.options.data.length);
- this.initSearch();
- this.initPagination();
- this.initBody(true);
- }
- }
- }, {
- key: 'getRowByUniqueId',
- value: function getRowByUniqueId(_id) {
- var uniqueId = this.options.uniqueId;
- var len = this.options.data.length;
- var id = _id;
- var dataRow = null;
- var i = void 0;
- var row = void 0;
- var rowUniqueId = void 0;
+ try {
+ for (var _iterator6 = names[Symbol.iterator](), _step6; !(_iteratorNormalCompletion6 = (_step6 = _iterator6.next()).done); _iteratorNormalCompletion6 = true) {
+ var f = _step6.value;
+ func = func[f];
+ }
+ } catch (err) {
+ _didIteratorError6 = true;
+ _iteratorError6 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion6 && _iterator6.return != null) {
+ _iterator6.return();
+ }
+ } finally {
+ if (_didIteratorError6) {
+ throw _iteratorError6;
+ }
+ }
+ }
+ } else {
+ func = window[name];
+ }
+ }
- for (i = len - 1; i >= 0; i--) {
- row = this.options.data[i];
+ if (func !== null && _typeof(func) === 'object') {
+ return func;
+ }
- if (row.hasOwnProperty(uniqueId)) {
- // uniqueId is a column
- rowUniqueId = row[uniqueId];
- } else if (row._data && row._data.hasOwnProperty(uniqueId)) {
- // uniqueId is a row data property
- rowUniqueId = row._data[uniqueId];
- } else {
- continue;
- }
+ if (typeof func === 'function') {
+ return func.apply(self, args || []);
+ }
- if (typeof rowUniqueId === 'string') {
- id = id.toString();
- } else if (typeof rowUniqueId === 'number') {
- if (Number(rowUniqueId) === rowUniqueId && rowUniqueId % 1 === 0) {
- id = parseInt(id);
- } else if (rowUniqueId === Number(rowUniqueId) && rowUniqueId !== 0) {
- id = parseFloat(id);
- }
- }
+ if (!func && typeof name === 'string' && this.sprintf.apply(this, [name].concat(_toConsumableArray(args)))) {
+ return this.sprintf.apply(this, [name].concat(_toConsumableArray(args)));
+ }
- if (rowUniqueId === id) {
- dataRow = row;
- break;
- }
- }
+ return defaultValue;
+ },
+ compareObjects: function compareObjects(objectA, objectB, compareLength) {
+ var aKeys = Object.keys(objectA);
+ var bKeys = Object.keys(objectB);
- return dataRow;
- }
- }, {
- key: 'removeByUniqueId',
- value: function removeByUniqueId(id) {
- var len = this.options.data.length;
- var row = this.getRowByUniqueId(id);
+ if (compareLength && aKeys.length !== bKeys.length) {
+ return false;
+ }
- if (row) {
- this.options.data.splice(this.options.data.indexOf(row), 1);
- }
+ for (var _i2 = 0, _aKeys = aKeys; _i2 < _aKeys.length; _i2++) {
+ var key = _aKeys[_i2];
- if (len === this.options.data.length) {
- return;
- }
+ if (bKeys.includes(key) && objectA[key] !== objectB[key]) {
+ return false;
+ }
+ }
- this.initSearch();
- this.initPagination();
- this.initBody(true);
- }
- }, {
- key: 'updateByUniqueId',
- value: function updateByUniqueId(params) {
- var allParams = Array.isArray(params) ? params : [params];
+ return true;
+ },
+ escapeHTML: function escapeHTML(text) {
+ if (typeof text === 'string') {
+ return text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''').replace(/`/g, '`');
+ }
- var _iteratorNormalCompletion20 = true;
- var _didIteratorError20 = false;
- var _iteratorError20 = undefined;
+ return text;
+ },
+ getRealDataAttr: function getRealDataAttr(dataAttr) {
+ for (var _i3 = 0, _Object$entries = Object.entries(dataAttr); _i3 < _Object$entries.length; _i3++) {
+ var _Object$entries$_i = _slicedToArray(_Object$entries[_i3], 2),
+ attr = _Object$entries$_i[0],
+ value = _Object$entries$_i[1];
- try {
- for (var _iterator20 = allParams[Symbol.iterator](), _step20; !(_iteratorNormalCompletion20 = (_step20 = _iterator20.next()).done); _iteratorNormalCompletion20 = true) {
- var _params = _step20.value;
+ var auxAttr = attr.split(/(?=[A-Z])/).join('-').toLowerCase();
- if (!_params.hasOwnProperty('id') || !_params.hasOwnProperty('row')) {
- continue;
- }
+ if (auxAttr !== attr) {
+ dataAttr[auxAttr] = value;
+ delete dataAttr[attr];
+ }
+ }
- var rowId = this.options.data.indexOf(this.getRowByUniqueId(_params.id));
+ return dataAttr;
+ },
+ getItemField: function getItemField(item, field, escape) {
+ var value = item;
- if (rowId === -1) {
- continue;
- }
- $.extend(this.options.data[rowId], _params.row);
- }
- } catch (err) {
- _didIteratorError20 = true;
- _iteratorError20 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion20 && _iterator20.return) {
- _iterator20.return();
- }
- } finally {
- if (_didIteratorError20) {
- throw _iteratorError20;
- }
- }
- }
+ if (typeof field !== 'string' || item.hasOwnProperty(field)) {
+ return escape ? this.escapeHTML(item[field]) : item[field];
+ }
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'refreshColumnTitle',
- value: function refreshColumnTitle(params) {
- if (!params.hasOwnProperty('field') || !params.hasOwnProperty('title')) {
- return;
- }
+ var props = field.split('.');
+ var _iteratorNormalCompletion7 = true;
+ var _didIteratorError7 = false;
+ var _iteratorError7 = undefined;
- this.columns[this.fieldsColumnsIndex[params.field]].title = this.options.escape ? Utils.escapeHTML(params.title) : params.title;
+ try {
+ for (var _iterator7 = props[Symbol.iterator](), _step7; !(_iteratorNormalCompletion7 = (_step7 = _iterator7.next()).done); _iteratorNormalCompletion7 = true) {
+ var p = _step7.value;
+ value = value && value[p];
+ }
+ } catch (err) {
+ _didIteratorError7 = true;
+ _iteratorError7 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion7 && _iterator7.return != null) {
+ _iterator7.return();
+ }
+ } finally {
+ if (_didIteratorError7) {
+ throw _iteratorError7;
+ }
+ }
+ }
- if (this.columns[this.fieldsColumnsIndex[params.field]].visible) {
- var header = this.options.height !== undefined ? this.$tableHeader : this.$header;
- header.find('th[data-field]').each(function (i, el) {
- if ($(el).data('field') === params.field) {
- $($(el).find('.th-inner')[0]).text(params.title);
- return false;
- }
- });
- }
- }
- }, {
- key: 'insertRow',
- value: function insertRow(params) {
- if (!params.hasOwnProperty('index') || !params.hasOwnProperty('row')) {
- return;
- }
- this.options.data.splice(params.index, 0, params.row);
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'updateRow',
- value: function updateRow(params) {
- var allParams = Array.isArray(params) ? params : [params];
+ return escape ? this.escapeHTML(value) : value;
+ },
+ isIEBrowser: function isIEBrowser() {
+ return navigator.userAgent.includes('MSIE ') || /Trident.*rv:11\./.test(navigator.userAgent);
+ },
+ findIndex: function findIndex(items, item) {
+ var _iteratorNormalCompletion8 = true;
+ var _didIteratorError8 = false;
+ var _iteratorError8 = undefined;
- var _iteratorNormalCompletion21 = true;
- var _didIteratorError21 = false;
- var _iteratorError21 = undefined;
+ try {
+ for (var _iterator8 = items[Symbol.iterator](), _step8; !(_iteratorNormalCompletion8 = (_step8 = _iterator8.next()).done); _iteratorNormalCompletion8 = true) {
+ var it = _step8.value;
- try {
- for (var _iterator21 = allParams[Symbol.iterator](), _step21; !(_iteratorNormalCompletion21 = (_step21 = _iterator21.next()).done); _iteratorNormalCompletion21 = true) {
- var _params2 = _step21.value;
+ if (JSON.stringify(it) === JSON.stringify(item)) {
+ return items.indexOf(it);
+ }
+ }
+ } catch (err) {
+ _didIteratorError8 = true;
+ _iteratorError8 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion8 && _iterator8.return != null) {
+ _iterator8.return();
+ }
+ } finally {
+ if (_didIteratorError8) {
+ throw _iteratorError8;
+ }
+ }
+ }
- if (!_params2.hasOwnProperty('index') || !_params2.hasOwnProperty('row')) {
- continue;
- }
- $.extend(this.options.data[_params2.index], _params2.row);
- }
- } catch (err) {
- _didIteratorError21 = true;
- _iteratorError21 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion21 && _iterator21.return) {
- _iterator21.return();
- }
- } finally {
- if (_didIteratorError21) {
- throw _iteratorError21;
- }
- }
- }
+ return -1;
+ },
+ trToData: function trToData(columns, $els) {
+ var _this = this;
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'initHiddenRows',
- value: function initHiddenRows() {
- this.hiddenRows = [];
- }
- }, {
- key: 'showRow',
- value: function showRow(params) {
- this.toggleRow(params, true);
- }
- }, {
- key: 'hideRow',
- value: function hideRow(params) {
- this.toggleRow(params, false);
- }
- }, {
- key: 'toggleRow',
- value: function toggleRow(params, visible) {
- var row = void 0;
+ var data = [];
+ var m = [];
+ $els.each(function (y, el) {
+ var row = {}; // save tr's id, class and data-* attributes
- if (params.hasOwnProperty('index')) {
- row = this.getData()[params.index];
- } else if (params.hasOwnProperty('uniqueId')) {
- row = this.getRowByUniqueId(params.uniqueId);
- }
+ row._id = $(el).attr('id');
+ row._class = $(el).attr('class');
+ row._data = _this.getRealDataAttr($(el).data());
+ $(el).find('>td,>th').each(function (_x, el) {
+ var cspan = +$(el).attr('colspan') || 1;
+ var rspan = +$(el).attr('rowspan') || 1;
+ var x = _x; // skip already occupied cells in current row
- if (!row) {
- return;
- }
+ for (; m[y] && m[y][x]; x++) {} // ignore
+ // mark matrix elements occupied by current cell with true
- var index = Utils.findIndex(this.hiddenRows, row);
- if (!visible && index === -1) {
- this.hiddenRows.push(row);
- } else if (visible && index > -1) {
- this.hiddenRows.splice(index, 1);
- }
- this.initBody(true);
- }
- }, {
- key: 'getHiddenRows',
- value: function getHiddenRows(show) {
- if (show) {
- this.initHiddenRows();
- this.initBody(true);
- return;
- }
- var data = this.getData();
- var rows = [];
+ for (var tx = x; tx < x + cspan; tx++) {
+ for (var ty = y; ty < y + rspan; ty++) {
+ if (!m[ty]) {
+ // fill missing rows
+ m[ty] = [];
+ }
- var _iteratorNormalCompletion22 = true;
- var _didIteratorError22 = false;
- var _iteratorError22 = undefined;
+ m[ty][tx] = true;
+ }
+ }
- try {
- for (var _iterator22 = data[Symbol.iterator](), _step22; !(_iteratorNormalCompletion22 = (_step22 = _iterator22.next()).done); _iteratorNormalCompletion22 = true) {
- var row = _step22.value;
+ var field = columns[x].field;
+ row[field] = $(el).html().trim(); // save td's id, class and data-* attributes
- if (this.hiddenRows.includes(row)) {
- rows.push(row);
- }
- }
- } catch (err) {
- _didIteratorError22 = true;
- _iteratorError22 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion22 && _iterator22.return) {
- _iterator22.return();
- }
- } finally {
- if (_didIteratorError22) {
- throw _iteratorError22;
- }
- }
- }
+ row["_".concat(field, "_id")] = $(el).attr('id');
+ row["_".concat(field, "_class")] = $(el).attr('class');
+ row["_".concat(field, "_rowspan")] = $(el).attr('rowspan');
+ row["_".concat(field, "_colspan")] = $(el).attr('colspan');
+ row["_".concat(field, "_title")] = $(el).attr('title');
+ row["_".concat(field, "_data")] = _this.getRealDataAttr($(el).data());
+ });
+ data.push(row);
+ });
+ return data;
+ },
+ sort: function sort(a, b, order, sortStable) {
+ if (a === undefined || a === null) {
+ a = '';
+ }
- this.hiddenRows = rows;
- return rows;
- }
- }, {
- key: 'mergeCells',
- value: function mergeCells(options) {
- var row = options.index;
- var col = this.getVisibleFields().indexOf(options.field);
- var rowspan = options.rowspan || 1;
- var colspan = options.colspan || 1;
- var i = void 0;
- var j = void 0;
- var $tr = this.$body.find('>tr');
+ if (b === undefined || b === null) {
+ b = '';
+ }
- if (this.options.detailView && !this.options.cardView) {
- col += 1;
- }
+ if (sortStable && a === b) {
+ a = a._position;
+ b = b._position;
+ } // If both values are numeric, do a numeric comparison
- var $td = $tr.eq(row).find('>td').eq(col);
- if (row < 0 || col < 0 || row >= this.data.length) {
- return;
- }
+ if (this.isNumeric(a) && this.isNumeric(b)) {
+ // Convert numerical values form string to float.
+ a = parseFloat(a);
+ b = parseFloat(b);
- for (i = row; i < row + rowspan; i++) {
- for (j = col; j < col + colspan; j++) {
- $tr.eq(i).find('>td').eq(j).hide();
- }
- }
+ if (a < b) {
+ return order * -1;
+ }
- $td.attr('rowspan', rowspan).attr('colspan', colspan).show();
- }
- }, {
- key: 'updateCell',
- value: function updateCell(params) {
- if (!params.hasOwnProperty('index') || !params.hasOwnProperty('field') || !params.hasOwnProperty('value')) {
- return;
- }
- this.data[params.index][params.field] = params.value;
+ if (a > b) {
+ return order;
+ }
- if (params.reinit === false) {
- return;
- }
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'updateCellById',
- value: function updateCellById(params) {
- var _this14 = this;
+ return 0;
+ }
- if (!params.hasOwnProperty('id') || !params.hasOwnProperty('field') || !params.hasOwnProperty('value')) {
- return;
- }
- var allParams = Array.isArray(params) ? params : [params];
+ if (a === b) {
+ return 0;
+ } // If value is not a string, convert to string
- allParams.forEach(function (_ref26) {
- var id = _ref26.id,
- field = _ref26.field,
- value = _ref26.value;
- var rowId = _this14.options.data.indexOf(_this14.getRowByUniqueId(id));
+ if (typeof a !== 'string') {
+ a = a.toString();
+ }
- if (rowId === -1) {
- return;
- }
- _this14.data[rowId][field] = value;
- });
+ if (a.localeCompare(b) === -1) {
+ return order * -1;
+ }
- if (params.reinit === false) {
- return;
- }
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'getOptions',
- value: function getOptions() {
- // Deep copy: remove data
- var options = $.extend({}, this.options);
- delete options.data;
- return $.extend(true, {}, options);
- }
- }, {
- key: 'getSelections',
- value: function getSelections() {
- var _this15 = this;
+ return order;
+ }
+ };
- // fix #2424: from html with checkbox
- return this.options.data.filter(function (row) {
- return row[_this15.header.stateField] === true;
- });
- }
- }, {
- key: 'getAllSelections',
- value: function getAllSelections() {
- var _this16 = this;
+ var BLOCK_ROWS = 50;
+ var CLUSTER_BLOCKS = 4;
- return this.options.data.filter(function (row) {
- return row[_this16.header.stateField];
- });
- }
- }, {
- key: 'checkAll',
- value: function checkAll() {
- this.checkAll_(true);
- }
- }, {
- key: 'uncheckAll',
- value: function uncheckAll() {
- this.checkAll_(false);
- }
- }, {
- key: 'checkInvert',
- value: function checkInvert() {
- var $items = this.$selectItem.filter(':enabled');
- var checked = $items.filter(':checked');
- $items.each(function (i, el) {
- $(el).prop('checked', !$(el).prop('checked'));
- });
- this.updateRows();
- this.updateSelected();
- this.trigger('uncheck-some', checked);
- checked = this.getSelections();
- this.trigger('check-some', checked);
- }
- }, {
- key: 'checkAll_',
- value: function checkAll_(checked) {
- var rows = void 0;
- if (!checked) {
- rows = this.getSelections();
- }
- this.$selectAll.add(this.$selectAll_).prop('checked', checked);
- this.$selectItem.filter(':enabled').prop('checked', checked);
- this.updateRows();
- if (checked) {
- rows = this.getSelections();
- }
- this.trigger(checked ? 'check-all' : 'uncheck-all', rows);
- }
- }, {
- key: 'check',
- value: function check(index) {
- this.check_(true, index);
- }
- }, {
- key: 'uncheck',
- value: function uncheck(index) {
- this.check_(false, index);
- }
- }, {
- key: 'check_',
- value: function check_(checked, index) {
- var $el = this.$selectItem.filter('[data-index="' + index + '"]');
- var row = this.data[index];
+ var VirtualScroll =
+ /*#__PURE__*/
+ function () {
+ function VirtualScroll(options) {
+ var _this = this;
- if ($el.is(':radio') || this.options.singleSelect) {
- var _iteratorNormalCompletion23 = true;
- var _didIteratorError23 = false;
- var _iteratorError23 = undefined;
+ _classCallCheck(this, VirtualScroll);
- try {
- for (var _iterator23 = this.options.data[Symbol.iterator](), _step23; !(_iteratorNormalCompletion23 = (_step23 = _iterator23.next()).done); _iteratorNormalCompletion23 = true) {
- var r = _step23.value;
+ this.rows = options.rows;
+ this.scrollEl = options.scrollEl;
+ this.contentEl = options.contentEl;
+ this.callback = options.callback;
+ this.itemHeight = options.itemHeight;
+ this.cache = {};
+ this.scrollTop = this.scrollEl.scrollTop;
+ this.initDOM(this.rows);
+ this.scrollEl.scrollTop = this.scrollTop;
+ this.lastCluster = 0;
- r[this.header.stateField] = false;
- }
- } catch (err) {
- _didIteratorError23 = true;
- _iteratorError23 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion23 && _iterator23.return) {
- _iterator23.return();
- }
- } finally {
- if (_didIteratorError23) {
- throw _iteratorError23;
- }
- }
- }
+ var onScroll = function onScroll() {
+ if (_this.lastCluster !== (_this.lastCluster = _this.getNum())) {
+ _this.initDOM(_this.rows);
- this.$selectItem.filter(':checked').not($el).prop('checked', false);
- }
+ _this.callback();
+ }
+ };
- row[this.header.stateField] = checked;
- $el.prop('checked', checked);
- this.updateSelected();
- this.trigger(checked ? 'check' : 'uncheck', this.data[index], $el);
- }
- }, {
- key: 'checkBy',
- value: function checkBy(obj) {
- this.checkBy_(true, obj);
- }
- }, {
- key: 'uncheckBy',
- value: function uncheckBy(obj) {
- this.checkBy_(false, obj);
- }
- }, {
- key: 'checkBy_',
- value: function checkBy_(checked, obj) {
- var _this17 = this;
+ this.scrollEl.addEventListener('scroll', onScroll, false);
- if (!obj.hasOwnProperty('field') || !obj.hasOwnProperty('values')) {
- return;
- }
+ this.destroy = function () {
+ _this.contentEl.innerHtml = '';
- var rows = [];
- this.options.data.forEach(function (row, i) {
- if (!row.hasOwnProperty(obj.field)) {
- return false;
- }
- if (obj.values.includes(row[obj.field])) {
- var $el = _this17.$selectItem.filter(':enabled').filter(Utils.sprintf('[data-index="%s"]', i)).prop('checked', checked);
- row[_this17.header.stateField] = checked;
- rows.push(row);
- _this17.trigger(checked ? 'check' : 'uncheck', row, $el);
- }
- });
- this.updateSelected();
- this.trigger(checked ? 'check-some' : 'uncheck-some', rows);
- }
- }, {
- key: 'destroy',
- value: function destroy() {
- this.$el.insertBefore(this.$container);
- $(this.options.toolbar).insertBefore(this.$el);
- this.$container.next().remove();
- this.$container.remove();
- this.$el.html(this.$el_.html()).css('margin-top', '0').attr('class', this.$el_.attr('class') || ''); // reset the class
- }
- }, {
- key: 'showLoading',
- value: function showLoading() {
- this.$tableLoading.show();
- }
- }, {
- key: 'hideLoading',
- value: function hideLoading() {
- this.$tableLoading.hide();
- }
- }, {
- key: 'togglePagination',
- value: function togglePagination() {
- this.options.pagination = !this.options.pagination;
- var button = this.$toolbar.find('button[name="paginationSwitch"] i');
- if (this.options.pagination) {
- button.attr('class', this.options.iconsPrefix + ' ' + this.options.icons.paginationSwitchDown);
- } else {
- button.attr('class', this.options.iconsPrefix + ' ' + this.options.icons.paginationSwitchUp);
- }
- this.updatePagination();
- }
- }, {
- key: 'toggleFullscreen',
- value: function toggleFullscreen() {
- this.$el.closest('.bootstrap-table').toggleClass('fullscreen');
- }
- }, {
- key: 'refresh',
- value: function refresh(params) {
- if (params && params.url) {
- this.options.url = params.url;
- }
- if (params && params.pageNumber) {
- this.options.pageNumber = params.pageNumber;
- }
- if (params && params.pageSize) {
- this.options.pageSize = params.pageSize;
- }
- this.initServer(params && params.silent, params && params.query, params && params.url);
- this.trigger('refresh', params);
- }
- }, {
- key: 'resetWidth',
- value: function resetWidth() {
- if (this.options.showHeader && this.options.height) {
- this.fitHeader();
- }
- if (this.options.showFooter && !this.options.cardView) {
- this.fitFooter();
- }
- }
- }, {
- key: 'showColumn',
- value: function showColumn(field) {
- this.toggleColumn(this.fieldsColumnsIndex[field], true, true);
- }
- }, {
- key: 'hideColumn',
- value: function hideColumn(field) {
- this.toggleColumn(this.fieldsColumnsIndex[field], false, true);
- }
- }, {
- key: 'getHiddenColumns',
- value: function getHiddenColumns() {
- return this.columns.filter(function (_ref27) {
- var visible = _ref27.visible;
- return !visible;
- });
- }
- }, {
- key: 'getVisibleColumns',
- value: function getVisibleColumns() {
- return this.columns.filter(function (_ref28) {
- var visible = _ref28.visible;
- return visible;
- });
- }
- }, {
- key: 'toggleAllColumns',
- value: function toggleAllColumns(visible) {
- var _iteratorNormalCompletion24 = true;
- var _didIteratorError24 = false;
- var _iteratorError24 = undefined;
+ _this.scrollEl.removeEventListener('scroll', onScroll, false);
+ };
+ }
- try {
- for (var _iterator24 = this.columns[Symbol.iterator](), _step24; !(_iteratorNormalCompletion24 = (_step24 = _iterator24.next()).done); _iteratorNormalCompletion24 = true) {
- var column = _step24.value;
+ _createClass(VirtualScroll, [{
+ key: "initDOM",
+ value: function initDOM(rows) {
+ if (typeof this.clusterHeight === 'undefined') {
+ this.cache.data = this.contentEl.innerHTML = rows[0] + rows[0] + rows[0];
+ this.getRowsHeight(rows);
+ }
- column.visible = visible;
- }
- } catch (err) {
- _didIteratorError24 = true;
- _iteratorError24 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion24 && _iterator24.return) {
- _iterator24.return();
- }
- } finally {
- if (_didIteratorError24) {
- throw _iteratorError24;
- }
- }
- }
+ var data = this.initData(rows, this.getNum());
+ var thisRows = data.rows.join('');
+ var dataChanged = this.checkChanges('data', thisRows);
+ var topOffsetChanged = this.checkChanges('top', data.topOffset);
+ var bottomOffsetChanged = this.checkChanges('bottom', data.bottomOffset);
+ var html = [];
- this.initHeader();
- this.initSearch();
- this.initPagination();
- this.initBody();
- if (this.options.showColumns) {
- var $items = this.$toolbar.find('.keep-open input').prop('disabled', false);
+ if (dataChanged && topOffsetChanged) {
+ if (data.topOffset) {
+ html.push(this.getExtra('top', data.topOffset));
+ }
- if ($items.filter(':checked').length <= this.options.minimumCountColumns) {
- $items.filter(':checked').prop('disabled', true);
- }
- }
- }
- }, {
- key: 'showAllColumns',
- value: function showAllColumns() {
- this.toggleAllColumns(true);
- }
- }, {
- key: 'hideAllColumns',
- value: function hideAllColumns() {
- this.toggleAllColumns(false);
- }
- }, {
- key: 'filterBy',
- value: function filterBy(columns) {
- this.filterColumns = $.isEmptyObject(columns) ? {} : columns;
- this.options.pageNumber = 1;
- this.initSearch();
- this.updatePagination();
- }
- }, {
- key: 'scrollTo',
- value: function scrollTo(_value) {
- if (typeof _value === 'undefined') {
- return this.$tableBody.scrollTop();
- }
+ html.push(thisRows);
- var value = _value;
- if (typeof _value === 'string' && _value === 'bottom') {
- value = this.$tableBody[0].scrollHeight;
- }
- this.$tableBody.scrollTop(value);
- }
- }, {
- key: 'getScrollPosition',
- value: function getScrollPosition() {
- return this.scrollTo();
- }
- }, {
- key: 'selectPage',
- value: function selectPage(page) {
- if (page > 0 && page <= this.options.totalPages) {
- this.options.pageNumber = page;
- this.updatePagination();
- }
- }
- }, {
- key: 'prevPage',
- value: function prevPage() {
- if (this.options.pageNumber > 1) {
- this.options.pageNumber--;
- this.updatePagination();
- }
- }
- }, {
- key: 'nextPage',
- value: function nextPage() {
- if (this.options.pageNumber < this.options.totalPages) {
- this.options.pageNumber++;
- this.updatePagination();
- }
- }
- }, {
- key: 'toggleView',
- value: function toggleView() {
- this.options.cardView = !this.options.cardView;
- this.initHeader();
- // Fixed remove toolbar when click cardView button.
- // this.initToolbar();
- var $icon = this.$toolbar.find('button[name="toggle"] i');
- if (this.options.cardView) {
- $icon.removeClass(this.options.icons.toggleOff);
- $icon.addClass(this.options.icons.toggleOn);
- } else {
- $icon.removeClass(this.options.icons.toggleOn);
- $icon.addClass(this.options.icons.toggleOff);
- }
- this.initBody();
- this.trigger('toggle', this.options.cardView);
- }
- }, {
- key: 'refreshOptions',
- value: function refreshOptions(options) {
- // If the objects are equivalent then avoid the call of destroy / init methods
- if (Utils.compareObjects(this.options, options, true)) {
- return;
- }
- this.options = $.extend(this.options, options);
- this.trigger('refresh-options', this.options);
- this.destroy();
- this.init();
- }
- }, {
- key: 'resetSearch',
- value: function resetSearch(text) {
- var $search = this.$toolbar.find('.search input');
- $search.val(text || '');
- this.onSearch({ currentTarget: $search });
- }
- }, {
- key: 'expandRow_',
- value: function expandRow_(expand, index) {
- var $tr = this.$body.find(Utils.sprintf('> tr[data-index="%s"]', index));
- if ($tr.next().is('tr.detail-view') === !expand) {
- $tr.find('> td > .detail-icon').click();
- }
- }
- }, {
- key: 'expandRow',
- value: function expandRow(index) {
- this.expandRow_(true, index);
- }
- }, {
- key: 'collapseRow',
- value: function collapseRow(index) {
- this.expandRow_(false, index);
- }
- }, {
- key: 'expandAllRows',
- value: function expandAllRows(isSubTable) {
- var _this18 = this;
+ if (data.bottomOffset) {
+ html.push(this.getExtra('bottom', data.bottomOffset));
+ }
- if (isSubTable) {
- var $tr = this.$body.find(Utils.sprintf('> tr[data-index="%s"]', 0));
- var detailIcon = null;
- var executeInterval = false;
- var idInterval = -1;
+ this.contentEl.innerHTML = html.join('');
+ } else if (bottomOffsetChanged) {
+ this.contentEl.lastChild.style.height = "".concat(data.bottomOffset, "px");
+ }
+ }
+ }, {
+ key: "getRowsHeight",
+ value: function getRowsHeight() {
+ if (typeof this.itemHeight === 'undefined') {
+ var nodes = this.contentEl.children;
+ var node = nodes[Math.floor(nodes.length / 2)];
+ this.itemHeight = node.offsetHeight;
+ }
- if (!$tr.next().is('tr.detail-view')) {
- $tr.find('> td > .detail-icon').click();
- executeInterval = true;
- } else if (!$tr.next().next().is('tr.detail-view')) {
- $tr.next().find('.detail-icon').click();
- executeInterval = true;
- }
+ this.blockHeight = this.itemHeight * BLOCK_ROWS;
+ this.clusterRows = BLOCK_ROWS * CLUSTER_BLOCKS;
+ this.clusterHeight = this.blockHeight * CLUSTER_BLOCKS;
+ }
+ }, {
+ key: "getNum",
+ value: function getNum() {
+ this.scrollTop = this.scrollEl.scrollTop;
+ return Math.floor(this.scrollTop / (this.clusterHeight - this.blockHeight)) || 0;
+ }
+ }, {
+ key: "initData",
+ value: function initData(rows, num) {
+ if (rows.length < BLOCK_ROWS) {
+ return {
+ topOffset: 0,
+ bottomOffset: 0,
+ rowsAbove: 0,
+ rows: rows
+ };
+ }
- if (executeInterval) {
- try {
- idInterval = setInterval(function () {
- detailIcon = _this18.$body.find('tr.detail-view').last().find('.detail-icon');
- if (detailIcon.length > 0) {
- detailIcon.click();
- } else {
- clearInterval(idInterval);
- }
- }, 1);
- } catch (ex) {
- clearInterval(idInterval);
- }
- }
- } else {
- var trs = this.$body.children();
- for (var i = 0; i < trs.length; i++) {
- this.expandRow_(true, $(trs[i]).data('index'));
- }
- }
- }
- }, {
- key: 'collapseAllRows',
- value: function collapseAllRows(isSubTable) {
- if (isSubTable) {
- this.expandRow_(false, 0);
- } else {
- var trs = this.$body.children();
- for (var i = 0; i < trs.length; i++) {
- this.expandRow_(false, $(trs[i]).data('index'));
- }
- }
- }
- }, {
- key: 'updateFormatText',
- value: function updateFormatText(name, text) {
- if (this.options[Utils.sprintf('format%s', name)]) {
- if (typeof text === 'string') {
- this.options[Utils.sprintf('format%s', name)] = function () {
- return text;
- };
- } else if (typeof text === 'function') {
- this.options[Utils.sprintf('format%s', name)] = text;
- }
- }
- this.initToolbar();
- this.initPagination();
- this.initBody();
- }
- }]);
+ var start = Math.max((this.clusterRows - BLOCK_ROWS) * num, 0);
+ var end = start + this.clusterRows;
+ var topOffset = Math.max(start * this.itemHeight, 0);
+ var bottomOffset = Math.max((rows.length - end) * this.itemHeight, 0);
+ var thisRows = [];
+ var rowsAbove = start;
- return BootstrapTable;
- }();
+ if (topOffset < 1) {
+ rowsAbove++;
+ }
- BootstrapTable.DEFAULTS = DEFAULTS;
- BootstrapTable.LOCALES = LOCALES;
- BootstrapTable.COLUMN_DEFAULTS = COLUMN_DEFAULTS;
- BootstrapTable.EVENTS = EVENTS;
+ for (var i = start; i < end; i++) {
+ rows[i] && thisRows.push(rows[i]);
+ }
- // BOOTSTRAP TABLE PLUGIN DEFINITION
- // =======================
+ return {
+ topOffset: topOffset,
+ bottomOffset: bottomOffset,
+ rowsAbove: rowsAbove,
+ rows: thisRows
+ };
+ }
+ }, {
+ key: "checkChanges",
+ value: function checkChanges(type, value) {
+ var changed = value !== this.cache[type];
+ this.cache[type] = value;
+ return changed;
+ }
+ }, {
+ key: "getExtra",
+ value: function getExtra(className, height) {
+ var tag = document.createElement('tr');
+ tag.className = "virtual-scroll-".concat(className);
- var allowedMethods = ['getOptions', 'getSelections', 'getAllSelections', 'getData', 'load', 'append', 'prepend', 'remove', 'removeAll', 'insertRow', 'updateRow', 'updateCell', 'updateByUniqueId', 'removeByUniqueId', 'getRowByUniqueId', 'showRow', 'hideRow', 'getHiddenRows', 'mergeCells', 'refreshColumnTitle', 'checkAll', 'uncheckAll', 'checkInvert', 'check', 'uncheck', 'checkBy', 'uncheckBy', 'refresh', 'resetView', 'resetWidth', 'destroy', 'showLoading', 'hideLoading', 'showColumn', 'hideColumn', 'getHiddenColumns', 'getVisibleColumns', 'showAllColumns', 'hideAllColumns', 'filterBy', 'scrollTo', 'getScrollPosition', 'selectPage', 'prevPage', 'nextPage', 'togglePagination', 'toggleView', 'refreshOptions', 'resetSearch', 'expandRow', 'collapseRow', 'expandAllRows', 'collapseAllRows', 'updateFormatText', 'updateCellById'];
+ if (height) {
+ tag.style.height = "".concat(height, "px");
+ }
- $.BootstrapTable = BootstrapTable;
- $.fn.bootstrapTable = function (option) {
- for (var _len3 = arguments.length, args = Array(_len3 > 1 ? _len3 - 1 : 0), _key5 = 1; _key5 < _len3; _key5++) {
- args[_key5 - 1] = arguments[_key5];
- }
+ return tag.outerHTML;
+ }
+ }]);
- var value = void 0;
+ return VirtualScroll;
+ }();
- this.each(function (i, el) {
- var data = $(el).data('bootstrap.table');
- var options = $.extend({}, BootstrapTable.DEFAULTS, $(el).data(), (typeof option === 'undefined' ? 'undefined' : _typeof(option)) === 'object' && option);
+ var BootstrapTable =
+ /*#__PURE__*/
+ function () {
+ function BootstrapTable(el, options) {
+ _classCallCheck(this, BootstrapTable);
- if (typeof option === 'string') {
- var _data2;
+ this.options = options;
+ this.$el = $(el);
+ this.$el_ = this.$el.clone();
+ this.timeoutId_ = 0;
+ this.timeoutFooter_ = 0;
+ this.init();
+ }
- if (!allowedMethods.includes(option)) {
- throw new Error('Unknown method: ' + option);
- }
+ _createClass(BootstrapTable, [{
+ key: "init",
+ value: function init() {
+ this.initConstants();
+ this.initLocale();
+ this.initContainer();
+ this.initTable();
+ this.initHeader();
+ this.initData();
+ this.initHiddenRows();
+ this.initToolbar();
+ this.initPagination();
+ this.initBody();
+ this.initSearchText();
+ this.initServer();
+ }
+ }, {
+ key: "initConstants",
+ value: function initConstants() {
+ var o = this.options;
+ this.constants = Constants.CONSTANTS;
+ this.constants.theme = $.fn.bootstrapTable.theme;
+ var buttonsPrefix = o.buttonsPrefix ? "".concat(o.buttonsPrefix, "-") : '';
+ this.constants.buttonsClass = [o.buttonsPrefix, buttonsPrefix + o.buttonsClass, Utils.sprintf("".concat(buttonsPrefix, "%s"), o.iconSize)].join(' ').trim();
+ }
+ }, {
+ key: "initLocale",
+ value: function initLocale() {
+ if (this.options.locale) {
+ var locales = $.fn.bootstrapTable.locales;
+ var parts = this.options.locale.split(/-|_/);
+ parts[0] = parts[0].toLowerCase();
- if (!data) {
- return;
- }
+ if (parts[1]) {
+ parts[1] = parts[1].toUpperCase();
+ }
- value = (_data2 = data)[option].apply(_data2, args);
+ if (locales[this.options.locale]) {
+ $.extend(this.options, locales[this.options.locale]);
+ } else if (locales[parts.join('-')]) {
+ $.extend(this.options, locales[parts.join('-')]);
+ } else if (locales[parts[0]]) {
+ $.extend(this.options, locales[parts[0]]);
+ }
+ }
+ }
+ }, {
+ key: "initContainer",
+ value: function initContainer() {
+ var topPagination = ['top', 'both'].includes(this.options.paginationVAlign) ? '<div class="fixed-table-pagination clearfix"></div>' : '';
+ var bottomPagination = ['bottom', 'both'].includes(this.options.paginationVAlign) ? '<div class="fixed-table-pagination"></div>' : '';
+ this.$container = $("\n <div class=\"bootstrap-table ".concat(this.constants.theme, "\">\n <div class=\"fixed-table-toolbar\"></div>\n ").concat(topPagination, "\n <div class=\"fixed-table-container\">\n <div class=\"fixed-table-header\"><table></table></div>\n <div class=\"fixed-table-body\">\n <div class=\"fixed-table-loading\">\n <span class=\"loading-wrap\">\n <span class=\"loading-text\">").concat(this.options.formatLoadingMessage(), "</span>\n <span class=\"animation-wrap\"><span class=\"animation-dot\"></span></span>\n </span>\n </div>\n </div>\n <div class=\"fixed-table-footer\"><table><thead><tr></tr></thead></table></div>\n </div>\n ").concat(bottomPagination, "\n </div>\n "));
+ this.$container.insertAfter(this.$el);
+ this.$tableContainer = this.$container.find('.fixed-table-container');
+ this.$tableHeader = this.$container.find('.fixed-table-header');
+ this.$tableBody = this.$container.find('.fixed-table-body');
+ this.$tableLoading = this.$container.find('.fixed-table-loading');
+ this.$tableFooter = this.$el.find('tfoot'); // checking if custom table-toolbar exists or not
- if (option === 'destroy') {
- $(el).removeData('bootstrap.table');
- }
- }
+ if (this.options.buttonsToolbar) {
+ this.$toolbar = $('body').find(this.options.buttonsToolbar);
+ } else {
+ this.$toolbar = this.$container.find('.fixed-table-toolbar');
+ }
- if (!data) {
- $(el).data('bootstrap.table', data = new $.BootstrapTable(el, options));
- }
- });
+ this.$pagination = this.$container.find('.fixed-table-pagination');
+ this.$tableBody.append(this.$el);
+ this.$container.after('<div class="clearfix"></div>');
+ this.$el.addClass(this.options.classes);
+ this.$tableLoading.addClass(this.options.classes);
- return typeof value === 'undefined' ? this : value;
- };
+ if (this.options.height) {
+ this.$tableContainer.addClass('fixed-height');
- $.fn.bootstrapTable.Constructor = BootstrapTable;
- $.fn.bootstrapTable.defaults = BootstrapTable.DEFAULTS;
- $.fn.bootstrapTable.columnDefaults = BootstrapTable.COLUMN_DEFAULTS;
- $.fn.bootstrapTable.locales = BootstrapTable.LOCALES;
- $.fn.bootstrapTable.methods = allowedMethods;
- $.fn.bootstrapTable.utils = Utils;
+ if (this.options.showFooter) {
+ this.$tableContainer.addClass('has-footer');
+ }
- // BOOTSTRAP TABLE INIT
- // =======================
+ if (this.options.classes.split(' ').includes('table-bordered')) {
+ this.$tableBody.append('<div class="fixed-table-border"></div>');
+ this.$tableBorder = this.$tableBody.find('.fixed-table-border');
+ this.$tableLoading.addClass('fixed-table-border');
+ }
- $(function () {
- $('[data-toggle="table"]').bootstrapTable();
- });
- })(jQuery);
-});
\ No newline at end of file
+ this.$tableFooter = this.$container.find('.fixed-table-footer');
+ } else {
+ if (!this.$tableFooter.length) {
+ this.$el.append('<tfoot><tr></tr></tfoot>');
+ this.$tableFooter = this.$el.find('tfoot');
+ }
+ }
+ }
+ }, {
+ key: "initTable",
+ value: function initTable() {
+ var _this = this;
+
+ var columns = [];
+ var data = [];
+ this.$header = this.$el.find('>thead');
+
+ if (!this.$header.length) {
+ this.$header = $("<thead class=\"".concat(this.options.theadClasses, "\"></thead>")).appendTo(this.$el);
+ } else if (this.options.theadClasses) {
+ this.$header.addClass(this.options.theadClasses);
+ }
+
+ this.$header.find('tr').each(function (i, el) {
+ var column = [];
+ $(el).find('th').each(function (i, el) {
+ // #2014: getFieldIndex and elsewhere assume this is string, causes issues if not
+ if (typeof $(el).data('field') !== 'undefined') {
+ $(el).data('field', "".concat($(el).data('field')));
+ }
+
+ column.push($.extend({}, {
+ title: $(el).html(),
+ 'class': $(el).attr('class'),
+ titleTooltip: $(el).attr('title'),
+ rowspan: $(el).attr('rowspan') ? +$(el).attr('rowspan') : undefined,
+ colspan: $(el).attr('colspan') ? +$(el).attr('colspan') : undefined
+ }, $(el).data()));
+ });
+ columns.push(column);
+ });
+
+ if (!Array.isArray(this.options.columns[0])) {
+ this.options.columns = [this.options.columns];
+ }
+
+ this.options.columns = $.extend(true, [], columns, this.options.columns);
+ this.columns = [];
+ this.fieldsColumnsIndex = [];
+ Utils.setFieldIndex(this.options.columns);
+ this.options.columns.forEach(function (columns, i) {
+ columns.forEach(function (_column, j) {
+ var column = $.extend({}, BootstrapTable.COLUMN_DEFAULTS, _column);
+
+ if (typeof column.fieldIndex !== 'undefined') {
+ _this.columns[column.fieldIndex] = column;
+ _this.fieldsColumnsIndex[column.field] = column.fieldIndex;
+ }
+
+ _this.options.columns[i][j] = column;
+ });
+ }); // if options.data is setting, do not process tbody and tfoot data
+
+ if (!this.options.data.length) {
+ this.options.data = Utils.trToData(this.columns, this.$el.find('>tbody>tr'));
+
+ if (data.length) {
+ this.fromHtml = true;
+ }
+ }
+
+ this.footerData = Utils.trToData(this.columns, this.$el.find('>tfoot>tr'));
+
+ if (this.footerData) {
+ this.$el.find('tfoot').html('<tr></tr>');
+ }
+
+ if (!this.options.showFooter || this.options.cardView) {
+ this.$tableFooter.hide();
+ } else {
+ this.$tableFooter.show();
+ }
+ }
+ }, {
+ key: "initHeader",
+ value: function initHeader() {
+ var _this2 = this;
+
+ var visibleColumns = {};
+ var html = [];
+ this.header = {
+ fields: [],
+ styles: [],
+ classes: [],
+ formatters: [],
+ detailFormatters: [],
+ events: [],
+ sorters: [],
+ sortNames: [],
+ cellStyles: [],
+ searchables: []
+ };
+ Utils.updateFieldGroup(this.options.columns);
+ this.options.columns.forEach(function (columns, i) {
+ html.push('<tr>');
+
+ if (i === 0 && !_this2.options.cardView && _this2.options.detailView && _this2.options.detailViewIcon) {
+ html.push("<th class=\"detail\" rowspan=\"".concat(_this2.options.columns.length, "\">\n <div class=\"fht-cell\"></div>\n </th>\n "));
+ }
+
+ columns.forEach(function (column, j) {
+ var class_ = Utils.sprintf(' class="%s"', column['class']);
+ var unitWidth = column.widthUnit;
+ var width = parseFloat(column.width);
+ var halign = Utils.sprintf('text-align: %s; ', column.halign ? column.halign : column.align);
+ var align = Utils.sprintf('text-align: %s; ', column.align);
+ var style = Utils.sprintf('vertical-align: %s; ', column.valign);
+ style += Utils.sprintf('width: %s; ', (column.checkbox || column.radio) && !width ? !column.showSelectTitle ? '36px' : undefined : width ? width + unitWidth : undefined);
+
+ if (typeof column.fieldIndex === 'undefined' && !column.visible) {
+ return;
+ }
+
+ if (typeof column.fieldIndex !== 'undefined') {
+ _this2.header.fields[column.fieldIndex] = column.field;
+ _this2.header.styles[column.fieldIndex] = align + style;
+ _this2.header.classes[column.fieldIndex] = class_;
+ _this2.header.formatters[column.fieldIndex] = column.formatter;
+ _this2.header.detailFormatters[column.fieldIndex] = column.detailFormatter;
+ _this2.header.events[column.fieldIndex] = column.events;
+ _this2.header.sorters[column.fieldIndex] = column.sorter;
+ _this2.header.sortNames[column.fieldIndex] = column.sortName;
+ _this2.header.cellStyles[column.fieldIndex] = column.cellStyle;
+ _this2.header.searchables[column.fieldIndex] = column.searchable;
+
+ if (!column.visible) {
+ return;
+ }
+
+ if (_this2.options.cardView && !column.cardVisible) {
+ return;
+ }
+
+ visibleColumns[column.field] = column;
+ }
+
+ html.push("<th".concat(Utils.sprintf(' title="%s"', column.titleTooltip)), column.checkbox || column.radio ? Utils.sprintf(' class="bs-checkbox %s"', column['class'] || '') : class_, Utils.sprintf(' style="%s"', halign + style), Utils.sprintf(' rowspan="%s"', column.rowspan), Utils.sprintf(' colspan="%s"', column.colspan), Utils.sprintf(' data-field="%s"', column.field), // If `column` is not the first element of `this.options.columns[0]`, then className 'data-not-first-th' should be added.
+ j === 0 && i > 0 ? ' data-not-first-th' : '', '>');
+ html.push(Utils.sprintf('<div class="th-inner %s">', _this2.options.sortable && column.sortable ? 'sortable both' : ''));
+ var text = _this2.options.escape ? Utils.escapeHTML(column.title) : column.title;
+ var title = text;
+
+ if (column.checkbox) {
+ text = '';
+
+ if (!_this2.options.singleSelect && _this2.options.checkboxHeader) {
+ text = '<label><input name="btSelectAll" type="checkbox" /><span></span></label>';
+ }
+
+ _this2.header.stateField = column.field;
+ }
+
+ if (column.radio) {
+ text = '';
+ _this2.header.stateField = column.field;
+ _this2.options.singleSelect = true;
+ }
+
+ if (!text && column.showSelectTitle) {
+ text += title;
+ }
+
+ html.push(text);
+ html.push('</div>');
+ html.push('<div class="fht-cell"></div>');
+ html.push('</div>');
+ html.push('</th>');
+ });
+ html.push('</tr>');
+ });
+ this.$header.html(html.join(''));
+ this.$header.find('th[data-field]').each(function (i, el) {
+ $(el).data(visibleColumns[$(el).data('field')]);
+ });
+ this.$container.off('click', '.th-inner').on('click', '.th-inner', function (e) {
+ var $this = $(e.currentTarget);
+
+ if (_this2.options.detailView && !$this.parent().hasClass('bs-checkbox')) {
+ if ($this.closest('.bootstrap-table')[0] !== _this2.$container[0]) {
+ return false;
+ }
+ }
+
+ if (_this2.options.sortable && $this.parent().data().sortable) {
+ _this2.onSort(e);
+ }
+ });
+ this.$header.children().children().off('keypress').on('keypress', function (e) {
+ if (_this2.options.sortable && $(e.currentTarget).data().sortable) {
+ var code = e.keyCode || e.which;
+
+ if (code === 13) {
+ // Enter keycode
+ _this2.onSort(e);
+ }
+ }
+ });
+ var resizeEvent = "resize.bootstrap-table".concat(this.$el.attr('id') || '');
+ $(window).off(resizeEvent);
+
+ if (!this.options.showHeader || this.options.cardView) {
+ this.$header.hide();
+ this.$tableHeader.hide();
+ this.$tableLoading.css('top', 0);
+ } else {
+ this.$header.show();
+ this.$tableHeader.show();
+ this.$tableLoading.css('top', this.$header.outerHeight() + 1); // Assign the correct sortable arrow
+
+ this.getCaret();
+ $(window).on(resizeEvent, function (e) {
+ return _this2.resetWidth(e);
+ });
+ }
+
+ this.$selectAll = this.$header.find('[name="btSelectAll"]');
+ this.$selectAll.off('click').on('click', function (_ref) {
+ var currentTarget = _ref.currentTarget;
+ var checked = $(currentTarget).prop('checked');
+
+ _this2[checked ? 'checkAll' : 'uncheckAll']();
+
+ _this2.updateSelected();
+ });
+ }
+ }, {
+ key: "initData",
+ value: function initData(data, type) {
+ if (type === 'append') {
+ this.options.data = this.options.data.concat(data);
+ } else if (type === 'prepend') {
+ this.options.data = [].concat(data).concat(this.options.data);
+ } else {
+ this.options.data = data || this.options.data;
+ }
+
+ this.data = this.options.data;
+
+ if (this.options.sidePagination === 'server') {
+ return;
+ }
+
+ this.initSort();
+ }
+ }, {
+ key: "initSort",
+ value: function initSort() {
+ var _this3 = this;
+
+ var name = this.options.sortName;
+ var order = this.options.sortOrder === 'desc' ? -1 : 1;
+ var index = this.header.fields.indexOf(this.options.sortName);
+ var timeoutId = 0;
+
+ if (index !== -1) {
+ if (this.options.sortStable) {
+ this.data.forEach(function (row, i) {
+ if (!row.hasOwnProperty('_position')) {
+ row._position = i;
+ }
+ });
+ }
+
+ if (this.options.customSort) {
+ Utils.calculateObjectValue(this.options, this.options.customSort, [this.options.sortName, this.options.sortOrder, this.data]);
+ } else {
+ this.data.sort(function (a, b) {
+ if (_this3.header.sortNames[index]) {
+ name = _this3.header.sortNames[index];
+ }
+
+ var aa = Utils.getItemField(a, name, _this3.options.escape);
+ var bb = Utils.getItemField(b, name, _this3.options.escape);
+ var value = Utils.calculateObjectValue(_this3.header, _this3.header.sorters[index], [aa, bb, a, b]);
+
+ if (value !== undefined) {
+ if (_this3.options.sortStable && value === 0) {
+ return order * (a._position - b._position);
+ }
+
+ return order * value;
+ }
+
+ return Utils.sort(aa, bb, order, _this3.options.sortStable);
+ });
+ }
+
+ if (this.options.sortClass !== undefined) {
+ clearTimeout(timeoutId);
+ timeoutId = setTimeout(function () {
+ _this3.$el.removeClass(_this3.options.sortClass);
+
+ var index = _this3.$header.find("[data-field=\"".concat(_this3.options.sortName, "\"]")).index();
+
+ _this3.$el.find("tr td:nth-child(".concat(index + 1, ")")).addClass(_this3.options.sortClass);
+ }, 250);
+ }
+ }
+ }
+ }, {
+ key: "onSort",
+ value: function onSort(_ref2) {
+ var type = _ref2.type,
+ currentTarget = _ref2.currentTarget;
+ var $this = type === 'keypress' ? $(currentTarget) : $(currentTarget).parent();
+ var $this_ = this.$header.find('th').eq($this.index());
+ this.$header.add(this.$header_).find('span.order').remove();
+
+ if (this.options.sortName === $this.data('field')) {
+ this.options.sortOrder = this.options.sortOrder === 'asc' ? 'desc' : 'asc';
+ } else {
+ this.options.sortName = $this.data('field');
+
+ if (this.options.rememberOrder) {
+ this.options.sortOrder = $this.data('order') === 'asc' ? 'desc' : 'asc';
+ } else {
+ this.options.sortOrder = this.columns[this.fieldsColumnsIndex[$this.data('field')]].sortOrder || this.columns[this.fieldsColumnsIndex[$this.data('field')]].order;
+ }
+ }
+
+ this.trigger('sort', this.options.sortName, this.options.sortOrder);
+ $this.add($this_).data('order', this.options.sortOrder); // Assign the correct sortable arrow
+
+ this.getCaret();
+
+ if (this.options.sidePagination === 'server') {
+ this.options.pageNumber = 1;
+ this.initServer(this.options.silentSort);
+ return;
+ }
+
+ this.initSort();
+ this.initBody();
+ }
+ }, {
+ key: "initToolbar",
+ value: function initToolbar() {
+ var _this4 = this;
+
+ var o = this.options;
+ var html = [];
+ var timeoutId = 0;
+ var $keepOpen;
+ var $search;
+ var switchableCount = 0;
+
+ if (this.$toolbar.find('.bs-bars').children().length) {
+ $('body').append($(o.toolbar));
+ }
+
+ this.$toolbar.html('');
+
+ if (typeof o.toolbar === 'string' || _typeof(o.toolbar) === 'object') {
+ $(Utils.sprintf('<div class="bs-bars %s-%s"></div>', this.constants.classes.pull, o.toolbarAlign)).appendTo(this.$toolbar).append($(o.toolbar));
+ } // showColumns, showToggle, showRefresh
+
+
+ html = ["<div class=\"".concat(['columns', "columns-".concat(o.buttonsAlign), this.constants.classes.buttonsGroup, "".concat(this.constants.classes.pull, "-").concat(o.buttonsAlign)].join(' '), "\">")];
+
+ if (typeof o.icons === 'string') {
+ o.icons = Utils.calculateObjectValue(null, o.icons);
+ }
+
+ if (o.showPaginationSwitch) {
+ html.push("<button class=\"".concat(this.constants.buttonsClass, "\" type=\"button\" name=\"paginationSwitch\"\n aria-label=\"Pagination Switch\" title=\"").concat(o.formatPaginationSwitch(), "\">\n ").concat(o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.paginationSwitchDown) : '', "\n ").concat(o.showButtonText ? o.formatPaginationSwitchUp() : '', "\n </button>"));
+ }
+
+ if (o.showRefresh) {
+ html.push("<button class=\"".concat(this.constants.buttonsClass, "\" type=\"button\" name=\"refresh\"\n aria-label=\"Refresh\" title=\"").concat(o.formatRefresh(), "\">\n ").concat(o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.refresh) : '', "\n ").concat(o.showButtonText ? o.formatRefresh() : '', "\n </button>"));
+ }
+
+ if (o.showToggle) {
+ html.push("<button class=\"".concat(this.constants.buttonsClass, "\" type=\"button\" name=\"toggle\"\n aria-label=\"Toggle\" title=\"").concat(o.formatToggle(), "\">\n ").concat(o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.toggleOff) : '', "\n ").concat(o.showButtonText ? o.formatToggleOn() : '', "\n </button>"));
+ }
+
+ if (o.showFullscreen) {
+ html.push("<button class=\"".concat(this.constants.buttonsClass, "\" type=\"button\" name=\"fullscreen\"\n aria-label=\"Fullscreen\" title=\"").concat(o.formatFullscreen(), "\">\n ").concat(o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.fullscreen) : '', "\n ").concat(o.showButtonText ? o.formatFullscreen() : '', "\n </button>"));
+ }
+
+ if (o.showColumns) {
+ html.push("<div class=\"keep-open ".concat(this.constants.classes.buttonsDropdown, "\" title=\"").concat(o.formatColumns(), "\">\n <button class=\"").concat(this.constants.buttonsClass, " dropdown-toggle\" type=\"button\" data-toggle=\"dropdown\"\n aria-label=\"Columns\" title=\"").concat(o.formatColumns(), "\">\n ").concat(o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.columns) : '', "\n ").concat(o.showButtonText ? o.formatColumns() : '', "\n ").concat(this.constants.html.dropdownCaret, "\n </button>\n ").concat(this.constants.html.toolbarDropdown[0]));
+
+ if (o.showColumnsToggleAll) {
+ var allFieldsVisible = this.getVisibleColumns().length === this.columns.length;
+ html.push(Utils.sprintf(this.constants.html.toolbarDropdownItem, Utils.sprintf('<input type="checkbox" class="toggle-all" %s> <span>%s</span>', allFieldsVisible ? 'checked="checked"' : '', o.formatColumnsToggleAll())));
+ html.push(this.constants.html.toolbarDropdownSeperator);
+ }
+
+ this.columns.forEach(function (column, i) {
+ if (column.radio || column.checkbox) {
+ return;
+ }
+
+ if (o.cardView && !column.cardVisible) {
+ return;
+ }
+
+ var checked = column.visible ? ' checked="checked"' : '';
+
+ if (column.switchable) {
+ html.push(Utils.sprintf(_this4.constants.html.toolbarDropdownItem, Utils.sprintf('<input type="checkbox" data-field="%s" value="%s"%s> <span>%s</span>', column.field, i, checked, column.title)));
+ switchableCount++;
+ }
+ });
+ html.push(this.constants.html.toolbarDropdown[1], '</div>');
+ }
+
+ html.push('</div>'); // Fix #188: this.showToolbar is for extensions
+
+ if (this.showToolbar || html.length > 2) {
+ this.$toolbar.append(html.join(''));
+ }
+
+ if (o.showPaginationSwitch) {
+ this.$toolbar.find('button[name="paginationSwitch"]').off('click').on('click', function () {
+ return _this4.togglePagination();
+ });
+ }
+
+ if (o.showFullscreen) {
+ this.$toolbar.find('button[name="fullscreen"]').off('click').on('click', function () {
+ return _this4.toggleFullscreen();
+ });
+ }
+
+ if (o.showRefresh) {
+ this.$toolbar.find('button[name="refresh"]').off('click').on('click', function () {
+ return _this4.refresh();
+ });
+ }
+
+ if (o.showToggle) {
+ this.$toolbar.find('button[name="toggle"]').off('click').on('click', function () {
+ _this4.toggleView();
+ });
+ }
+
+ if (o.showColumns) {
+ $keepOpen = this.$toolbar.find('.keep-open');
+ var $checkboxes = $keepOpen.find('input:not(".toggle-all")');
+ var $toggleAll = $keepOpen.find('input.toggle-all');
+
+ if (switchableCount <= o.minimumCountColumns) {
+ $keepOpen.find('input').prop('disabled', true);
+ }
+
+ $keepOpen.find('li, label').off('click').on('click', function (e) {
+ e.stopImmediatePropagation();
+ });
+ $checkboxes.off('click').on('click', function (_ref3) {
+ var currentTarget = _ref3.currentTarget;
+ var $this = $(currentTarget);
+
+ _this4._toggleColumn($this.val(), $this.prop('checked'), false);
+
+ _this4.trigger('column-switch', $this.data('field'), $this.prop('checked'));
+
+ $toggleAll.prop('checked', $checkboxes.filter(':checked').length === _this4.columns.length);
+ });
+ $toggleAll.off('click').on('click', function (_ref4) {
+ var currentTarget = _ref4.currentTarget;
+
+ _this4._toggleAllColumns($(currentTarget).prop('checked'));
+ });
+ } // Fix #4516: this.showSearchClearButton is for extensions
+
+
+ if (o.search || this.showSearchClearButton) {
+ html = [];
+ var showSearchButton = Utils.sprintf(this.constants.html.searchButton, this.constants.buttonsClass, o.formatSearch(), o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.search) : '', o.showButtonText ? o.formatSearch() : '');
+ var showSearchClearButton = Utils.sprintf(this.constants.html.searchClearButton, this.constants.buttonsClass, o.formatClearSearch(), o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.clearSearch) : '', o.showButtonText ? o.formatClearSearch() : '');
+ var searchInputHtml = "<input class=\"".concat(this.constants.classes.input).concat(Utils.sprintf(' input-%s', o.iconSize), " search-input\" type=\"text\" placeholder=\"").concat(o.formatSearch(), "\">");
+ var searchInputFinalHtml = searchInputHtml;
+
+ if (o.showSearchButton || o.showSearchClearButton) {
+ var buttonsHtml = (o.showSearchButton ? showSearchButton : '') + (o.showSearchClearButton ? showSearchClearButton : '');
+ searchInputFinalHtml = o.search ? Utils.sprintf(this.constants.html.inputGroup, searchInputHtml, buttonsHtml) : buttonsHtml;
+ }
+
+ html.push(Utils.sprintf("\n <div class=\"".concat(this.constants.classes.pull, "-").concat(o.searchAlign, " search ").concat(this.constants.classes.inputGroup, "\">\n %s\n </div>\n "), searchInputFinalHtml));
+ this.$toolbar.append(html.join(''));
+ var $searchInput = this.$toolbar.find('.search input');
+ $search = o.showSearchButton ? this.$toolbar.find('.search button[name=search]') : $searchInput;
+ var eventTriggers = o.showSearchButton ? 'click' : Utils.isIEBrowser() ? 'mouseup' : 'keyup drop blur';
+ $search.off(eventTriggers).on(eventTriggers, function (event) {
+ if (o.searchOnEnterKey && event.keyCode !== 13) {
+ return;
+ }
+
+ if ([37, 38, 39, 40].includes(event.keyCode)) {
+ return;
+ }
+
+ clearTimeout(timeoutId); // doesn't matter if it's 0
+
+ timeoutId = setTimeout(function () {
+ _this4.onSearch(o.showSearchButton ? {
+ currentTarget: $searchInput
+ } : event);
+ }, o.searchTimeOut);
+ });
+
+ if (o.showSearchClearButton) {
+ this.$toolbar.find('.search button[name=clearSearch]').click(function () {
+ _this4.resetSearch();
+ });
+ }
+ }
+ }
+ }, {
+ key: "onSearch",
+ value: function onSearch() {
+ var _ref5 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
+ currentTarget = _ref5.currentTarget,
+ firedByInitSearchText = _ref5.firedByInitSearchText;
+
+ var overwriteSearchText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
+
+ if (currentTarget !== undefined && $(currentTarget).length && overwriteSearchText) {
+ var text = $(currentTarget).val().trim();
+
+ if (this.options.trimOnSearch && $(currentTarget).val() !== text) {
+ $(currentTarget).val(text);
+ }
+
+ if (this.searchText === text) {
+ return;
+ }
+
+ if ($(currentTarget).hasClass('search-input')) {
+ this.searchText = text;
+ this.options.searchText = text;
+ }
+ }
+
+ if (!firedByInitSearchText) {
+ this.options.pageNumber = 1;
+ }
+
+ this.initSearch();
+
+ if (firedByInitSearchText) {
+ if (this.options.sidePagination === 'client') {
+ this.updatePagination();
+ }
+ } else {
+ this.updatePagination();
+ }
+
+ this.trigger('search', this.searchText);
+ }
+ }, {
+ key: "initSearch",
+ value: function initSearch() {
+ var _this5 = this;
+
+ this.filterOptions = this.filterOptions || this.options.filterOptions;
+
+ if (this.options.sidePagination !== 'server') {
+ if (this.options.customSearch) {
+ this.data = Utils.calculateObjectValue(this.options, this.options.customSearch, [this.options.data, this.searchText, this.filterColumns]);
+ return;
+ }
+
+ var s = this.searchText && (this.options.escape ? Utils.escapeHTML(this.searchText) : this.searchText).toLowerCase();
+ var f = Utils.isEmptyObject(this.filterColumns) ? null : this.filterColumns; // Check filter
+
+ if (typeof this.filterOptions.filterAlgorithm === 'function') {
+ this.data = this.options.data.filter(function (item, i) {
+ return _this5.filterOptions.filterAlgorithm.apply(null, [item, f]);
+ });
+ } else if (typeof this.filterOptions.filterAlgorithm === 'string') {
+ this.data = f ? this.options.data.filter(function (item, i) {
+ var filterAlgorithm = _this5.filterOptions.filterAlgorithm;
+
+ if (filterAlgorithm === 'and') {
+ for (var key in f) {
+ if (Array.isArray(f[key]) && !f[key].includes(item[key]) || !Array.isArray(f[key]) && item[key] !== f[key]) {
+ return false;
+ }
+ }
+ } else if (filterAlgorithm === 'or') {
+ var match = false;
+
+ for (var _key in f) {
+ if (Array.isArray(f[_key]) && f[_key].includes(item[_key]) || !Array.isArray(f[_key]) && item[_key] === f[_key]) {
+ match = true;
+ }
+ }
+
+ return match;
+ }
+
+ return true;
+ }) : this.options.data;
+ }
+
+ var visibleFields = this.getVisibleFields();
+ this.data = s ? this.data.filter(function (item, i) {
+ for (var j = 0; j < _this5.header.fields.length; j++) {
+ if (!_this5.header.searchables[j] || _this5.options.visibleSearch && visibleFields.indexOf(_this5.header.fields[j]) === -1) {
+ continue;
+ }
+
+ var key = Utils.isNumeric(_this5.header.fields[j]) ? parseInt(_this5.header.fields[j], 10) : _this5.header.fields[j];
+ var column = _this5.columns[_this5.fieldsColumnsIndex[key]];
+ var value = void 0;
+
+ if (typeof key === 'string') {
+ value = item;
+ var props = key.split('.');
+
+ for (var _i = 0; _i < props.length; _i++) {
+ if (value[props[_i]] !== null) {
+ value = value[props[_i]];
+ }
+ }
+ } else {
+ value = item[key];
+ } // Fix #142: respect searchFormatter boolean
+
+
+ if (column && column.searchFormatter) {
+ value = Utils.calculateObjectValue(column, _this5.header.formatters[j], [value, item, i, column.field], value);
+ }
+
+ if (typeof value === 'string' || typeof value === 'number') {
+ if (_this5.options.strictSearch) {
+ if ("".concat(value).toLowerCase() === s) {
+ return true;
+ }
+ } else {
+ var largerSmallerEqualsRegex = /(?:(<=|=>|=<|>=|>|<)(?:\s+)?(\d+)?|(\d+)?(\s+)?(<=|=>|=<|>=|>|<))/gm;
+ var matches = largerSmallerEqualsRegex.exec(s);
+ var comparisonCheck = false;
+
+ if (matches) {
+ var operator = matches[1] || "".concat(matches[5], "l");
+ var comparisonValue = matches[2] || matches[3];
+ var int = parseInt(value, 10);
+ var comparisonInt = parseInt(comparisonValue, 10);
+
+ switch (operator) {
+ case '>':
+ case '<l':
+ comparisonCheck = int > comparisonInt;
+ break;
+
+ case '<':
+ case '>l':
+ comparisonCheck = int < comparisonInt;
+ break;
+
+ case '<=':
+ case '=<':
+ case '>=l':
+ case '=>l':
+ comparisonCheck = int <= comparisonInt;
+ break;
+
+ case '>=':
+ case '=>':
+ case '<=l':
+ case '=<l':
+ comparisonCheck = int >= comparisonInt;
+ break;
+
+ default:
+ break;
+ }
+ }
+
+ if (comparisonCheck || "".concat(value).toLowerCase().includes(s)) {
+ return true;
+ }
+ }
+ }
+ }
+
+ return false;
+ }) : this.data;
+ }
+ }
+ }, {
+ key: "initPagination",
+ value: function initPagination() {
+ var _this6 = this;
+
+ var o = this.options;
+
+ if (!o.pagination) {
+ this.$pagination.hide();
+ return;
+ }
+
+ this.$pagination.show();
+ var html = [];
+ var $allSelected = false;
+ var i;
+ var from;
+ var to;
+ var $pageList;
+ var $pre;
+ var $next;
+ var $number;
+ var data = this.getData({
+ includeHiddenRows: false
+ });
+ var pageList = o.pageList;
+
+ if (o.sidePagination !== 'server') {
+ o.totalRows = data.length;
+ }
+
+ this.totalPages = 0;
+
+ if (o.totalRows) {
+ if (o.pageSize === o.formatAllRows()) {
+ o.pageSize = o.totalRows;
+ $allSelected = true;
+ } else if (o.pageSize === o.totalRows) {
+ // Fix #667 Table with pagination,
+ // multiple pages and a search this matches to one page throws exception
+ var pageLst = typeof o.pageList === 'string' ? o.pageList.replace('[', '').replace(']', '').replace(/ /g, '').toLowerCase().split(',') : o.pageList;
+
+ if (pageLst.includes(o.formatAllRows().toLowerCase())) {
+ $allSelected = true;
+ }
+ }
+
+ this.totalPages = ~~((o.totalRows - 1) / o.pageSize) + 1;
+ o.totalPages = this.totalPages;
+ }
+
+ if (this.totalPages > 0 && o.pageNumber > this.totalPages) {
+ o.pageNumber = this.totalPages;
+ }
+
+ this.pageFrom = (o.pageNumber - 1) * o.pageSize + 1;
+ this.pageTo = o.pageNumber * o.pageSize;
+
+ if (this.pageTo > o.totalRows) {
+ this.pageTo = o.totalRows;
+ }
+
+ if (this.options.pagination && this.options.sidePagination !== 'server') {
+ this.options.totalNotFiltered = this.options.data.length;
+ }
+
+ if (!this.options.showExtendedPagination) {
+ this.options.totalNotFiltered = undefined;
+ }
+
+ var paginationInfo = o.onlyInfoPagination ? o.formatDetailPagination(o.totalRows) : o.formatShowingRows(this.pageFrom, this.pageTo, o.totalRows, o.totalNotFiltered);
+ html.push("<div class=\"".concat(this.constants.classes.pull, "-").concat(o.paginationDetailHAlign, " pagination-detail\">\n <span class=\"pagination-info\">\n ").concat(paginationInfo, "\n </span>"));
+
+ if (!o.onlyInfoPagination) {
+ html.push('<span class="page-list">');
+ var pageNumber = ["<span class=\"".concat(this.constants.classes.paginationDropdown, "\">\n <button class=\"").concat(this.constants.buttonsClass, " dropdown-toggle\" type=\"button\" data-toggle=\"dropdown\">\n <span class=\"page-size\">\n ").concat($allSelected ? o.formatAllRows() : o.pageSize, "\n </span>\n ").concat(this.constants.html.dropdownCaret, "\n </button>\n ").concat(this.constants.html.pageDropdown[0])];
+
+ if (typeof o.pageList === 'string') {
+ var list = o.pageList.replace('[', '').replace(']', '').replace(/ /g, '').split(',');
+ pageList = [];
+ var _iteratorNormalCompletion = true;
+ var _didIteratorError = false;
+ var _iteratorError = undefined;
+
+ try {
+ for (var _iterator = list[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
+ var value = _step.value;
+ pageList.push(value.toLowerCase() === o.formatAllRows().toLowerCase() || ['all', 'unlimited'].includes(value.toLowerCase()) ? o.formatAllRows() : +value);
+ }
+ } catch (err) {
+ _didIteratorError = true;
+ _iteratorError = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
+ _iterator.return();
+ }
+ } finally {
+ if (_didIteratorError) {
+ throw _iteratorError;
+ }
+ }
+ }
+ }
+
+ pageList.forEach(function (page, i) {
+ if (!o.smartDisplay || i === 0 || pageList[i - 1] < o.totalRows) {
+ var active;
+
+ if ($allSelected) {
+ active = page === o.formatAllRows() ? _this6.constants.classes.dropdownActive : '';
+ } else {
+ active = page === o.pageSize ? _this6.constants.classes.dropdownActive : '';
+ }
+
+ pageNumber.push(Utils.sprintf(_this6.constants.html.pageDropdownItem, active, page));
+ }
+ });
+ pageNumber.push("".concat(this.constants.html.pageDropdown[1], "</span>"));
+ html.push(o.formatRecordsPerPage(pageNumber.join('')));
+ html.push('</span></div>');
+ html.push("<div class=\"".concat(this.constants.classes.pull, "-").concat(o.paginationHAlign, " pagination\">"), Utils.sprintf(this.constants.html.pagination[0], Utils.sprintf(' pagination-%s', o.iconSize)), Utils.sprintf(this.constants.html.paginationItem, ' page-pre', o.formatSRPaginationPreText(), o.paginationPreText));
+
+ if (this.totalPages < o.paginationSuccessivelySize) {
+ from = 1;
+ to = this.totalPages;
+ } else {
+ from = o.pageNumber - o.paginationPagesBySide;
+ to = from + o.paginationPagesBySide * 2;
+ }
+
+ if (o.pageNumber < o.paginationSuccessivelySize - 1) {
+ to = o.paginationSuccessivelySize;
+ }
+
+ if (o.paginationSuccessivelySize > this.totalPages - from) {
+ from = from - (o.paginationSuccessivelySize - (this.totalPages - from)) + 1;
+ }
+
+ if (from < 1) {
+ from = 1;
+ }
+
+ if (to > this.totalPages) {
+ to = this.totalPages;
+ }
+
+ var middleSize = Math.round(o.paginationPagesBySide / 2);
+
+ var pageItem = function pageItem(i) {
+ var classes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
+ return Utils.sprintf(_this6.constants.html.paginationItem, classes + (i === o.pageNumber ? " ".concat(_this6.constants.classes.paginationActive) : ''), o.formatSRPaginationPageText(i), i);
+ };
+
+ if (from > 1) {
+ var max = o.paginationPagesBySide;
+ if (max >= from) max = from - 1;
+
+ for (i = 1; i <= max; i++) {
+ html.push(pageItem(i));
+ }
+
+ if (from - 1 === max + 1) {
+ i = from - 1;
+ html.push(pageItem(i));
+ } else {
+ if (from - 1 > max) {
+ if (from - o.paginationPagesBySide * 2 > o.paginationPagesBySide && o.paginationUseIntermediate) {
+ i = Math.round((from - middleSize) / 2 + middleSize);
+ html.push(pageItem(i, ' page-intermediate'));
+ } else {
+ html.push(Utils.sprintf(this.constants.html.paginationItem, ' page-first-separator disabled', '', '...'));
+ }
+ }
+ }
+ }
+
+ for (i = from; i <= to; i++) {
+ html.push(pageItem(i));
+ }
+
+ if (this.totalPages > to) {
+ var min = this.totalPages - (o.paginationPagesBySide - 1);
+ if (to >= min) min = to + 1;
+
+ if (to + 1 === min - 1) {
+ i = to + 1;
+ html.push(pageItem(i));
+ } else {
+ if (min > to + 1) {
+ if (this.totalPages - to > o.paginationPagesBySide * 2 && o.paginationUseIntermediate) {
+ i = Math.round((this.totalPages - middleSize - to) / 2 + to);
+ html.push(pageItem(i, ' page-intermediate'));
+ } else {
+ html.push(Utils.sprintf(this.constants.html.paginationItem, ' page-last-separator disabled', '', '...'));
+ }
+ }
+ }
+
+ for (i = min; i <= this.totalPages; i++) {
+ html.push(pageItem(i));
+ }
+ }
+
+ html.push(Utils.sprintf(this.constants.html.paginationItem, ' page-next', o.formatSRPaginationNextText(), o.paginationNextText));
+ html.push(this.constants.html.pagination[1], '</div>');
+ }
+
+ this.$pagination.html(html.join(''));
+ var dropupClass = ['bottom', 'both'].includes(o.paginationVAlign) ? " ".concat(this.constants.classes.dropup) : '';
+ this.$pagination.last().find('.page-list > span').addClass(dropupClass);
+
+ if (!o.onlyInfoPagination) {
+ $pageList = this.$pagination.find('.page-list a');
+ $pre = this.$pagination.find('.page-pre');
+ $next = this.$pagination.find('.page-next');
+ $number = this.$pagination.find('.page-item').not('.page-next, .page-pre, .page-last-separator, .page-first-separator');
+
+ if (this.totalPages <= 1) {
+ this.$pagination.find('div.pagination').hide();
+ }
+
+ if (o.smartDisplay) {
+ if (pageList.length < 2 || o.totalRows <= pageList[0]) {
+ this.$pagination.find('span.page-list').hide();
+ }
+ } // when data is empty, hide the pagination
+
+
+ this.$pagination[this.getData().length ? 'show' : 'hide']();
+
+ if (!o.paginationLoop) {
+ if (o.pageNumber === 1) {
+ $pre.addClass('disabled');
+ }
+
+ if (o.pageNumber === this.totalPages) {
+ $next.addClass('disabled');
+ }
+ }
+
+ if ($allSelected) {
+ o.pageSize = o.formatAllRows();
+ } // removed the events for last and first, onPageNumber executeds the same logic
+
+
+ $pageList.off('click').on('click', function (e) {
+ return _this6.onPageListChange(e);
+ });
+ $pre.off('click').on('click', function (e) {
+ return _this6.onPagePre(e);
+ });
+ $next.off('click').on('click', function (e) {
+ return _this6.onPageNext(e);
+ });
+ $number.off('click').on('click', function (e) {
+ return _this6.onPageNumber(e);
+ });
+ }
+ }
+ }, {
+ key: "updatePagination",
+ value: function updatePagination(event) {
+ // Fix #171: IE disabled button can be clicked bug.
+ if (event && $(event.currentTarget).hasClass('disabled')) {
+ return;
+ }
+
+ if (!this.options.maintainMetaData) {
+ this.resetRows();
+ }
+
+ this.initPagination();
+
+ if (this.options.sidePagination === 'server') {
+ this.initServer();
+ } else {
+ this.initBody();
+ }
+
+ this.trigger('page-change', this.options.pageNumber, this.options.pageSize);
+ }
+ }, {
+ key: "onPageListChange",
+ value: function onPageListChange(event) {
+ event.preventDefault();
+ var $this = $(event.currentTarget);
+ $this.parent().addClass(this.constants.classes.dropdownActive).siblings().removeClass(this.constants.classes.dropdownActive);
+ this.options.pageSize = $this.text().toUpperCase() === this.options.formatAllRows().toUpperCase() ? this.options.formatAllRows() : +$this.text();
+ this.$toolbar.find('.page-size').text(this.options.pageSize);
+ this.updatePagination(event);
+ return false;
+ }
+ }, {
+ key: "onPagePre",
+ value: function onPagePre(event) {
+ event.preventDefault();
+
+ if (this.options.pageNumber - 1 === 0) {
+ this.options.pageNumber = this.options.totalPages;
+ } else {
+ this.options.pageNumber--;
+ }
+
+ this.updatePagination(event);
+ return false;
+ }
+ }, {
+ key: "onPageNext",
+ value: function onPageNext(event) {
+ event.preventDefault();
+
+ if (this.options.pageNumber + 1 > this.options.totalPages) {
+ this.options.pageNumber = 1;
+ } else {
+ this.options.pageNumber++;
+ }
+
+ this.updatePagination(event);
+ return false;
+ }
+ }, {
+ key: "onPageNumber",
+ value: function onPageNumber(event) {
+ event.preventDefault();
+
+ if (this.options.pageNumber === +$(event.currentTarget).text()) {
+ return;
+ }
+
+ this.options.pageNumber = +$(event.currentTarget).text();
+ this.updatePagination(event);
+ return false;
+ }
+ }, {
+ key: "initRow",
+ value: function initRow(item, i, data, trFragments) {
+ var _this7 = this;
+
+ var html = [];
+ var style = {};
+ var csses = [];
+ var data_ = '';
+ var attributes = {};
+ var htmlAttributes = [];
+
+ if (Utils.findIndex(this.hiddenRows, item) > -1) {
+ return;
+ }
+
+ style = Utils.calculateObjectValue(this.options, this.options.rowStyle, [item, i], style);
+
+ if (style && style.css) {
+ for (var _i2 = 0, _Object$entries = Object.entries(style.css); _i2 < _Object$entries.length; _i2++) {
+ var _Object$entries$_i = _slicedToArray(_Object$entries[_i2], 2),
+ key = _Object$entries$_i[0],
+ value = _Object$entries$_i[1];
+
+ csses.push("".concat(key, ": ").concat(value));
+ }
+ }
+
+ attributes = Utils.calculateObjectValue(this.options, this.options.rowAttributes, [item, i], attributes);
+
+ if (attributes) {
+ for (var _i3 = 0, _Object$entries2 = Object.entries(attributes); _i3 < _Object$entries2.length; _i3++) {
+ var _Object$entries2$_i = _slicedToArray(_Object$entries2[_i3], 2),
+ key = _Object$entries2$_i[0],
+ value = _Object$entries2$_i[1];
+
+ htmlAttributes.push("".concat(key, "=\"").concat(Utils.escapeHTML(value), "\""));
+ }
+ }
+
+ if (item._data && !Utils.isEmptyObject(item._data)) {
+ for (var _i4 = 0, _Object$entries3 = Object.entries(item._data); _i4 < _Object$entries3.length; _i4++) {
+ var _Object$entries3$_i = _slicedToArray(_Object$entries3[_i4], 2),
+ k = _Object$entries3$_i[0],
+ v = _Object$entries3$_i[1];
+
+ // ignore data-index
+ if (k === 'index') {
+ return;
+ }
+
+ data_ += " data-".concat(k, "='").concat(_typeof(v) === 'object' ? JSON.stringify(v) : v, "'");
+ }
+ }
+
+ html.push('<tr', Utils.sprintf(' %s', htmlAttributes.length ? htmlAttributes.join(' ') : undefined), Utils.sprintf(' id="%s"', Array.isArray(item) ? undefined : item._id), Utils.sprintf(' class="%s"', style.classes || (Array.isArray(item) ? undefined : item._class)), " data-index=\"".concat(i, "\""), Utils.sprintf(' data-uniqueid="%s"', Utils.getItemField(item, this.options.uniqueId, false)), Utils.sprintf(' data-has-detail-view="%s"', !this.options.cardView && this.options.detailView && Utils.calculateObjectValue(null, this.options.detailFilter, [i, item]) ? 'true' : undefined), Utils.sprintf('%s', data_), '>');
+
+ if (this.options.cardView) {
+ html.push("<td colspan=\"".concat(this.header.fields.length, "\"><div class=\"card-views\">"));
+ }
+
+ if (!this.options.cardView && this.options.detailView && this.options.detailViewIcon) {
+ html.push('<td>');
+
+ if (Utils.calculateObjectValue(null, this.options.detailFilter, [i, item])) {
+ html.push("\n <a class=\"detail-icon\" href=\"#\">\n ".concat(Utils.sprintf(this.constants.html.icon, this.options.iconsPrefix, this.options.icons.detailOpen), "\n </a>\n "));
+ }
+
+ html.push('</td>');
+ }
+
+ this.header.fields.forEach(function (field, j) {
+ var text = '';
+ var value_ = Utils.getItemField(item, field, _this7.options.escape);
+ var value = '';
+ var type = '';
+ var cellStyle = {};
+ var id_ = '';
+ var class_ = _this7.header.classes[j];
+ var style_ = '';
+ var data_ = '';
+ var rowspan_ = '';
+ var colspan_ = '';
+ var title_ = '';
+ var column = _this7.columns[j];
+
+ if (_this7.fromHtml && typeof value_ === 'undefined') {
+ if (!column.checkbox && !column.radio) {
+ return;
+ }
+ }
+
+ if (!column.visible) {
+ return;
+ }
+
+ if (_this7.options.cardView && !column.cardVisible) {
+ return;
+ }
+
+ if (column.escape) {
+ value_ = Utils.escapeHTML(value_);
+ }
+
+ if (csses.concat([_this7.header.styles[j]]).length) {
+ style_ = " style=\"".concat(csses.concat([_this7.header.styles[j]]).join('; '), "\"");
+ } // handle td's id and class
+
+
+ if (item["_".concat(field, "_id")]) {
+ id_ = Utils.sprintf(' id="%s"', item["_".concat(field, "_id")]);
+ }
+
+ if (item["_".concat(field, "_class")]) {
+ class_ = Utils.sprintf(' class="%s"', item["_".concat(field, "_class")]);
+ }
+
+ if (item["_".concat(field, "_rowspan")]) {
+ rowspan_ = Utils.sprintf(' rowspan="%s"', item["_".concat(field, "_rowspan")]);
+ }
+
+ if (item["_".concat(field, "_colspan")]) {
+ colspan_ = Utils.sprintf(' colspan="%s"', item["_".concat(field, "_colspan")]);
+ }
+
+ if (item["_".concat(field, "_title")]) {
+ title_ = Utils.sprintf(' title="%s"', item["_".concat(field, "_title")]);
+ }
+
+ cellStyle = Utils.calculateObjectValue(_this7.header, _this7.header.cellStyles[j], [value_, item, i, field], cellStyle);
+
+ if (cellStyle.classes) {
+ class_ = " class=\"".concat(cellStyle.classes, "\"");
+ }
+
+ if (cellStyle.css) {
+ var csses_ = [];
+
+ for (var _i5 = 0, _Object$entries4 = Object.entries(cellStyle.css); _i5 < _Object$entries4.length; _i5++) {
+ var _Object$entries4$_i = _slicedToArray(_Object$entries4[_i5], 2),
+ key = _Object$entries4$_i[0],
+ _value = _Object$entries4$_i[1];
+
+ csses_.push("".concat(key, ": ").concat(_value));
+ }
+
+ style_ = " style=\"".concat(csses_.concat(_this7.header.styles[j]).join('; '), "\"");
+ }
+
+ value = Utils.calculateObjectValue(column, _this7.header.formatters[j], [value_, item, i, field], value_);
+
+ if (item["_".concat(field, "_data")] && !Utils.isEmptyObject(item["_".concat(field, "_data")])) {
+ for (var _i6 = 0, _Object$entries5 = Object.entries(item["_".concat(field, "_data")]); _i6 < _Object$entries5.length; _i6++) {
+ var _Object$entries5$_i = _slicedToArray(_Object$entries5[_i6], 2),
+ k = _Object$entries5$_i[0],
+ v = _Object$entries5$_i[1];
+
+ // ignore data-index
+ if (k === 'index') {
+ return;
+ }
+
+ data_ += " data-".concat(k, "=\"").concat(v, "\"");
+ }
+ }
+
+ if (column.checkbox || column.radio) {
+ type = column.checkbox ? 'checkbox' : type;
+ type = column.radio ? 'radio' : type;
+ var c = column['class'] || '';
+ var isChecked = (value === true || value_ || value && value.checked) && value !== false;
+ var isDisabled = !column.checkboxEnabled || value && value.disabled;
+ text = [_this7.options.cardView ? "<div class=\"card-view ".concat(c, "\">") : "<td class=\"bs-checkbox ".concat(c, "\"").concat(class_).concat(style_, ">"), "<label>\n <input\n data-index=\"".concat(i, "\"\n name=\"").concat(_this7.options.selectItemName, "\"\n type=\"").concat(type, "\"\n ").concat(Utils.sprintf('value="%s"', item[_this7.options.idField]), "\n ").concat(Utils.sprintf('checked="%s"', isChecked ? 'checked' : undefined), "\n ").concat(Utils.sprintf('disabled="%s"', isDisabled ? 'disabled' : undefined), " />\n <span></span>\n </label>"), _this7.header.formatters[j] && typeof value === 'string' ? value : '', _this7.options.cardView ? '</div>' : '</td>'].join('');
+ item[_this7.header.stateField] = value === true || !!value_ || value && value.checked;
+ } else {
+ value = typeof value === 'undefined' || value === null ? _this7.options.undefinedText : value;
+
+ if (_this7.options.cardView) {
+ var cardTitle = _this7.options.showHeader ? "<span class=\"card-view-title\"".concat(style_, ">").concat(Utils.getFieldTitle(_this7.columns, field), "</span>") : '';
+ text = "<div class=\"card-view\">".concat(cardTitle, "<span class=\"card-view-value\">").concat(value, "</span></div>");
+
+ if (_this7.options.smartDisplay && value === '') {
+ text = '<div class="card-view"></div>';
+ }
+ } else {
+ text = "<td".concat(id_).concat(class_).concat(style_).concat(data_).concat(rowspan_).concat(colspan_).concat(title_, ">").concat(value, "</td>");
+ }
+ }
+
+ html.push(text);
+ });
+
+ if (this.options.cardView) {
+ html.push('</div></td>');
+ }
+
+ html.push('</tr>');
+ return html.join('');
+ }
+ }, {
+ key: "initBody",
+ value: function initBody(fixedScroll) {
+ var _this8 = this;
+
+ var data = this.getData();
+ this.trigger('pre-body', data);
+ this.$body = this.$el.find('>tbody');
+
+ if (!this.$body.length) {
+ this.$body = $('<tbody></tbody>').appendTo(this.$el);
+ } // Fix #389 Bootstrap-table-flatJSON is not working
+
+
+ if (!this.options.pagination || this.options.sidePagination === 'server') {
+ this.pageFrom = 1;
+ this.pageTo = data.length;
+ }
+
+ var rows = [];
+ var trFragments = $(document.createDocumentFragment());
+ var hasTr = false;
+
+ for (var i = this.pageFrom - 1; i < this.pageTo; i++) {
+ var item = data[i];
+ var tr = this.initRow(item, i, data, trFragments);
+ hasTr = hasTr || !!tr;
+
+ if (tr && typeof tr === 'string') {
+ if (!this.options.virtualScroll) {
+ trFragments.append(tr);
+ } else {
+ rows.push(tr);
+ }
+ }
+ } // show no records
+
+
+ if (!hasTr) {
+ this.$body.html("<tr class=\"no-records-found\">".concat(Utils.sprintf('<td colspan="%s">%s</td>', this.$header.find('th').length, this.options.formatNoMatches()), "</tr>"));
+ } else {
+ if (!this.options.virtualScroll) {
+ this.$body.html(trFragments);
+ } else {
+ if (this.virtualScroll) {
+ this.virtualScroll.destroy();
+ }
+
+ this.virtualScroll = new VirtualScroll({
+ rows: rows,
+ scrollEl: this.$tableBody[0],
+ contentEl: this.$body[0],
+ itemHeight: this.options.virtualScrollItemHeight,
+ callback: function callback() {
+ _this8.fitHeader();
+ }
+ });
+ }
+ }
+
+ if (!fixedScroll) {
+ this.scrollTo(0);
+ } // click to select by column
+
+
+ this.$body.find('> tr[data-index] > td').off('click dblclick').on('click dblclick', function (e) {
+ var $td = $(e.currentTarget);
+ var $tr = $td.parent();
+ var $cardViewArr = $(e.target).parents('.card-views').children();
+ var $cardViewTarget = $(e.target).parents('.card-view');
+ var rowIndex = $tr.data('index');
+ var item = _this8.data[rowIndex];
+ var index = _this8.options.cardView ? $cardViewArr.index($cardViewTarget) : $td[0].cellIndex;
+
+ var fields = _this8.getVisibleFields();
+
+ var field = fields[_this8.options.detailView && _this8.detailViewIcon && !_this8.options.cardView ? index - 1 : index];
+ var column = _this8.columns[_this8.fieldsColumnsIndex[field]];
+ var value = Utils.getItemField(item, field, _this8.options.escape);
+
+ if ($td.find('.detail-icon').length) {
+ return;
+ }
+
+ _this8.trigger(e.type === 'click' ? 'click-cell' : 'dbl-click-cell', field, value, item, $td);
+
+ _this8.trigger(e.type === 'click' ? 'click-row' : 'dbl-click-row', item, $tr, field); // if click to select - then trigger the checkbox/radio click
+
+
+ if (e.type === 'click' && _this8.options.clickToSelect && column.clickToSelect && !Utils.calculateObjectValue(_this8.options, _this8.options.ignoreClickToSelectOn, [e.target])) {
+ var $selectItem = $tr.find(Utils.sprintf('[name="%s"]', _this8.options.selectItemName));
+
+ if ($selectItem.length) {
+ $selectItem[0].click();
+ }
+ }
+
+ if (e.type === 'click' && _this8.options.detailViewByClick) {
+ _this8.toggleDetailView(rowIndex, _this8.header.detailFormatters[_this8.fieldsColumnsIndex[field]]);
+ }
+ }).off('mousedown').on('mousedown', function (e) {
+ // https://github.com/jquery/jquery/issues/1741
+ _this8.multipleSelectRowCtrlKey = e.ctrlKey || e.metaKey;
+ _this8.multipleSelectRowShiftKey = e.shiftKey;
+ });
+ this.$body.find('> tr[data-index] > td > .detail-icon').off('click').on('click', function (e) {
+ e.preventDefault();
+
+ _this8.toggleDetailView($(e.currentTarget).parent().parent().data('index'));
+
+ return false;
+ });
+ this.$selectItem = this.$body.find(Utils.sprintf('[name="%s"]', this.options.selectItemName));
+ this.$selectItem.off('click').on('click', function (e) {
+ e.stopImmediatePropagation();
+ var $this = $(e.currentTarget);
+
+ _this8._toggleCheck($this.prop('checked'), $this.data('index'));
+ });
+ this.header.events.forEach(function (_events, i) {
+ var events = _events;
+
+ if (!events) {
+ return;
+ } // fix bug, if events is defined with namespace
+
+
+ if (typeof events === 'string') {
+ events = Utils.calculateObjectValue(null, events);
+ }
+
+ var field = _this8.header.fields[i];
+
+ var fieldIndex = _this8.getVisibleFields().indexOf(field);
+
+ if (fieldIndex === -1) {
+ return;
+ }
+
+ if (_this8.options.detailView && !_this8.options.cardView) {
+ fieldIndex += 1;
+ }
+
+ var _loop = function _loop(key) {
+ if (!events.hasOwnProperty(key)) {
+ return "continue";
+ }
+
+ var event = events[key];
+
+ _this8.$body.find('>tr:not(.no-records-found)').each(function (i, tr) {
+ var $tr = $(tr);
+ var $td = $tr.find(_this8.options.cardView ? '.card-views>.card-view' : '>td').eq(fieldIndex);
+ var index = key.indexOf(' ');
+ var name = key.substring(0, index);
+ var el = key.substring(index + 1);
+ $td.find(el).off(name).on(name, function (e) {
+ var index = $tr.data('index');
+ var row = _this8.data[index];
+ var value = row[field];
+ event.apply(_this8, [e, value, row, index]);
+ });
+ });
+ };
+
+ for (var key in events) {
+ var _ret = _loop(key);
+
+ if (_ret === "continue") continue;
+ }
+ });
+ this.updateSelected();
+ this.initFooter();
+ this.resetView();
+
+ if (this.options.sidePagination !== 'server') {
+ this.options.totalRows = data.length;
+ }
+
+ this.trigger('post-body', data);
+ }
+ }, {
+ key: "initServer",
+ value: function initServer(silent, query, url) {
+ var _this9 = this;
+
+ var data = {};
+ var index = this.header.fields.indexOf(this.options.sortName);
+ var params = {
+ searchText: this.searchText,
+ sortName: this.options.sortName,
+ sortOrder: this.options.sortOrder
+ };
+
+ if (this.header.sortNames[index]) {
+ params.sortName = this.header.sortNames[index];
+ }
+
+ if (this.options.pagination && this.options.sidePagination === 'server') {
+ params.pageSize = this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize;
+ params.pageNumber = this.options.pageNumber;
+ }
+
+ if (!(url || this.options.url) && !this.options.ajax) {
+ return;
+ }
+
+ if (this.options.queryParamsType === 'limit') {
+ params = {
+ search: params.searchText,
+ sort: params.sortName,
+ order: params.sortOrder
+ };
+
+ if (this.options.pagination && this.options.sidePagination === 'server') {
+ params.offset = this.options.pageSize === this.options.formatAllRows() ? 0 : this.options.pageSize * (this.options.pageNumber - 1);
+ params.limit = this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize;
+
+ if (params.limit === 0) {
+ delete params.limit;
+ }
+ }
+ }
+
+ if (!Utils.isEmptyObject(this.filterColumnsPartial)) {
+ params.filter = JSON.stringify(this.filterColumnsPartial, null);
+ }
+
+ $.extend(params, query || {});
+ data = Utils.calculateObjectValue(this.options, this.options.queryParams, [params], data); // false to stop request
+
+ if (data === false) {
+ return;
+ }
+
+ if (!silent) {
+ this.showLoading();
+ }
+
+ var request = $.extend({}, Utils.calculateObjectValue(null, this.options.ajaxOptions), {
+ type: this.options.method,
+ url: url || this.options.url,
+ data: this.options.contentType === 'application/json' && this.options.method === 'post' ? JSON.stringify(data) : data,
+ cache: this.options.cache,
+ contentType: this.options.contentType,
+ dataType: this.options.dataType,
+ success: function success(_res) {
+ var res = Utils.calculateObjectValue(_this9.options, _this9.options.responseHandler, [_res], _res);
+
+ _this9.load(res);
+
+ _this9.trigger('load-success', res);
+
+ if (!silent) {
+ _this9.hideLoading();
+ }
+ },
+ error: function error(jqXHR) {
+ var data = [];
+
+ if (_this9.options.sidePagination === 'server') {
+ data = {};
+ data[_this9.options.totalField] = 0;
+ data[_this9.options.dataField] = [];
+ }
+
+ _this9.load(data);
+
+ _this9.trigger('load-error', jqXHR.status, jqXHR);
+
+ if (!silent) _this9.$tableLoading.hide();
+ }
+ });
+
+ if (this.options.ajax) {
+ Utils.calculateObjectValue(this, this.options.ajax, [request], null);
+ } else {
+ if (this._xhr && this._xhr.readyState !== 4) {
+ this._xhr.abort();
+ }
+
+ this._xhr = $.ajax(request);
+ }
+
+ return data;
+ }
+ }, {
+ key: "initSearchText",
+ value: function initSearchText() {
+ if (this.options.search) {
+ this.searchText = '';
+
+ if (this.options.searchText !== '') {
+ var $search = this.$toolbar.find('.search input');
+ $search.val(this.options.searchText);
+ this.onSearch({
+ currentTarget: $search,
+ firedByInitSearchText: true
+ });
+ }
+ }
+ }
+ }, {
+ key: "getCaret",
+ value: function getCaret() {
+ var _this10 = this;
+
+ this.$header.find('th').each(function (i, th) {
+ $(th).find('.sortable').removeClass('desc asc').addClass($(th).data('field') === _this10.options.sortName ? _this10.options.sortOrder : 'both');
+ });
+ }
+ }, {
+ key: "updateSelected",
+ value: function updateSelected() {
+ var checkAll = this.$selectItem.filter(':enabled').length && this.$selectItem.filter(':enabled').length === this.$selectItem.filter(':enabled').filter(':checked').length;
+ this.$selectAll.add(this.$selectAll_).prop('checked', checkAll);
+ this.$selectItem.each(function (i, el) {
+ $(el).closest('tr')[$(el).prop('checked') ? 'addClass' : 'removeClass']('selected');
+ });
+ }
+ }, {
+ key: "updateRows",
+ value: function updateRows() {
+ var _this11 = this;
+
+ this.$selectItem.each(function (i, el) {
+ _this11.data[$(el).data('index')][_this11.header.stateField] = $(el).prop('checked');
+ });
+ }
+ }, {
+ key: "resetRows",
+ value: function resetRows() {
+ var _iteratorNormalCompletion2 = true;
+ var _didIteratorError2 = false;
+ var _iteratorError2 = undefined;
+
+ try {
+ for (var _iterator2 = this.data[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
+ var row = _step2.value;
+ this.$selectAll.prop('checked', false);
+ this.$selectItem.prop('checked', false);
+
+ if (this.header.stateField) {
+ row[this.header.stateField] = false;
+ }
+ }
+ } catch (err) {
+ _didIteratorError2 = true;
+ _iteratorError2 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion2 && _iterator2.return != null) {
+ _iterator2.return();
+ }
+ } finally {
+ if (_didIteratorError2) {
+ throw _iteratorError2;
+ }
+ }
+ }
+
+ this.initHiddenRows();
+ }
+ }, {
+ key: "trigger",
+ value: function trigger(_name) {
+ var _this$options;
+
+ var name = "".concat(_name, ".bs.table");
+
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key2 = 1; _key2 < _len; _key2++) {
+ args[_key2 - 1] = arguments[_key2];
+ }
+
+ (_this$options = this.options)[BootstrapTable.EVENTS[name]].apply(_this$options, args);
+
+ this.$el.trigger($.Event(name), args);
+ this.options.onAll(name, args);
+ this.$el.trigger($.Event('all.bs.table'), [name, args]);
+ }
+ }, {
+ key: "resetHeader",
+ value: function resetHeader() {
+ var _this12 = this;
+
+ // fix #61: the hidden table reset header bug.
+ // fix bug: get $el.css('width') error sometime (height = 500)
+ clearTimeout(this.timeoutId_);
+ this.timeoutId_ = setTimeout(function () {
+ return _this12.fitHeader();
+ }, this.$el.is(':hidden') ? 100 : 0);
+ }
+ }, {
+ key: "fitHeader",
+ value: function fitHeader() {
+ var _this13 = this;
+
+ if (this.$el.is(':hidden')) {
+ this.timeoutId_ = setTimeout(function () {
+ return _this13.fitHeader();
+ }, 100);
+ return;
+ }
+
+ var fixedBody = this.$tableBody.get(0);
+ var scrollWidth = fixedBody.scrollWidth > fixedBody.clientWidth && fixedBody.scrollHeight > fixedBody.clientHeight + this.$header.outerHeight() ? Utils.getScrollBarWidth() : 0;
+ this.$el.css('margin-top', -this.$header.outerHeight());
+ var focused = $(':focus');
+
+ if (focused.length > 0) {
+ var $th = focused.parents('th');
+
+ if ($th.length > 0) {
+ var dataField = $th.attr('data-field');
+
+ if (dataField !== undefined) {
+ var $headerTh = this.$header.find("[data-field='".concat(dataField, "']"));
+
+ if ($headerTh.length > 0) {
+ $headerTh.find(':input').addClass('focus-temp');
+ }
+ }
+ }
+ }
+
+ this.$header_ = this.$header.clone(true, true);
+ this.$selectAll_ = this.$header_.find('[name="btSelectAll"]');
+ this.$tableHeader.css('margin-right', scrollWidth).find('table').css('width', this.$el.outerWidth()).html('').attr('class', this.$el.attr('class')).append(this.$header_);
+ this.$tableLoading.css('width', this.$el.outerWidth());
+ var focusedTemp = $('.focus-temp:visible:eq(0)');
+
+ if (focusedTemp.length > 0) {
+ focusedTemp.focus();
+ this.$header.find('.focus-temp').removeClass('focus-temp');
+ } // fix bug: $.data() is not working as expected after $.append()
+
+
+ this.$header.find('th[data-field]').each(function (i, el) {
+ _this13.$header_.find(Utils.sprintf('th[data-field="%s"]', $(el).data('field'))).data($(el).data());
+ });
+ var visibleFields = this.getVisibleFields();
+ var $ths = this.$header_.find('th');
+ var $tr = this.$body.find('>tr:not(.no-records-found,.virtual-scroll-top)').eq(0);
+
+ while ($tr.length && $tr.find('>td[colspan]:not([colspan="1"])').length) {
+ $tr = $tr.next();
+ }
+
+ $tr.find('> *').each(function (i, el) {
+ var $this = $(el);
+ var index = i;
+
+ if (_this13.options.detailView && _this13.options.detailViewIcon && !_this13.options.cardView) {
+ if (i === 0) {
+ var $thDetail = $ths.filter('.detail');
+
+ var _zoomWidth = $thDetail.innerWidth() - $thDetail.find('.fht-cell').width();
+
+ $thDetail.find('.fht-cell').width($this.innerWidth() - _zoomWidth);
+ }
+
+ index = i - 1;
+ }
+
+ if (index === -1) {
+ return;
+ }
+
+ var $th = _this13.$header_.find(Utils.sprintf('th[data-field="%s"]', visibleFields[index]));
+
+ if ($th.length > 1) {
+ $th = $($ths[$this[0].cellIndex]);
+ }
+
+ var zoomWidth = $th.innerWidth() - $th.find('.fht-cell').width();
+ $th.find('.fht-cell').width($this.innerWidth() - zoomWidth);
+ });
+ this.horizontalScroll();
+ this.trigger('post-header');
+ }
+ }, {
+ key: "initFooter",
+ value: function initFooter() {
+ if (!this.options.showFooter || this.options.cardView) {
+ // do nothing
+ return;
+ }
+
+ var data = this.getData();
+ var html = [];
+
+ if (!this.options.cardView && this.options.detailView && this.options.detailViewIcon) {
+ html.push('<th class="detail"><div class="th-inner"></div><div class="fht-cell"></div></th>');
+ }
+
+ var _iteratorNormalCompletion3 = true;
+ var _didIteratorError3 = false;
+ var _iteratorError3 = undefined;
+
+ try {
+ for (var _iterator3 = this.columns[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
+ var column = _step3.value;
+ var falign = '';
+ var valign = '';
+ var csses = [];
+ var style = {};
+ var class_ = Utils.sprintf(' class="%s"', column['class']);
+
+ if (!column.visible) {
+ continue;
+ }
+
+ if (this.options.cardView && !column.cardVisible) {
+ return;
+ }
+
+ falign = Utils.sprintf('text-align: %s; ', column.falign ? column.falign : column.align);
+ valign = Utils.sprintf('vertical-align: %s; ', column.valign);
+ style = Utils.calculateObjectValue(null, this.options.footerStyle, [column]);
+
+ if (style && style.css) {
+ for (var _i7 = 0, _Object$entries6 = Object.entries(style.css); _i7 < _Object$entries6.length; _i7++) {
+ var _Object$entries6$_i = _slicedToArray(_Object$entries6[_i7], 2),
+ key = _Object$entries6$_i[0],
+ value = _Object$entries6$_i[1];
+
+ csses.push("".concat(key, ": ").concat(value));
+ }
+ }
+
+ if (style && style.classes) {
+ class_ = Utils.sprintf(' class="%s"', column['class'] ? [column['class'], style.classes].join(' ') : style.classes);
+ }
+
+ html.push('<th', class_, Utils.sprintf(' style="%s"', falign + valign + csses.concat().join('; ')), '>');
+ html.push('<div class="th-inner">');
+ html.push(Utils.calculateObjectValue(column, column.footerFormatter, [data], this.footerData[0] && this.footerData[0][column.field] || ''));
+ html.push('</div>');
+ html.push('<div class="fht-cell"></div>');
+ html.push('</div>');
+ html.push('</th>');
+ }
+ } catch (err) {
+ _didIteratorError3 = true;
+ _iteratorError3 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion3 && _iterator3.return != null) {
+ _iterator3.return();
+ }
+ } finally {
+ if (_didIteratorError3) {
+ throw _iteratorError3;
+ }
+ }
+ }
+
+ this.$tableFooter.find('tr').html(html.join(''));
+ this.trigger('post-footer', this.$tableFooter);
+ }
+ }, {
+ key: "fitFooter",
+ value: function fitFooter() {
+ var _this14 = this;
+
+ if (this.$el.is(':hidden')) {
+ setTimeout(function () {
+ return _this14.fitFooter();
+ }, 100);
+ return;
+ }
+
+ var fixedBody = this.$tableBody.get(0);
+ var scrollWidth = fixedBody.scrollWidth > fixedBody.clientWidth && fixedBody.scrollHeight > fixedBody.clientHeight + this.$header.outerHeight() ? Utils.getScrollBarWidth() : 0;
+ this.$tableFooter.css('margin-right', scrollWidth).find('table').css('width', this.$el.outerWidth()).attr('class', this.$el.attr('class'));
+ var visibleFields = this.getVisibleFields();
+ var $ths = this.$tableFooter.find('th');
+ var $tr = this.$body.find('>tr:first-child:not(.no-records-found)');
+
+ while ($tr.length && $tr.find('>td[colspan]:not([colspan="1"])').length) {
+ $tr = $tr.next();
+ }
+
+ $tr.find('> *').each(function (i, el) {
+ var $this = $(el);
+ var index = i;
+
+ if (_this14.options.detailView && !_this14.options.cardView) {
+ if (i === 0) {
+ var $thDetail = $ths.filter('.detail');
+
+ var _zoomWidth2 = $thDetail.innerWidth() - $thDetail.find('.fht-cell').width();
+
+ $thDetail.find('.fht-cell').width($this.innerWidth() - _zoomWidth2);
+ }
+
+ index = i - 1;
+ }
+
+ if (index === -1) {
+ return;
+ }
+
+ var $th = $ths.eq(i);
+ var zoomWidth = $th.innerWidth() - $th.find('.fht-cell').width();
+ $th.find('.fht-cell').width($this.innerWidth() - zoomWidth);
+ });
+ this.horizontalScroll();
+ }
+ }, {
+ key: "horizontalScroll",
+ value: function horizontalScroll() {
+ var _this15 = this;
+
+ // horizontal scroll event
+ // TODO: it's probably better improving the layout than binding to scroll event
+ this.trigger('scroll-body');
+ this.$tableBody.off('scroll').on('scroll', function (_ref6) {
+ var currentTarget = _ref6.currentTarget;
+
+ if (_this15.options.showHeader && _this15.options.height) {
+ _this15.$tableHeader.scrollLeft($(currentTarget).scrollLeft());
+ }
+
+ if (_this15.options.showFooter && !_this15.options.cardView) {
+ _this15.$tableFooter.scrollLeft($(currentTarget).scrollLeft());
+ }
+ });
+ }
+ }, {
+ key: "getVisibleFields",
+ value: function getVisibleFields() {
+ var visibleFields = [];
+ var _iteratorNormalCompletion4 = true;
+ var _didIteratorError4 = false;
+ var _iteratorError4 = undefined;
+
+ try {
+ for (var _iterator4 = this.header.fields[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) {
+ var field = _step4.value;
+ var column = this.columns[this.fieldsColumnsIndex[field]];
+
+ if (!column || !column.visible) {
+ continue;
+ }
+
+ visibleFields.push(field);
+ }
+ } catch (err) {
+ _didIteratorError4 = true;
+ _iteratorError4 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion4 && _iterator4.return != null) {
+ _iterator4.return();
+ }
+ } finally {
+ if (_didIteratorError4) {
+ throw _iteratorError4;
+ }
+ }
+ }
+
+ return visibleFields;
+ }
+ }, {
+ key: "initHiddenRows",
+ value: function initHiddenRows() {
+ this.hiddenRows = [];
+ } // PUBLIC FUNCTION DEFINITION
+ // =======================
+
+ }, {
+ key: "getOptions",
+ value: function getOptions() {
+ // deep copy and remove data
+ var options = $.extend({}, this.options);
+ delete options.data;
+ return $.extend(true, {}, options);
+ }
+ }, {
+ key: "refreshOptions",
+ value: function refreshOptions(options) {
+ // If the objects are equivalent then avoid the call of destroy / init methods
+ if (Utils.compareObjects(this.options, options, true)) {
+ return;
+ }
+
+ this.options = $.extend(this.options, options);
+ this.trigger('refresh-options', this.options);
+ this.destroy();
+ this.init();
+ }
+ }, {
+ key: "getData",
+ value: function getData(params) {
+ var data = this.options.data;
+
+ if (this.searchText || this.options.sortName || !Utils.isEmptyObject(this.filterColumns) || !Utils.isEmptyObject(this.filterColumnsPartial)) {
+ data = this.data;
+ }
+
+ if (params && params.useCurrentPage) {
+ data = data.slice(this.pageFrom - 1, this.pageTo);
+ }
+
+ if (params && !params.includeHiddenRows) {
+ var hiddenRows = this.getHiddenRows();
+ data = data.filter(function (row) {
+ return Utils.findIndex(hiddenRows, row) === -1;
+ });
+ }
+
+ return data;
+ }
+ }, {
+ key: "getSelections",
+ value: function getSelections() {
+ var _this16 = this;
+
+ // fix #2424: from html with checkbox
+ return this.data.filter(function (row) {
+ return row[_this16.header.stateField] === true;
+ });
+ }
+ }, {
+ key: "getAllSelections",
+ value: function getAllSelections() {
+ var _this17 = this;
+
+ return this.options.data.filter(function (row) {
+ return row[_this17.header.stateField] === true;
+ });
+ }
+ }, {
+ key: "load",
+ value: function load(_data) {
+ var fixedScroll = false;
+ var data = _data; // #431: support pagination
+
+ if (this.options.pagination && this.options.sidePagination === 'server') {
+ this.options.totalRows = data[this.options.totalField];
+ }
+
+ if (this.options.pagination && this.options.sidePagination === 'server') {
+ this.options.totalNotFiltered = data[this.options.totalNotFilteredField];
+ }
+
+ fixedScroll = data.fixedScroll;
+ data = Array.isArray(data) ? data : data[this.options.dataField];
+ this.initData(data);
+ this.initSearch();
+ this.initPagination();
+ this.initBody(fixedScroll);
+ }
+ }, {
+ key: "append",
+ value: function append(data) {
+ this.initData(data, 'append');
+ this.initSearch();
+ this.initPagination();
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "prepend",
+ value: function prepend(data) {
+ this.initData(data, 'prepend');
+ this.initSearch();
+ this.initPagination();
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "remove",
+ value: function remove(params) {
+ var len = this.options.data.length;
+ var i;
+ var row;
+
+ if (!params.hasOwnProperty('field') || !params.hasOwnProperty('values')) {
+ return;
+ }
+
+ for (i = len - 1; i >= 0; i--) {
+ row = this.options.data[i];
+
+ if (!row.hasOwnProperty(params.field)) {
+ continue;
+ }
+
+ if (params.values.includes(row[params.field])) {
+ this.options.data.splice(i, 1);
+
+ if (this.options.sidePagination === 'server') {
+ this.options.totalRows -= 1;
+ }
+ }
+ }
+
+ if (len === this.options.data.length) {
+ return;
+ }
+
+ this.initSearch();
+ this.initPagination();
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "removeAll",
+ value: function removeAll() {
+ if (this.options.data.length > 0) {
+ this.options.data.splice(0, this.options.data.length);
+ this.initSearch();
+ this.initPagination();
+ this.initBody(true);
+ }
+ }
+ }, {
+ key: "insertRow",
+ value: function insertRow(params) {
+ if (!params.hasOwnProperty('index') || !params.hasOwnProperty('row')) {
+ return;
+ }
+
+ this.options.data.splice(params.index, 0, params.row);
+ this.initSearch();
+ this.initPagination();
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "updateRow",
+ value: function updateRow(params) {
+ var allParams = Array.isArray(params) ? params : [params];
+ var _iteratorNormalCompletion5 = true;
+ var _didIteratorError5 = false;
+ var _iteratorError5 = undefined;
+
+ try {
+ for (var _iterator5 = allParams[Symbol.iterator](), _step5; !(_iteratorNormalCompletion5 = (_step5 = _iterator5.next()).done); _iteratorNormalCompletion5 = true) {
+ var _params = _step5.value;
+
+ if (!_params.hasOwnProperty('index') || !_params.hasOwnProperty('row')) {
+ continue;
+ }
+
+ $.extend(this.options.data[_params.index], _params.row);
+
+ if (_params.hasOwnProperty('replace') && _params.replace) {
+ this.options.data[_params.index] = _params.row;
+ } else {
+ $.extend(this.options.data[_params.index], _params.row);
+ }
+ }
+ } catch (err) {
+ _didIteratorError5 = true;
+ _iteratorError5 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion5 && _iterator5.return != null) {
+ _iterator5.return();
+ }
+ } finally {
+ if (_didIteratorError5) {
+ throw _iteratorError5;
+ }
+ }
+ }
+
+ this.initSearch();
+ this.initPagination();
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "getRowByUniqueId",
+ value: function getRowByUniqueId(_id) {
+ var uniqueId = this.options.uniqueId;
+ var len = this.options.data.length;
+ var id = _id;
+ var dataRow = null;
+ var i;
+ var row;
+ var rowUniqueId;
+
+ for (i = len - 1; i >= 0; i--) {
+ row = this.options.data[i];
+
+ if (row.hasOwnProperty(uniqueId)) {
+ // uniqueId is a column
+ rowUniqueId = row[uniqueId];
+ } else if (row._data && row._data.hasOwnProperty(uniqueId)) {
+ // uniqueId is a row data property
+ rowUniqueId = row._data[uniqueId];
+ } else {
+ continue;
+ }
+
+ if (typeof rowUniqueId === 'string') {
+ id = id.toString();
+ } else if (typeof rowUniqueId === 'number') {
+ if (Number(rowUniqueId) === rowUniqueId && rowUniqueId % 1 === 0) {
+ id = parseInt(id);
+ } else if (rowUniqueId === Number(rowUniqueId) && rowUniqueId !== 0) {
+ id = parseFloat(id);
+ }
+ }
+
+ if (rowUniqueId === id) {
+ dataRow = row;
+ break;
+ }
+ }
+
+ return dataRow;
+ }
+ }, {
+ key: "updateByUniqueId",
+ value: function updateByUniqueId(params) {
+ var allParams = Array.isArray(params) ? params : [params];
+ var _iteratorNormalCompletion6 = true;
+ var _didIteratorError6 = false;
+ var _iteratorError6 = undefined;
+
+ try {
+ for (var _iterator6 = allParams[Symbol.iterator](), _step6; !(_iteratorNormalCompletion6 = (_step6 = _iterator6.next()).done); _iteratorNormalCompletion6 = true) {
+ var _params2 = _step6.value;
+
+ if (!_params2.hasOwnProperty('id') || !_params2.hasOwnProperty('row')) {
+ continue;
+ }
+
+ var rowId = this.options.data.indexOf(this.getRowByUniqueId(_params2.id));
+
+ if (rowId === -1) {
+ continue;
+ }
+
+ if (_params2.hasOwnProperty('replace') && _params2.replace) {
+ this.options.data[rowId] = _params2.row;
+ } else {
+ $.extend(this.options.data[rowId], _params2.row);
+ }
+ }
+ } catch (err) {
+ _didIteratorError6 = true;
+ _iteratorError6 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion6 && _iterator6.return != null) {
+ _iterator6.return();
+ }
+ } finally {
+ if (_didIteratorError6) {
+ throw _iteratorError6;
+ }
+ }
+ }
+
+ this.initSearch();
+ this.initPagination();
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "removeByUniqueId",
+ value: function removeByUniqueId(id) {
+ var len = this.options.data.length;
+ var row = this.getRowByUniqueId(id);
+
+ if (row) {
+ this.options.data.splice(this.options.data.indexOf(row), 1);
+ }
+
+ if (len === this.options.data.length) {
+ return;
+ }
+
+ this.initSearch();
+ this.initPagination();
+ this.initBody(true);
+ }
+ }, {
+ key: "updateCell",
+ value: function updateCell(params) {
+ if (!params.hasOwnProperty('index') || !params.hasOwnProperty('field') || !params.hasOwnProperty('value')) {
+ return;
+ }
+
+ this.data[params.index][params.field] = params.value;
+
+ if (params.reinit === false) {
+ return;
+ }
+
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "updateCellByUniqueId",
+ value: function updateCellByUniqueId(params) {
+ var _this18 = this;
+
+ if (!params.hasOwnProperty('id') || !params.hasOwnProperty('field') || !params.hasOwnProperty('value')) {
+ return;
+ }
+
+ var allParams = Array.isArray(params) ? params : [params];
+ allParams.forEach(function (_ref7) {
+ var id = _ref7.id,
+ field = _ref7.field,
+ value = _ref7.value;
+
+ var rowId = _this18.options.data.indexOf(_this18.getRowByUniqueId(id));
+
+ if (rowId === -1) {
+ return;
+ }
+
+ _this18.options.data[rowId][field] = value;
+ });
+
+ if (params.reinit === false) {
+ return;
+ }
+
+ this.initSort();
+ this.initBody(true);
+ }
+ }, {
+ key: "showRow",
+ value: function showRow(params) {
+ this._toggleRow(params, true);
+ }
+ }, {
+ key: "hideRow",
+ value: function hideRow(params) {
+ this._toggleRow(params, false);
+ }
+ }, {
+ key: "_toggleRow",
+ value: function _toggleRow(params, visible) {
+ var row;
+
+ if (params.hasOwnProperty('index')) {
+ row = this.getData()[params.index];
+ } else if (params.hasOwnProperty('uniqueId')) {
+ row = this.getRowByUniqueId(params.uniqueId);
+ }
+
+ if (!row) {
+ return;
+ }
+
+ var index = Utils.findIndex(this.hiddenRows, row);
+
+ if (!visible && index === -1) {
+ this.hiddenRows.push(row);
+ } else if (visible && index > -1) {
+ this.hiddenRows.splice(index, 1);
+ }
+
+ if (visible) {
+ this.updatePagination();
+ } else {
+ this.initBody(true);
+ this.initPagination();
+ }
+ }
+ }, {
+ key: "getHiddenRows",
+ value: function getHiddenRows(show) {
+ if (show) {
+ this.initHiddenRows();
+ this.initBody(true);
+ return;
+ }
+
+ var data = this.getData();
+ var rows = [];
+ var _iteratorNormalCompletion7 = true;
+ var _didIteratorError7 = false;
+ var _iteratorError7 = undefined;
+
+ try {
+ for (var _iterator7 = data[Symbol.iterator](), _step7; !(_iteratorNormalCompletion7 = (_step7 = _iterator7.next()).done); _iteratorNormalCompletion7 = true) {
+ var row = _step7.value;
+
+ if (this.hiddenRows.includes(row)) {
+ rows.push(row);
+ }
+ }
+ } catch (err) {
+ _didIteratorError7 = true;
+ _iteratorError7 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion7 && _iterator7.return != null) {
+ _iterator7.return();
+ }
+ } finally {
+ if (_didIteratorError7) {
+ throw _iteratorError7;
+ }
+ }
+ }
+
+ this.hiddenRows = rows;
+ return rows;
+ }
+ }, {
+ key: "showColumn",
+ value: function showColumn(field) {
+ var _this19 = this;
+
+ var fields = Array.isArray(field) ? field : [field];
+ fields.forEach(function (field) {
+ _this19._toggleColumn(_this19.fieldsColumnsIndex[field], true, true);
+ });
+ }
+ }, {
+ key: "hideColumn",
+ value: function hideColumn(field) {
+ var _this20 = this;
+
+ var fields = Array.isArray(field) ? field : [field];
+ fields.forEach(function (field) {
+ _this20._toggleColumn(_this20.fieldsColumnsIndex[field], false, true);
+ });
+ }
+ }, {
+ key: "_toggleColumn",
+ value: function _toggleColumn(index, checked, needUpdate) {
+ if (index === -1 || this.columns[index].visible === checked) {
+ return;
+ }
+
+ this.columns[index].visible = checked;
+ this.initHeader();
+ this.initSearch();
+ this.initPagination();
+ this.initBody();
+
+ if (this.options.showColumns) {
+ var $items = this.$toolbar.find('.keep-open input').prop('disabled', false);
+
+ if (needUpdate) {
+ $items.filter(Utils.sprintf('[value="%s"]', index)).prop('checked', checked);
+ }
+
+ if ($items.filter(':checked').length <= this.options.minimumCountColumns) {
+ $items.filter(':checked').prop('disabled', true);
+ }
+ }
+ }
+ }, {
+ key: "getVisibleColumns",
+ value: function getVisibleColumns() {
+ return this.columns.filter(function (_ref8) {
+ var visible = _ref8.visible;
+ return visible;
+ });
+ }
+ }, {
+ key: "getHiddenColumns",
+ value: function getHiddenColumns() {
+ return this.columns.filter(function (_ref9) {
+ var visible = _ref9.visible;
+ return !visible;
+ });
+ }
+ }, {
+ key: "showAllColumns",
+ value: function showAllColumns() {
+ this._toggleAllColumns(true);
+ }
+ }, {
+ key: "hideAllColumns",
+ value: function hideAllColumns() {
+ this._toggleAllColumns(false);
+ }
+ }, {
+ key: "_toggleAllColumns",
+ value: function _toggleAllColumns(visible) {
+ var _this21 = this;
+
+ var _iteratorNormalCompletion8 = true;
+ var _didIteratorError8 = false;
+ var _iteratorError8 = undefined;
+
+ try {
+ for (var _iterator8 = this.columns.slice().reverse()[Symbol.iterator](), _step8; !(_iteratorNormalCompletion8 = (_step8 = _iterator8.next()).done); _iteratorNormalCompletion8 = true) {
+ var column = _step8.value;
+
+ if (column.switchable) {
+ if (!visible && this.options.showColumns && this.getVisibleColumns().length === this.options.minimumCountColumns) {
+ continue;
+ }
+
+ column.visible = visible;
+ }
+ }
+ } catch (err) {
+ _didIteratorError8 = true;
+ _iteratorError8 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion8 && _iterator8.return != null) {
+ _iterator8.return();
+ }
+ } finally {
+ if (_didIteratorError8) {
+ throw _iteratorError8;
+ }
+ }
+ }
+
+ this.initHeader();
+ this.initSearch();
+ this.initPagination();
+ this.initBody();
+
+ if (this.options.showColumns) {
+ var $items = this.$toolbar.find('.keep-open input:not(".toggle-all")').prop('disabled', false);
+
+ if (visible) {
+ $items.prop('checked', visible);
+ } else {
+ $items.get().reverse().forEach(function (item) {
+ if ($items.filter(':checked').length > _this21.options.minimumCountColumns) {
+ $(item).prop('checked', visible);
+ }
+ });
+ }
+
+ if ($items.filter(':checked').length <= this.options.minimumCountColumns) {
+ $items.filter(':checked').prop('disabled', true);
+ }
+ }
+ }
+ }, {
+ key: "mergeCells",
+ value: function mergeCells(options) {
+ var row = options.index;
+ var col = this.getVisibleFields().indexOf(options.field);
+ var rowspan = options.rowspan || 1;
+ var colspan = options.colspan || 1;
+ var i;
+ var j;
+ var $tr = this.$body.find('>tr');
+
+ if (this.options.detailView && !this.options.cardView) {
+ col += 1;
+ }
+
+ var $td = $tr.eq(row).find('>td').eq(col);
+
+ if (row < 0 || col < 0 || row >= this.data.length) {
+ return;
+ }
+
+ for (i = row; i < row + rowspan; i++) {
+ for (j = col; j < col + colspan; j++) {
+ $tr.eq(i).find('>td').eq(j).hide();
+ }
+ }
+
+ $td.attr('rowspan', rowspan).attr('colspan', colspan).show();
+ }
+ }, {
+ key: "checkAll",
+ value: function checkAll() {
+ this._toggleCheckAll(true);
+ }
+ }, {
+ key: "uncheckAll",
+ value: function uncheckAll() {
+ this._toggleCheckAll(false);
+ }
+ }, {
+ key: "_toggleCheckAll",
+ value: function _toggleCheckAll(checked) {
+ var rowsBefore = this.getSelections();
+ this.$selectAll.add(this.$selectAll_).prop('checked', checked);
+ this.$selectItem.filter(':enabled').prop('checked', checked);
+ this.updateRows();
+ var rowsAfter = this.getSelections();
+
+ if (checked) {
+ this.trigger('check-all', rowsAfter, rowsBefore);
+ return;
+ }
+
+ this.trigger('uncheck-all', rowsAfter, rowsBefore);
+ }
+ }, {
+ key: "checkInvert",
+ value: function checkInvert() {
+ var $items = this.$selectItem.filter(':enabled');
+ var checked = $items.filter(':checked');
+ $items.each(function (i, el) {
+ $(el).prop('checked', !$(el).prop('checked'));
+ });
+ this.updateRows();
+ this.updateSelected();
+ this.trigger('uncheck-some', checked);
+ checked = this.getSelections();
+ this.trigger('check-some', checked);
+ }
+ }, {
+ key: "check",
+ value: function check(index) {
+ this._toggleCheck(true, index);
+ }
+ }, {
+ key: "uncheck",
+ value: function uncheck(index) {
+ this._toggleCheck(false, index);
+ }
+ }, {
+ key: "_toggleCheck",
+ value: function _toggleCheck(checked, index) {
+ var $el = this.$selectItem.filter("[data-index=\"".concat(index, "\"]"));
+ var row = this.data[index];
+
+ if ($el.is(':radio') || this.options.singleSelect || this.options.multipleSelectRow && !this.multipleSelectRowCtrlKey && !this.multipleSelectRowShiftKey) {
+ var _iteratorNormalCompletion9 = true;
+ var _didIteratorError9 = false;
+ var _iteratorError9 = undefined;
+
+ try {
+ for (var _iterator9 = this.options.data[Symbol.iterator](), _step9; !(_iteratorNormalCompletion9 = (_step9 = _iterator9.next()).done); _iteratorNormalCompletion9 = true) {
+ var r = _step9.value;
+ r[this.header.stateField] = false;
+ }
+ } catch (err) {
+ _didIteratorError9 = true;
+ _iteratorError9 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion9 && _iterator9.return != null) {
+ _iterator9.return();
+ }
+ } finally {
+ if (_didIteratorError9) {
+ throw _iteratorError9;
+ }
+ }
+ }
+
+ this.$selectItem.filter(':checked').not($el).prop('checked', false);
+ }
+
+ row[this.header.stateField] = checked;
+
+ if (this.options.multipleSelectRow) {
+ if (this.multipleSelectRowShiftKey && this.multipleSelectRowLastSelectedIndex >= 0) {
+ var indexes = [this.multipleSelectRowLastSelectedIndex, index].sort();
+
+ for (var i = indexes[0] + 1; i < indexes[1]; i++) {
+ this.data[i][this.header.stateField] = true;
+ this.$selectItem.filter("[data-index=\"".concat(i, "\"]")).prop('checked', true);
+ }
+ }
+
+ this.multipleSelectRowCtrlKey = false;
+ this.multipleSelectRowShiftKey = false;
+ this.multipleSelectRowLastSelectedIndex = checked ? index : -1;
+ }
+
+ $el.prop('checked', checked);
+ this.updateSelected();
+ this.trigger(checked ? 'check' : 'uncheck', this.data[index], $el);
+ }
+ }, {
+ key: "checkBy",
+ value: function checkBy(obj) {
+ this._toggleCheckBy(true, obj);
+ }
+ }, {
+ key: "uncheckBy",
+ value: function uncheckBy(obj) {
+ this._toggleCheckBy(false, obj);
+ }
+ }, {
+ key: "_toggleCheckBy",
+ value: function _toggleCheckBy(checked, obj) {
+ var _this22 = this;
+
+ if (!obj.hasOwnProperty('field') || !obj.hasOwnProperty('values')) {
+ return;
+ }
+
+ var rows = [];
+ this.data.forEach(function (row, i) {
+ if (!row.hasOwnProperty(obj.field)) {
+ return false;
+ }
+
+ if (obj.values.includes(row[obj.field])) {
+ var $el = _this22.$selectItem.filter(':enabled').filter(Utils.sprintf('[data-index="%s"]', i));
+
+ $el = checked ? $el.not(':checked') : $el.filter(':checked');
+
+ if (!$el.length) {
+ return;
+ }
+
+ $el.prop('checked', checked);
+ row[_this22.header.stateField] = checked;
+ rows.push(row);
+
+ _this22.trigger(checked ? 'check' : 'uncheck', row, $el);
+ }
+ });
+ this.updateSelected();
+ this.trigger(checked ? 'check-some' : 'uncheck-some', rows);
+ }
+ }, {
+ key: "refresh",
+ value: function refresh(params) {
+ if (params && params.url) {
+ this.options.url = params.url;
+ }
+
+ if (params && params.pageNumber) {
+ this.options.pageNumber = params.pageNumber;
+ }
+
+ if (params && params.pageSize) {
+ this.options.pageSize = params.pageSize;
+ }
+
+ this.trigger('refresh', this.initServer(params && params.silent, params && params.query, params && params.url));
+ }
+ }, {
+ key: "destroy",
+ value: function destroy() {
+ this.$el.insertBefore(this.$container);
+ $(this.options.toolbar).insertBefore(this.$el);
+ this.$container.next().remove();
+ this.$container.remove();
+ this.$el.html(this.$el_.html()).css('margin-top', '0').attr('class', this.$el_.attr('class') || ''); // reset the class
+ }
+ }, {
+ key: "resetView",
+ value: function resetView(params) {
+ var padding = 0;
+
+ if (params && params.height) {
+ this.options.height = params.height;
+ }
+
+ this.$selectAll.prop('checked', this.$selectItem.length > 0 && this.$selectItem.length === this.$selectItem.filter(':checked').length);
+ this.$tableContainer.toggleClass('has-card-view', this.options.cardView);
+
+ if (!this.options.cardView && this.options.showHeader && this.options.height) {
+ this.$tableHeader.show();
+ this.resetHeader();
+ padding += this.$header.outerHeight(true);
+ } else {
+ this.$tableHeader.hide();
+ this.trigger('post-header');
+ }
+
+ if (!this.options.cardView && this.options.showFooter) {
+ this.$tableFooter.show();
+ this.fitFooter();
+
+ if (this.options.height) {
+ padding += this.$tableFooter.outerHeight(true);
+ }
+ }
+
+ if (this.options.height) {
+ var toolbarHeight = this.$toolbar.outerHeight(true);
+ var paginationHeight = this.$pagination.outerHeight(true);
+ var height = this.options.height - toolbarHeight - paginationHeight;
+ var tableHeight = this.$tableBody.find('table').outerHeight(true);
+ this.$tableContainer.css('height', "".concat(height, "px"));
+ this.$tableBorder && this.$tableBorder.css('height', "".concat(height - tableHeight - padding - 1, "px"));
+ }
+
+ if (this.options.cardView) {
+ // remove the element css
+ this.$el.css('margin-top', '0');
+ this.$tableContainer.css('padding-bottom', '0');
+ this.$tableFooter.hide();
+ } else {
+ // Assign the correct sortable arrow
+ this.getCaret();
+ this.$tableContainer.css('padding-bottom', "".concat(padding, "px"));
+ }
+
+ this.trigger('reset-view');
+ }
+ }, {
+ key: "resetWidth",
+ value: function resetWidth() {
+ if (this.options.showHeader && this.options.height) {
+ this.fitHeader();
+ }
+
+ if (this.options.showFooter && !this.options.cardView) {
+ this.fitFooter();
+ }
+ }
+ }, {
+ key: "showLoading",
+ value: function showLoading() {
+ this.$tableLoading.css('display', 'flex');
+ }
+ }, {
+ key: "hideLoading",
+ value: function hideLoading() {
+ this.$tableLoading.css('display', 'none');
+ }
+ }, {
+ key: "togglePagination",
+ value: function togglePagination() {
+ this.options.pagination = !this.options.pagination;
+ var icon = this.options.showButtonIcons ? this.options.pagination ? this.options.icons.paginationSwitchDown : this.options.icons.paginationSwitchUp : '';
+ var text = this.options.showButtonText ? this.options.pagination ? this.options.formatPaginationSwitchUp() : this.options.formatPaginationSwitchDown() : '';
+ this.$toolbar.find('button[name="paginationSwitch"]').html(Utils.sprintf(this.constants.html.icon, this.options.iconsPrefix, icon) + ' ' + text);
+ this.updatePagination();
+ }
+ }, {
+ key: "toggleFullscreen",
+ value: function toggleFullscreen() {
+ this.$el.closest('.bootstrap-table').toggleClass('fullscreen');
+ this.resetView();
+ }
+ }, {
+ key: "toggleView",
+ value: function toggleView() {
+ this.options.cardView = !this.options.cardView;
+ this.initHeader();
+ var icon = this.options.showButtonIcons ? this.options.cardView ? this.options.icons.toggleOn : this.options.icons.toggleOff : '';
+ var text = this.options.showButtonText ? this.options.cardView ? this.options.formatToggleOff() : this.options.formatToggleOn() : '';
+ this.$toolbar.find('button[name="toggle"]').html(Utils.sprintf(this.constants.html.icon, this.options.iconsPrefix, icon) + ' ' + text);
+ this.initBody();
+ this.trigger('toggle', this.options.cardView);
+ }
+ }, {
+ key: "resetSearch",
+ value: function resetSearch(text) {
+ var $search = this.$toolbar.find('.search input');
+ $search.val(text || '');
+ this.onSearch({
+ currentTarget: $search
+ });
+ }
+ }, {
+ key: "filterBy",
+ value: function filterBy(columns, options) {
+ this.filterOptions = Utils.isEmptyObject(options) ? this.options.filterOptions : $.extend(this.options.filterOptions, options);
+ this.filterColumns = Utils.isEmptyObject(columns) ? {} : columns;
+ this.options.pageNumber = 1;
+ this.initSearch();
+ this.updatePagination();
+ }
+ }, {
+ key: "scrollTo",
+ value: function scrollTo(params) {
+ if (typeof params === 'undefined') {
+ return this.$tableBody.scrollTop();
+ }
+
+ var options = {
+ unit: 'px',
+ value: 0
+ };
+
+ if (_typeof(params) === 'object') {
+ options = Object.assign(options, params);
+ } else if (typeof params === 'string' && params === 'bottom') {
+ options.value = this.$tableBody[0].scrollHeight;
+ } else if (typeof params === 'string') {
+ options.value = params;
+ }
+
+ var scrollTo = options.value;
+
+ if (options.unit === 'rows') {
+ scrollTo = 0;
+ this.$body.find("> tr:lt(".concat(options.value, ")")).each(function (i, el) {
+ scrollTo += $(el).outerHeight(true);
+ });
+ }
+
+ this.$tableBody.scrollTop(scrollTo);
+ }
+ }, {
+ key: "getScrollPosition",
+ value: function getScrollPosition() {
+ return this.scrollTo();
+ }
+ }, {
+ key: "selectPage",
+ value: function selectPage(page) {
+ if (page > 0 && page <= this.options.totalPages) {
+ this.options.pageNumber = page;
+ this.updatePagination();
+ }
+ }
+ }, {
+ key: "prevPage",
+ value: function prevPage() {
+ if (this.options.pageNumber > 1) {
+ this.options.pageNumber--;
+ this.updatePagination();
+ }
+ }
+ }, {
+ key: "nextPage",
+ value: function nextPage() {
+ if (this.options.pageNumber < this.options.totalPages) {
+ this.options.pageNumber++;
+ this.updatePagination();
+ }
+ }
+ }, {
+ key: "toggleDetailView",
+ value: function toggleDetailView(index, _columnDetailFormatter) {
+ var $tr = this.$body.find(Utils.sprintf('> tr[data-index="%s"]', index));
+
+ if ($tr.next().is('tr.detail-view')) {
+ this.collapseRow(index);
+ } else {
+ this.expandRow(index, _columnDetailFormatter);
+ }
+
+ this.resetView();
+ }
+ }, {
+ key: "expandRow",
+ value: function expandRow(index, _columnDetailFormatter) {
+ var row = this.data[index];
+ var $tr = this.$body.find(Utils.sprintf('> tr[data-index="%s"][data-has-detail-view]', index));
+
+ if ($tr.next().is('tr.detail-view')) {
+ return;
+ }
+
+ if (this.options.detailViewIcon) {
+ $tr.find('a.detail-icon').html(Utils.sprintf(this.constants.html.icon, this.options.iconsPrefix, this.options.icons.detailClose));
+ }
+
+ $tr.after(Utils.sprintf('<tr class="detail-view"><td colspan="%s"></td></tr>', $tr.children('td').length));
+ var $element = $tr.next().find('td');
+ var detailFormatter = _columnDetailFormatter || this.options.detailFormatter;
+ var content = Utils.calculateObjectValue(this.options, detailFormatter, [index, row, $element], '');
+
+ if ($element.length === 1) {
+ $element.append(content);
+ }
+
+ this.trigger('expand-row', index, row, $element);
+ }
+ }, {
+ key: "collapseRow",
+ value: function collapseRow(index) {
+ var row = this.data[index];
+ var $tr = this.$body.find(Utils.sprintf('> tr[data-index="%s"][data-has-detail-view]', index));
+
+ if (!$tr.next().is('tr.detail-view')) {
+ return;
+ }
+
+ if (this.options.detailViewIcon) {
+ $tr.find('a.detail-icon').html(Utils.sprintf(this.constants.html.icon, this.options.iconsPrefix, this.options.icons.detailOpen));
+ }
+
+ this.trigger('collapse-row', index, row, $tr.next());
+ $tr.next().remove();
+ }
+ }, {
+ key: "expandAllRows",
+ value: function expandAllRows() {
+ var trs = this.$body.find('> tr[data-index][data-has-detail-view]');
+
+ for (var i = 0; i < trs.length; i++) {
+ this.expandRow($(trs[i]).data('index'));
+ }
+ }
+ }, {
+ key: "collapseAllRows",
+ value: function collapseAllRows() {
+ var trs = this.$body.find('> tr[data-index][data-has-detail-view]');
+
+ for (var i = 0; i < trs.length; i++) {
+ this.collapseRow($(trs[i]).data('index'));
+ }
+ }
+ }, {
+ key: "updateColumnTitle",
+ value: function updateColumnTitle(params) {
+ if (!params.hasOwnProperty('field') || !params.hasOwnProperty('title')) {
+ return;
+ }
+
+ this.columns[this.fieldsColumnsIndex[params.field]].title = this.options.escape ? Utils.escapeHTML(params.title) : params.title;
+
+ if (this.columns[this.fieldsColumnsIndex[params.field]].visible) {
+ var header = this.options.height !== undefined ? this.$tableHeader : this.$header;
+ header.find('th[data-field]').each(function (i, el) {
+ if ($(el).data('field') === params.field) {
+ $($(el).find('.th-inner')[0]).text(params.title);
+ return false;
+ }
+ });
+ }
+ }
+ }, {
+ key: "updateFormatText",
+ value: function updateFormatText(formatName, text) {
+ if (!/^format/.test(formatName) || !this.options[formatName]) {
+ return;
+ }
+
+ if (typeof text === 'string') {
+ this.options[formatName] = function () {
+ return text;
+ };
+ } else if (typeof text === 'function') {
+ this.options[formatName] = text;
+ }
+
+ this.initToolbar();
+ this.initPagination();
+ this.initBody();
+ }
+ }]);
+
+ return BootstrapTable;
+ }();
+
+ BootstrapTable.VERSION = Constants.VERSION;
+ BootstrapTable.DEFAULTS = Constants.DEFAULTS;
+ BootstrapTable.LOCALES = Constants.LOCALES;
+ BootstrapTable.COLUMN_DEFAULTS = Constants.COLUMN_DEFAULTS;
+ BootstrapTable.METHODS = Constants.METHODS;
+ BootstrapTable.EVENTS = Constants.EVENTS; // BOOTSTRAP TABLE PLUGIN DEFINITION
+ // =======================
+
+ $.BootstrapTable = BootstrapTable;
+
+ $.fn.bootstrapTable = function (option) {
+ for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key3 = 1; _key3 < _len2; _key3++) {
+ args[_key3 - 1] = arguments[_key3];
+ }
+
+ var value;
+ this.each(function (i, el) {
+ var data = $(el).data('bootstrap.table');
+ var options = $.extend({}, BootstrapTable.DEFAULTS, $(el).data(), _typeof(option) === 'object' && option);
+
+ if (typeof option === 'string') {
+ var _data2;
+
+ if (!Constants.METHODS.includes(option)) {
+ throw new Error("Unknown method: ".concat(option));
+ }
+
+ if (!data) {
+ return;
+ }
+
+ value = (_data2 = data)[option].apply(_data2, args);
+
+ if (option === 'destroy') {
+ $(el).removeData('bootstrap.table');
+ }
+ }
+
+ if (!data) {
+ $(el).data('bootstrap.table', data = new $.BootstrapTable(el, options));
+ }
+ });
+ return typeof value === 'undefined' ? this : value;
+ };
+
+ $.fn.bootstrapTable.Constructor = BootstrapTable;
+ $.fn.bootstrapTable.theme = Constants.THEME;
+ $.fn.bootstrapTable.VERSION = Constants.VERSION;
+ $.fn.bootstrapTable.defaults = BootstrapTable.DEFAULTS;
+ $.fn.bootstrapTable.columnDefaults = BootstrapTable.COLUMN_DEFAULTS;
+ $.fn.bootstrapTable.events = BootstrapTable.EVENTS;
+ $.fn.bootstrapTable.locales = BootstrapTable.LOCALES;
+ $.fn.bootstrapTable.methods = BootstrapTable.METHODS;
+ $.fn.bootstrapTable.utils = Utils; // BOOTSTRAP TABLE INIT
+ // =======================
+
+ $(function () {
+ $('[data-toggle="table"]').bootstrapTable();
+ });
+
+ return BootstrapTable;
+
+}));