/** * @author zhixin wen * version: 1.7.0 * https://github.com/wenzhixin/bootstrap-table/ */ !function ($) { 'use strict'; // TOOLS DEFINITION // ====================== var cellHeight = 37; // update css if changed var cachedWidth = null; // it only does '%s', and return '' when arguments are undefined var sprintf = function (str) { var args = arguments, flag = true, i = 1; str = str.replace(/%s/g, function () { var arg = args[i++]; if (typeof arg === 'undefined') { flag = false; return ''; } return arg; }); return flag ? str : ''; }; var getPropertyFromOther = function (list, from, to, value) { var result = ''; $.each(list, function (i, item) { if (item[from] === value) { result = item[to]; return false; } return true; }); return result; }; var getFieldIndex = function (columns, field) { var index = -1; $.each(columns, function (i, column) { if (column.field === field) { index = i; return false; } return true; }); return index; }; var getScrollBarWidth = function () { if (cachedWidth === null) { var inner = $('

').addClass('fixed-table-scroll-inner'), outer = $('

').addClass('fixed-table-scroll-outer'), w1, w2; outer.append(inner); $('body').append(outer); w1 = inner[0].offsetWidth; outer.css('overflow', 'scroll'); w2 = inner[0].offsetWidth; if (w1 === w2) { w2 = outer[0].clientWidth; } outer.remove(); cachedWidth = w1 - w2; } return cachedWidth; }; var calculateObjectValue = function (self, name, args, defaultValue) { if (typeof name === 'string') { // support obj.func1.func2 var names = name.split('.'); if (names.length > 1) { name = window; $.each(names, function (i, f) { name = name[f]; }); } else { name = window[name]; } } if (typeof name === 'object') { return name; } if (typeof name === 'function') { return name.apply(self, args); } return defaultValue; }; var escapeHTML = function (text) { if (typeof text === 'string') { return text .replace(/&/g, "&") .replace(//g, ">") .replace(/"/g, """) .replace(/'/g, "'"); } return text; }; // BOOTSTRAP TABLE CLASS DEFINITION // ====================== var BootstrapTable = function (el, options) { this.options = options; this.$el = $(el); this.$el_ = this.$el.clone(); this.timeoutId_ = 0; this.timeoutFooter_ = 0; this.init(); }; BootstrapTable.DEFAULTS = { classes: 'table table-hover', height: undefined, undefinedText: '-', sortName: undefined, sortOrder: 'asc', striped: false, columns: [], data: [], method: 'get', url: undefined, cache: true, contentType: 'application/json', dataType: 'json', ajaxOptions: {}, queryParams: function (params) { return params; }, queryParamsType: 'limit', // undefined responseHandler: function (res) { return res; }, pagination: false, sidePagination: 'client', // client or server totalRows: 0, // server side need to set pageNumber: 1, pageSize: 10, pageList: [10, 25, 50, 100], paginationHAlign: 'right', //right, left paginationVAlign: 'bottom', //bottom, top, both paginationDetailHAlign: 'left', //right, left search: false, searchAlign: 'right', selectItemName: 'btSelectItem', showHeader: true, showFooter: false, showColumns: false, showPaginationSwitch: false, showRefresh: false, showToggle: false, buttonsAlign: 'right', smartDisplay: true, minimumCountColumns: 1, idField: undefined, uniqueId: undefined, cardView: false, trimOnSearch: true, clickToSelect: false, singleSelect: false, toolbar: undefined, toolbarAlign: 'left', checkboxHeader: true, sortable: true, maintainSelected: false, searchTimeOut: 500, keyEvents: false, searchText: '', iconSize: undefined, iconsPrefix: 'glyphicon', // glyphicon of fa (font awesome) icons: { paginationSwitchDown: 'glyphicon-collapse-down icon-chevron-down', paginationSwitchUp: 'glyphicon-collapse-up icon-chevron-up', refresh: 'glyphicon-refresh icon-refresh', toggle: 'glyphicon-list-alt icon-list-alt', columns: 'glyphicon-th icon-th' }, rowStyle: function (row, index) { return {}; }, rowAttributes: function (row, index) { return {}; }, onAll: function (name, args) { return false; }, onClickRow: function (item, $element) { return false; }, onDblClickRow: function (item, $element) { return false; }, onSort: function (name, order) { return false; }, onCheck: function (row) { return false; }, onUncheck: function (row) { return false; }, onCheckAll: function () { return false; }, onUncheckAll: function () { return false; }, onLoadSuccess: function (data) { return false; }, onLoadError: function (status) { return false; }, onColumnSwitch: function (field, checked) { return false; }, onColumnSearch: function (field, text) { return false; }, onPageChange: function (number, size) { return false; }, onSearch: function (text) { return false; }, onPreBody: function (data) { return false; }, onPostBody: function () { return false; }, onPostHeader: function () { return false; } }; BootstrapTable.LOCALES = []; BootstrapTable.LOCALES['en-US'] = { formatLoadingMessage: function () { return 'Loading, please wait...'; }, formatRecordsPerPage: function (pageNumber) { return sprintf('%s records per page', pageNumber); }, formatShowingRows: function (pageFrom, pageTo, totalRows) { return sprintf('Showing %s to %s of %s rows', pageFrom, pageTo, totalRows); }, formatSearch: function () { return 'Search'; }, formatNoMatches: function () { return 'No matching records found'; }, formatPaginationSwitch: function () { return 'Hide/Show pagination'; }, formatRefresh: function () { return 'Refresh'; }, formatToggle: function () { return 'Toggle'; }, formatColumns: function () { return 'Columns'; }, formatAllRows: function () { return 'All'; } }; $.extend(BootstrapTable.DEFAULTS, BootstrapTable.LOCALES['en-US']); BootstrapTable.COLUMN_DEFAULTS = { radio: false, checkbox: false, checkboxEnabled: true, field: undefined, title: 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, cellStyle: undefined, searchable: true, cardVisible: true, filterControl: undefined // edit, todo: select, todo: date }; BootstrapTable.EVENTS = { 'all.bs.table': 'onAll', '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', 'load-success.bs.table': 'onLoadSuccess', 'load-error.bs.table': 'onLoadError', 'column-switch.bs.table': 'onColumnSwitch', 'column-search.bs.table': 'onColumnSearch', 'page-change.bs.table': 'onPageChange', 'search.bs.table': 'onSearch', 'pre-body.bs.table': 'onPreBody', 'post-body.bs.table': 'onPostBody', 'post-header.bs.table': 'onPostHeader' }; BootstrapTable.prototype.init = function () { this.initContainer(); this.initTable(); this.initHeader(); this.initData(); this.initFooter(); this.initToolbar(); this.initPagination(); this.initBody(); this.initServer(); this.initKeyEvents(); }; BootstrapTable.prototype.initContainer = function () { this.$container = $([ '
', '
', this.options.paginationVAlign === 'top' || this.options.paginationVAlign === 'both' ? '
' : '', '
', '
', '
', '
', this.options.formatLoadingMessage(), '
', '
', '', this.options.paginationVAlign === 'bottom' || this.options.paginationVAlign === 'both' ? '
' : '', '
', '
'].join('')); this.$container.insertAfter(this.$el); this.$container.find('.fixed-table-body').append(this.$el); this.$container.after('
'); this.$loading = this.$container.find('.fixed-table-loading'); this.$el.addClass(this.options.classes); if (this.options.striped) { this.$el.addClass('table-striped'); } }; BootstrapTable.prototype.initTable = function () { var that = this, columns = [], data = []; this.$header = this.$el.find('thead'); if (!this.$header.length) { this.$header = $('').appendTo(this.$el); } if (!this.$header.find('tr').length) { this.$header.append(''); } this.$header.find('th').each(function () { var column = $.extend({}, { title: $(this).html(), 'class': $(this).attr('class') }, $(this).data()); columns.push(column); }); this.options.columns = $.extend(true, [], columns, this.options.columns); $.each(this.options.columns, function (i, column) { that.options.columns[i] = $.extend({}, BootstrapTable.COLUMN_DEFAULTS, {field: i}, column); // when field is undefined, use index instead }); // if options.data is setting, do not process tbody data if (this.options.data.length) { return; } this.$el.find('tbody tr').each(function () { var row = {}; // save tr's id and class row._id = $(this).attr('id'); row._class = $(this).attr('class'); $(this).find('td').each(function (i) { var field = that.options.columns[i].field; row[field] = $(this).html(); // save td's id and class row['_' + field + '_id'] = $(this).attr('id'); row['_' + field + '_class'] = $(this).attr('class'); row['_' + field + '_data'] = $(this).data(); }); data.push(row); }); this.options.data = data; }; BootstrapTable.prototype.initHeader = function () { var that = this, visibleColumns = [], html = [], addedFilterControl = false, timeoutId = 0; this.header = { fields: [], styles: [], classes: [], formatters: [], events: [], sorters: [], cellStyles: [], clickToSelects: [], searchables: [] }; $.each(this.options.columns, function (i, column) { var text = '', halign = '', // header align style align = '', // body align style style = '', class_ = sprintf(' class="%s"', column['class']), order = that.options.sortOrder || column.order, searchable = true, unitWidth = 'px', isVisible = 'hidden'; if (!column.visible) { return; } if (that.options.cardView && (!column.cardVisible)) { return; } if (column.width !== undefined) { if (typeof column.width === 'string') { if (column.width.indexOf('%') > -1) { unitWidth = '%' } column.width = column.width.replace('%', '').replace('px', ''); } } halign = sprintf('text-align: %s; ', column.halign ? column.halign : column.align); align = sprintf('text-align: %s; ', column.align); style = sprintf('vertical-align: %s; ', column.valign); style += sprintf('width: %s'+ unitWidth +'; ', column.checkbox || column.radio ? 36 : column.width); visibleColumns.push(column); that.header.fields.push(column.field); that.header.styles.push(align + style); that.header.classes.push(class_); that.header.formatters.push(column.formatter); that.header.events.push(column.events); that.header.sorters.push(column.sorter); that.header.cellStyles.push(column.cellStyle); that.header.clickToSelects.push(column.clickToSelect); that.header.searchables.push(column.searchable); html.push(''); html.push(sprintf('
', that.options.sortable && column.sortable ? 'sortable' : '')); text = column.title; if (that.options.sortName === column.field && that.options.sortable && column.sortable) { text += that.getCaretHtml(); } if (column.checkbox) { if (!that.options.singleSelect && that.options.checkboxHeader) { text = ''; } that.header.stateField = column.field; } if (column.radio) { text = ''; that.header.stateField = column.field; that.options.singleSelect = true; } html.push(text); html.push('
'); html.push('
'); html.push('
'); if (column.filterControl && column.searchable) { addedFilterControl = true; isVisible = 'visible' } if (column.filterControl !== undefined) { switch (column.filterControl.toLowerCase()) { case 'input' : html.push(sprintf('', isVisible)); break; case 'select': html.push(sprintf('', column.field, isVisible)) break; } } else { html.push('
'); } html.push('
'); html.push(''); }); this.$header.find('tr').html(html.join('')); this.$header.find('th').each(function (i) { $(this).data(visibleColumns[i]); }); this.$container.off('click', '.th-inner').on('click', '.th-inner', function (event) { if (that.options.sortable && $(this).parent().data().sortable) { that.onSort(event); } }); if (!this.options.showHeader || this.options.cardView) { this.$header.hide(); this.$container.find('.fixed-table-header').hide(); this.$loading.css('top', 0); } else { this.$header.show(); this.$container.find('.fixed-table-header').show(); this.$loading.css('top', cellHeight + 'px'); } this.$selectAll = this.$header.find('[name="btSelectAll"]'); this.$container.off('click', '[name="btSelectAll"]') .on('click', '[name="btSelectAll"]', function () { var checked = $(this).prop('checked'); that[checked ? 'checkAll' : 'uncheckAll'](); }); if (addedFilterControl) { this.$header.off('keyup', 'input').on('keyup' , 'input', function (event) { clearTimeout(timeoutId); timeoutId = setTimeout(function () { that.onColumnSearch(event); }, that.options.searchTimeOut); }); this.$header.off('change', 'select').on('change' , 'select', function (event) { clearTimeout(timeoutId); timeoutId = setTimeout(function () { that.onColumnSearch(event); }, that.options.searchTimeOut); }); } else { this.$header.find('.filterControl').hide(); } }; BootstrapTable.prototype.initFooter = function () { this.$footer = this.$container.find('.fixed-table-footer'); if (!this.options.showFooter || this.options.cardView) { this.$footer.hide(); } else { this.$footer.show(); } }; /** * @param data * @param type: append / prepend */ BootstrapTable.prototype.initData = function (data, type) { if (type === 'append') { this.data = this.data.concat(data); } else if (type === 'prepend') { this.data = [].concat(data).concat(this.data); } else { this.data = data || this.options.data; } this.options.data = this.data; if (this.options.sidePagination === 'server') { return; } this.initSort(); }; BootstrapTable.prototype.initSort = function () { var that = this, name = this.options.sortName, order = this.options.sortOrder === 'desc' ? -1 : 1, index = $.inArray(this.options.sortName, this.header.fields); if (index !== -1) { this.data.sort(function (a, b) { var aa = a[name], bb = b[name], value = calculateObjectValue(that.header, that.header.sorters[index], [aa, bb]); if (value !== undefined) { return order * value; } if (value !== undefined) { return order * value; } // Fix #161: undefined or null string sort bug. if (aa === undefined || aa === null) { aa = ''; } if (bb === undefined || bb === null) { bb = ''; } // 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; } return order; } if (aa === bb) { return 0; } // If value is not a string, convert to string if (typeof aa !== 'string') { aa = aa.toString(); } if (aa.localeCompare(bb) === -1) { return order * -1; } return order; }); } }; BootstrapTable.prototype.onSort = function (event) { var $this = $(event.currentTarget).parent(), $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'); this.options.sortOrder = $this.data('order') === 'asc' ? 'desc' : 'asc'; } this.trigger('sort', this.options.sortName, this.options.sortOrder); $this.add($this_).data('order', this.options.sortOrder) .find('.th-inner').append(this.getCaretHtml()); if (this.options.sidePagination === 'server') { this.initServer(); return; } this.initSort(); this.initBody(); }; BootstrapTable.prototype.initToolbar = function () { var that = this, html = [], timeoutId = 0, $keepOpen, $search, switchableCount = 0; this.$toolbar = this.$container.find('.fixed-table-toolbar').html(''); if (typeof this.options.toolbar === 'string') { $(sprintf('
', this.options.toolbarAlign)) .appendTo(this.$toolbar) .append($(this.options.toolbar)); } // showColumns, showToggle, showRefresh html = [sprintf('
', this.options.buttonsAlign, this.options.buttonsAlign)]; if (typeof this.options.icons === 'string') { this.options.icons = calculateObjectValue(null, this.options.icons); } if (this.options.showPaginationSwitch) { html.push(sprintf(''); } if (this.options.showRefresh) { html.push(sprintf(''); } if (this.options.showToggle) { html.push(sprintf(''); } if (this.options.showColumns) { html.push(sprintf('
', this.options.formatColumns()), '', '', '
'); } html.push('
'); // Fix #188: this.showToolbar is for extentions if (this.showToolbar || html.length > 2) { this.$toolbar.append(html.join('')); } if (this.options.showPaginationSwitch) { this.$toolbar.find('button[name="paginationSwitch"]') .off('click').on('click', $.proxy(this.togglePagination, this)); } 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 () { that.toggleView(); }); } if (this.options.showColumns) { $keepOpen = this.$toolbar.find('.keep-open'); if (switchableCount <= this.options.minimumCountColumns) { $keepOpen.find('input').prop('disabled', true); } $keepOpen.find('li').off('click').on('click', function (event) { event.stopImmediatePropagation(); }); $keepOpen.find('input').off('click').on('click', function () { var $this = $(this); that.toggleColumn($this.val(), $this.prop('checked'), false); that.trigger('column-switch', $(this).data('field'), $this.prop('checked')); }); } if (this.options.search) { html = []; html.push( ''); this.$toolbar.append(html.join('')); $search = this.$toolbar.find('.search input'); $search.off('keyup').on('keyup', function (event) { clearTimeout(timeoutId); // doesn't matter if it's 0 timeoutId = setTimeout(function () { that.onSearch(event); }, that.options.searchTimeOut); }); if (this.options.searchText !== '') { $search.val(this.options.searchText); clearTimeout(timeoutId); // doesn't matter if it's 0 timeoutId = setTimeout(function () { $search.trigger('keyup'); }, that.options.searchTimeOut); } } }; BootstrapTable.prototype.onSearch = function (event) { var text = $.trim($(event.currentTarget).val()); // trim search input if (this.options.trimOnSearch && $(event.currentTarget).val() !== text) { $(event.currentTarget).val(text); } if (text === this.searchText) { return; } this.searchText = text; this.options.pageNumber = 1; this.initSearch(); this.updatePagination(); this.trigger('search', text); }; BootstrapTable.prototype.onColumnSearch = function (event, isSelectControl) { var text = $.trim($(event.currentTarget).val()); var $field = $(event.currentTarget).parent().parent().data('field') // trim search input //$(event.currentTarget).val(text); if ($.isEmptyObject(this.filterColumnsPartial)) { this.filterColumnsPartial = {}; } if (text) { this.filterColumnsPartial[$field] = text; } else { delete this.filterColumnsPartial[$field]; } this.options.pageNumber = 1; this.initSearch(); this.updatePagination(); /* this.trigger('column-search', $field, text); */ }; BootstrapTable.prototype.initSearch = function () { var that = this; if (this.options.sidePagination !== 'server') { var s = this.searchText && this.searchText.toLowerCase(); var f = $.isEmptyObject(this.filterColumns) ? null : this.filterColumns; var fp = $.isEmptyObject(this.filterColumnsPartial) ? null: this.filterColumnsPartial; // Check filter this.data = f ? $.grep(this.options.data, function (item, i) { for (var key in f) { if (item[key] !== f[key]) { return false; } } return true; }) : this.options.data; //Check partial colum filter this.data = fp ? $.grep(this.data, function (item, i) { for (var key in fp) { var fval = fp[key].toLowerCase(); var value = item[key]; value = calculateObjectValue(that.header, that.header.formatters[$.inArray(key, that.header.fields)], [value, item, i], value); if (! ($.inArray(key, that.header.fields) !== -1 && (typeof value === 'string' || typeof value === 'number') && (value + '').toLowerCase().indexOf(fval) !== -1)) { return false; } } return true; }) : this.data; this.data = s ? $.grep(this.data, function (item, i) { for (var key in item) { key = $.isNumeric(key) ? parseInt(key, 10) : key; var value = item[key]; // Fix #142: search use formated data value = calculateObjectValue(that.header, that.header.formatters[$.inArray(key, that.header.fields)], [value, item, i], value); var index = $.inArray(key, that.header.fields); if (index !== -1 && that.header.searchables[index] && (typeof value === 'string' || typeof value === 'number') && (value + '').toLowerCase().indexOf(s) !== -1) { return true; } } return false; }) : this.data; } }; BootstrapTable.prototype.initPagination = function () { this.$pagination = this.$container.find('.fixed-table-pagination'); if (!this.options.pagination) { this.$pagination.hide(); return; } else { this.$pagination.show(); } var that = this, html = [], $allSelected = false, i, from, to, $pageList, $first, $pre, $next, $last, $number, data = this.getData(); if (this.options.sidePagination !== 'server') { this.options.totalRows = data.length; } 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 that 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.indexOf(this.options.formatAllRows().toLowerCase()) > -1) { $allSelected = true; } } this.totalPages = ~~((this.options.totalRows - 1) / this.options.pageSize) + 1; this.options.totalPages = this.totalPages; } if (this.totalPages > 0 && this.options.pageNumber > this.totalPages) { this.options.pageNumber = this.totalPages; } 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; } html.push( '
', '', this.options.formatShowingRows(this.pageFrom, this.pageTo, this.options.totalRows), ''); html.push(''); var pageNumber = [ sprintf('', this.options.paginationVAlign === 'top' || this.options.paginationVAlign === 'both' ? 'dropdown' : 'dropup'), '', ''); html.push(this.options.formatRecordsPerPage(pageNumber.join(''))); html.push(''); // Fixed #611 vertical-align between pagination block and pagination-detail block. Remove class pagination. html.push('
', '
', '
    ', '
  • <<
  • ', '
  • <
  • '); if (this.totalPages < 5) { from = 1; to = this.totalPages; } else { from = this.options.pageNumber - 2; to = from + 4; if (from < 1) { from = 1; to = 5; } if (to > this.totalPages) { to = this.totalPages; from = to - 4; } } for (i = from; i <= to; i++) { html.push('
  • ', '', i, '', '
  • '); } html.push( '
  • >
  • ', '
  • >>
  • ', '
', '
'); this.$pagination.html(html.join('')); $pageList = this.$pagination.find('.page-list a'); $first = this.$pagination.find('.page-first'); $pre = this.$pagination.find('.page-pre'); $next = this.$pagination.find('.page-next'); $last = this.$pagination.find('.page-last'); $number = this.$pagination.find('.page-number'); if (this.options.pageNumber <= 1) { $first.addClass('disabled'); $pre.addClass('disabled'); } if (this.options.pageNumber >= this.totalPages) { $next.addClass('disabled'); $last.addClass('disabled'); } 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(); } // when data is empty, hide the pagination this.$pagination[this.getData().length ? 'show' : 'hide'](); } if ($allSelected) { this.options.pageSize = this.options.formatAllRows(); } $pageList.off('click').on('click', $.proxy(this.onPageListChange, this)); $first.off('click').on('click', $.proxy(this.onPageFirst, this)); $pre.off('click').on('click', $.proxy(this.onPagePre, this)); $next.off('click').on('click', $.proxy(this.onPageNext, this)); $last.off('click').on('click', $.proxy(this.onPageLast, this)); $number.off('click').on('click', $.proxy(this.onPageNumber, this)); }; BootstrapTable.prototype.updatePagination = function (event) { // Fix #171: IE disabled button can be clicked bug. if (event && $(event.currentTarget).hasClass('disabled')) { return; } if (!this.options.maintainSelected) { this.resetRows(); } this.initPagination(); if (this.options.sidePagination === 'server') { this.initServer(); } else { this.initBody(); } this.trigger('page-change', this.options.pageNumber, this.options.pageSize); }; BootstrapTable.prototype.onPageListChange = function (event) { var $this = $(event.currentTarget); $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); this.updatePagination(event); }; BootstrapTable.prototype.onPageFirst = function (event) { this.options.pageNumber = 1; this.updatePagination(event); }; BootstrapTable.prototype.onPagePre = function (event) { this.options.pageNumber--; this.updatePagination(event); }; BootstrapTable.prototype.onPageNext = function (event) { this.options.pageNumber++; this.updatePagination(event); }; BootstrapTable.prototype.onPageLast = function (event) { this.options.pageNumber = this.totalPages; this.updatePagination(event); }; BootstrapTable.prototype.onPageNumber = function (event) { if (this.options.pageNumber === +$(event.currentTarget).text()) { return; } this.options.pageNumber = +$(event.currentTarget).text(); this.updatePagination(event); }; BootstrapTable.prototype.initBody = function (fixedScroll) { var that = this, html = [], data = this.getData(); this.trigger('pre-body', data); this.$body = this.$el.find('tbody'); if (!this.$body.length) { this.$body = $('').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; } for (var i = this.pageFrom - 1; i < this.pageTo; i++) { var key, item = data[i], style = {}, csses = [], attributes = {}, htmlAttributes = []; style = calculateObjectValue(this.options, this.options.rowStyle, [item, i], style); if (style && style.css) { for (key in style.css) { csses.push(key + ': ' + style.css[key]); } } attributes = calculateObjectValue(this.options, this.options.rowAttributes, [item, i], attributes); if (attributes) { for (key in attributes) { htmlAttributes.push(sprintf('%s="%s"', key, escapeHTML(attributes[key]))); } } html.push('' ); if (this.options.cardView) { html.push(sprintf('', this.header.fields.length)); } $.each(this.header.fields, function (j, field) { var text = '', value = item[field], type = '', cellStyle = {}, id_ = '', class_ = that.header.classes[j], data_ = '', column = that.options.columns[getFieldIndex(that.options.columns, field)]; style = sprintf('style="%s"', csses.concat(that.header.styles[j]).join('; ')); value = calculateObjectValue(that.header, that.header.formatters[j], [value, item, i], value); // handle td's id and class if (item['_' + field + '_id']) { id_ = sprintf(' id="%s"', item['_' + field + '_id']); } if (item['_' + field + '_class']) { class_ = sprintf(' class="%s"', item['_' + field + '_class']); } cellStyle = calculateObjectValue(that.header, that.header.cellStyles[j], [value, item, i], cellStyle); if (cellStyle.classes) { class_ = sprintf(' class="%s"', cellStyle.classes); } if (cellStyle.css) { var csses_ = []; for (var key in cellStyle.css) { csses_.push(key + ': ' + cellStyle.css[key]); } style = sprintf('style="%s"', csses_.concat(that.header.styles[j]).join('; ')); } if (item['_' + field + '_data'] && !$.isEmptyObject(item['_' + field + '_data'])) { $.each(item['_' + field + '_data'], function (k, v) { // ignore data-index if (k === 'index') { return; } data_ += sprintf(' data-%s="%s"', k, v); }); } if (column.checkbox || column.radio) { type = column.checkbox ? 'checkbox' : type; type = column.radio ? 'radio' : type; text = [that.options.cardView ? '
' : '', '', that.options.cardView ? '
' : ''].join(''); } else { value = typeof value === 'undefined' || value === null ? that.options.undefinedText : value; text = that.options.cardView ? ['
', that.options.showHeader ? sprintf('%s', style, getPropertyFromOther(that.options.columns, 'field', 'title', field)) : '', sprintf('%s', value), '
'].join('') : [sprintf('', id_, class_, style, data_), value, ''].join(''); if (column.filterControl !== undefined && column.filterControl.toLowerCase() === 'select' && column.searchable) { var selectControl = $('.' + column.field), iOpt = 0, exitsOpt = false, options; if (selectControl !== undefined) { options = selectControl.get(0).options; if (options.length === 0) { //Added the default option selectControl.append($("") .attr("value", '') .text('')); selectControl.append($("") .attr("value",value) .text(value)); } else { for (; iOpt < options.length; iOpt++ ) { if (options[iOpt].value === value) { exitsOpt = true; break; } } if (!exitsOpt) { selectControl.append($("") .attr("value",value) .text(value)); } } } } // Hide empty data on Card view when smartDisplay is set to true. if (that.options.cardView && that.options.smartDisplay && value === '') { text = ''; } } html.push(text); }); if (this.options.cardView) { html.push(''); } html.push(''); } // show no records if (!html.length) { html.push('', sprintf('%s', this.header.fields.length, this.options.formatNoMatches()), ''); } this.$body.html(html.join('')); if (!fixedScroll) { this.scrollTo(0); } // click to select by column this.$body.find('> tr > td').off('click').on('click', function () { var $tr = $(this).parent(); that.trigger('click-row', that.data[$tr.data('index')], $tr); // if click to select - then trigger the checkbox/radio click if (that.options.clickToSelect) { if (that.header.clickToSelects[$tr.children().index($(this))]) { $tr.find(sprintf('[name="%s"]', that.options.selectItemName))[0].click(); // #144: .trigger('click') bug } } }); this.$body.find('tr').off('dblclick').on('dblclick', function () { that.trigger('dbl-click-row', that.data[$(this).data('index')], $(this)); }); this.$selectItem = this.$body.find(sprintf('[name="%s"]', this.options.selectItemName)); this.$selectItem.off('click').on('click', function (event) { event.stopImmediatePropagation(); var checked = $(this).prop('checked'), row = that.data[$(this).data('index')]; row[that.header.stateField] = checked; that.trigger(checked ? 'check' : 'uncheck', row); if (that.options.singleSelect) { that.$selectItem.not(this).each(function () { that.data[$(this).data('index')][that.header.stateField] = false; }); that.$selectItem.filter(':checked').not(this).prop('checked', false); } that.updateSelected(); }); $.each(this.header.events, function (i, events) { if (!events) { return; } // fix bug, if events is defined with namespace if (typeof events === 'string') { events = calculateObjectValue(null, events); } for (var key in events) { that.$body.find('tr').each(function () { var $tr = $(this), $td = $tr.find(that.options.cardView ? '.card-view' : 'td').eq(i), index = key.indexOf(' '), name = key.substring(0, index), el = key.substring(index + 1), func = events[key]; $td.find(el).off(name).on(name, function (e) { var index = $tr.data('index'), row = that.data[index], value = row[that.header.fields[i]]; func.apply(this, [e, value, row, index]); }); }); } }); this.updateSelected(); this.resetView(); this.trigger('post-body'); }; BootstrapTable.prototype.initServer = function (silent, query) { var that = this, data = {}, params = { pageSize: this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize, pageNumber: this.options.pageNumber, searchText: this.searchText, sortName: this.options.sortName, sortOrder: this.options.sortOrder }; if (!this.options.url) { return; } if (this.options.queryParamsType === 'limit') { params = { search: params.searchText, sort: params.sortName, order: params.sortOrder }; if (this.options.pagination) { params.limit = this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize; params.offset = this.options.pageSize === this.options.formatAllRows() ? 0 : this.options.pageSize * (this.options.pageNumber - 1); } } if (!($.isEmptyObject(this.filterColumnsPartial))) { params['filter'] = JSON.stringify(this.filterColumnsPartial, null); } data = calculateObjectValue(this.options, this.options.queryParams, [params], data); $.extend(data, query || {}); // false to stop request if (data === false) { return; } if (!silent) { this.$loading.show(); } $.ajax($.extend({}, calculateObjectValue(null, this.options.ajaxOptions), { type: this.options.method, 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 (res) { res = calculateObjectValue(that.options, that.options.responseHandler, [res], res); that.load(res); that.trigger('load-success', res); }, error: function (res) { that.trigger('load-error', res.status); }, complete: function () { if (!silent) { that.$loading.hide(); } } })); }; BootstrapTable.prototype.initKeyEvents = function () { if (this.options.keyEvents) { var that = this; $(document).off('keypress').on('keypress', function (e) { var $search = that.$toolbar.find('.search input'), $refresh = that.$toolbar.find('button[name="refresh"]'), $toggle= that.$toolbar.find('button[name="toggle"]'), $paginationSwitch = that.$toolbar.find('button[name="paginationSwitch"]'); switch (e.keyCode) { case 115://s case 83://S if (!that.options.search) { return; } if(document.activeElement === $search.get(0)){ return true; } $search.focus(); return false; case 114: //r case 82: //R if (!that.options.showRefresh) { return; } if(document.activeElement === $search.get(0)){ return true; } $refresh.click(); return false; case 116: //t case 84: //T if (!that.options.showToggle) { return; } if(document.activeElement === $search.get(0)){ return true; } $toggle.click(); return false; case 112: //p case 80: //p if (!that.options.showPaginationSwitch) { return; } if(document.activeElement === $search.get(0)){ return true; } $paginationSwitch.click(); return false; } }); } }; BootstrapTable.prototype.getCaretHtml = function () { return ['', '', ''].join(''); }; BootstrapTable.prototype.updateSelected = function () { var checkAll = this.$selectItem.filter(':enabled').length === this.$selectItem.filter(':enabled').filter(':checked').length; this.$selectAll.add(this.$selectAll_).prop('checked', checkAll); this.$selectItem.each(function () { $(this).parents('tr')[$(this).prop('checked') ? 'addClass' : 'removeClass']('selected'); }); }; BootstrapTable.prototype.updateRows = function (checked) { var that = this; this.$selectItem.each(function () { that.data[$(this).data('index')][that.header.stateField] = checked; }); }; BootstrapTable.prototype.resetRows = function () { var that = this; $.each(this.data, function (i, row) { that.$selectAll.prop('checked', false); that.$selectItem.prop('checked', false); row[that.header.stateField] = false; }); }; BootstrapTable.prototype.trigger = function (name) { var args = Array.prototype.slice.call(arguments, 1); name += '.bs.table'; 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]); }; BootstrapTable.prototype.resetHeader = function () { this.$el.css('margin-top', -this.$header.height()); // 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); return; }; BootstrapTable.prototype.fitHeader = function () { var that = this, $fixedHeader, $fixedBody, scrollWidth; if (that.$el.is(':hidden')) { that.timeoutFooter_ = setTimeout($.proxy(that.fitHeader, that), 100); return; } $fixedHeader = that.$container.find('.fixed-table-header'), $fixedBody = that.$container.find('.fixed-table-body'), scrollWidth = that.$el.width() > $fixedBody.width() ? getScrollBarWidth() : 0; that.$header_ = that.$header.clone(true, true); that.$selectAll_ = that.$header_.find('[name="btSelectAll"]'); $fixedHeader.css({ 'margin-right': scrollWidth }).find('table').css('width', that.$el.css('width')) .html('').attr('class', that.$el.attr('class')) .append(that.$header_); // fix bug: $.data() is not working as expected after $.append() that.$header.find('th').each(function (i) { that.$header_.find('th').eq(i).data($(this).data()); }); that.$body.find('tr:first-child:not(.no-records-found) > *').each(function (i) { that.$header_.find('div.fht-cell').eq(i).width($(this).innerWidth()); }); // horizontal scroll event // TODO: it's probably better improving the layout than binding to scroll event $fixedBody.off('scroll').on('scroll', function () { $fixedHeader.scrollLeft($(this).scrollLeft()); }); that.trigger('post-header'); }; BootstrapTable.prototype.resetFooter = function () { var that = this, data = that.getData(), html = []; if (!this.options.showFooter || this.options.cardView) { //do nothing return; } $.each(this.options.columns, function (i, column) { var falign = '', // footer align style style = '', class_ = sprintf(' class="%s"', column['class']); if (!column.visible) { return; } if (that.options.cardView && (!column.cardVisible)) { return; } falign = sprintf('text-align: %s; ', column.falign ? column.falign : column.align); style = sprintf('vertical-align: %s; ', column.valign); html.push(''); html.push(calculateObjectValue(column, column.footerFormatter, [data], ' ') || ' '); html.push(''); }); this.$footer.find('tr').html(html.join('')); clearTimeout(this.timeoutFooter_); this.timeoutFooter_ = setTimeout($.proxy(this.fitFooter, this), this.$el.is(':hidden') ? 100: 0); }; BootstrapTable.prototype.fitFooter = function () { var that = this, $fixedBody, $footerTd, elWidth, scrollWidth; clearTimeout(this.timeoutFooter_); if (this.$el.is(':hidden')) { this.timeoutFooter_ = setTimeout($.proxy(this.fitFooter, this), 100); return; } $fixedBody = this.$container.find('.fixed-table-body'); elWidth = this.$el.css('width'); scrollWidth = elWidth > $fixedBody.width() ? getScrollBarWidth() : 0; this.$footer.css({ 'margin-right': scrollWidth }).find('table').css('width', elWidth) .attr('class', this.$el.attr('class')); $footerTd = this.$footer.find('td'); $fixedBody.find('tbody tr:first-child:not(.no-records-found) > td').each(function(i) { $footerTd.eq(i).outerWidth($(this).outerWidth()); }); }; BootstrapTable.prototype.toggleColumn = function (index, checked, needUpdate) { if (index === -1) { return; } this.options.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(sprintf('[value="%s"]', index)).prop('checked', checked); } if ($items.filter(':checked').length <= this.options.minimumCountColumns) { $items.filter(':checked').prop('disabled', true); } } }; BootstrapTable.prototype.toggleRow = function (index, isIdField, visible) { if (index === -1) { return; } $(this.$body[0]).children().filter(sprintf( isIdField ? '[value="%s"]' : '[data-index="%s"]', index)) [visible ? 'show' : 'hide'](); }; // PUBLIC FUNCTION DEFINITION // ======================= BootstrapTable.prototype.resetView = function (params) { var that = this, padding = 0, $tableContainer = that.$container.find('.fixed-table-container'); 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); if (this.options.height) { var toolbarHeight = +this.$toolbar.children().outerHeight(true), paginationHeight = +this.$pagination.children().outerHeight(true), height = this.options.height - toolbarHeight - paginationHeight; $tableContainer.css('height', height + 'px'); } if (this.options.cardView) { // remove the element css that.$el.css('margin-top', '0'); $tableContainer.css('padding-bottom', '0'); return; } if (this.options.showHeader && this.options.height) { this.$container.find('.fixed-table-header').show(); this.resetHeader(); padding += cellHeight; } else { this.$container.find('.fixed-table-header').hide(); this.trigger('post-header'); } if (this.options.showFooter) { this.resetFooter(); if (this.options.height) { padding += cellHeight; } } $tableContainer.css('padding-bottom', padding + 'px'); }; BootstrapTable.prototype.getData = function () { return (this.searchText || !$.isEmptyObject(this.filterColumns) || !$.isEmptyObject(this.filterColumnsPartial)) ? this.data : this.options.data; }; BootstrapTable.prototype.load = function (data) { var fixedScroll = false; // #431: support pagination if (this.options.sidePagination === 'server') { this.options.totalRows = data.total; fixedScroll = data.fixedScroll; data = data.rows; } else if (!$.isArray(data)) { // support fixedScroll fixedScroll = data.fixedScroll; data = data.data; } this.initData(data); this.initSearch(); this.initPagination(); this.initBody(fixedScroll); }; BootstrapTable.prototype.append = function (data) { this.initData(data, 'append'); this.initSearch(); this.initPagination(); this.initBody(true); }; BootstrapTable.prototype.prepend = function (data) { this.initData(data, 'prepend'); this.initSearch(); this.initPagination(); this.initBody(true); }; BootstrapTable.prototype.remove = function (params) { var len = this.options.data.length, i, 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 ($.inArray(row[params.field], params.values) !== -1) { this.options.data.splice(i, 1); } } if (len === this.options.data.length) { return; } this.initSearch(); this.initPagination(); this.initBody(true); }; BootstrapTable.prototype.insertRow = function (params) { if (!params.hasOwnProperty('index') || !params.hasOwnProperty('row')) { return; } this.data.splice(params.index, 0, params.row); this.initSearch(); this.initPagination(); this.initBody(true); }; BootstrapTable.prototype.updateRow = function (params) { if (!params.hasOwnProperty('index') || !params.hasOwnProperty('row')) { return; } $.extend(this.data[params.index], params.row); this.initBody(true); }; BootstrapTable.prototype.showRow = function (params) { if (!params.hasOwnProperty('index')) { return; } this.toggleRow(params.index, params.isIdField === undefined ? false : true, true); }; BootstrapTable.prototype.hideRow = function (params) { if (!params.hasOwnProperty('index')) { return; } this.toggleRow(params.index, params.isIdField === undefined ? false : true, false); }; BootstrapTable.prototype.getRowsHidden = function (show) { var rows = $(this.$body[0]).children().filter(':hidden'), i = 0; if (show) { for (; i < rows.length; i++) { $(rows[i]).show(); } } return rows; } BootstrapTable.prototype.mergeCells = function (options) { var row = options.index, col = $.inArray(options.field, this.header.fields), rowspan = options.rowspan || 1, colspan = options.colspan || 1, i, j, $tr = this.$body.find('tr'), $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(); }; BootstrapTable.prototype.getOptions = function () { return this.options; }; BootstrapTable.prototype.getSelections = function () { var that = this; return $.grep(this.data, function (row) { return row[that.header.stateField]; }); }; BootstrapTable.prototype.checkAll = function () { this.checkAll_(true); }; BootstrapTable.prototype.uncheckAll = function () { this.checkAll_(false); }; BootstrapTable.prototype.checkAll_ = function (checked) { var rows; if (!checked) { rows = this.getSelections(); } this.$selectItem.filter(':enabled').prop('checked', checked); this.updateRows(checked); this.updateSelected(); if (checked) { rows = this.getSelections(); } this.trigger(checked ? 'check-all' : 'uncheck-all', rows); }; BootstrapTable.prototype.check = function (index) { this.check_(true, index); }; BootstrapTable.prototype.uncheck = function (index) { this.check_(false, index); }; BootstrapTable.prototype.check_ = function (checked, index) { this.$selectItem.filter(sprintf('[data-index="%s"]', index)).prop('checked', checked); this.data[index][this.header.stateField] = checked; this.updateSelected(); this.trigger(checked ? 'check' : 'uncheck', this.data[index]); }; BootstrapTable.prototype.checkBy = function (obj) { this.checkBy_(true, obj); }; BootstrapTable.prototype.uncheckBy = function (obj) { this.checkBy_(false, obj); }; BootstrapTable.prototype.checkBy_ = function (checked, obj) { if (!obj.hasOwnProperty('field') || !obj.hasOwnProperty('values')) { return; } var that = this; $.each(this.options.data, function (index, row) { if (!row.hasOwnProperty(obj.field)) { return false; } if ($.inArray(row[obj.field], obj.values) !== -1) { that.$selectItem.filter(sprintf('[data-index="%s"]', index)).prop('checked', checked); row[that.header.stateField] = checked; that.trigger(checked ? 'check' : 'uncheck', row); } }); this.updateSelected(); }; BootstrapTable.prototype.destroy = function () { 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 }; BootstrapTable.prototype.showLoading = function () { this.$loading.show(); }; BootstrapTable.prototype.hideLoading = function () { this.$loading.hide(); }; BootstrapTable.prototype.togglePagination = function () { 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(); }; BootstrapTable.prototype.refresh = function (params) { if (params && params.url) { this.options.url = params.url; this.options.pageNumber = 1; } this.initServer(params && params.silent, params && params.query); }; BootstrapTable.prototype.showColumn = function (field) { this.toggleColumn(getFieldIndex(this.options.columns, field), true, true); }; BootstrapTable.prototype.hideColumn = function (field) { this.toggleColumn(getFieldIndex(this.options.columns, field), false, true); }; BootstrapTable.prototype.filterBy = function (columns) { this.filterColumns = $.isEmptyObject(columns) ? {} : columns; this.options.pageNumber = 1; this.initSearch(); this.updatePagination(); }; BootstrapTable.prototype.scrollTo = function (value) { var $tbody = this.$container.find('.fixed-table-body'); if (typeof value === 'string') { value = value === 'bottom' ? $tbody[0].scrollHeight : 0; } if (typeof value === 'number') { $tbody.scrollTop(value); } }; BootstrapTable.prototype.selectPage = function (page) { if (page > 0 && page <= this.options.totalPages) { this.options.pageNumber = page; this.updatePagination(); } }; BootstrapTable.prototype.prevPage = function () { if (this.options.pageNumber > 1) { this.options.pageNumber--; this.updatePagination(); } }; BootstrapTable.prototype.nextPage = function () { if (this.options.pageNumber < this.options.totalPages) { this.options.pageNumber++; this.updatePagination(); } }; BootstrapTable.prototype.toggleView = function () { this.options.cardView = !this.options.cardView; this.initHeader(); // Fixed remove toolbar when click cardView button. //that.initToolbar(); this.initBody(); }; // BOOTSTRAP TABLE PLUGIN DEFINITION // ======================= var allowedMethods = [ 'getOptions', 'getSelections', 'getData', 'load', 'append', 'prepend', 'remove', 'insertRow', 'updateRow', 'showRow', 'hideRow', 'getRowsHidden', 'mergeCells', 'checkAll', 'uncheckAll', 'check', 'uncheck', 'checkBy', 'uncheckBy', 'refresh', 'resetView', 'destroy', 'showLoading', 'hideLoading', 'showColumn', 'hideColumn', 'filterBy', 'scrollTo', 'selectPage', 'prevPage', 'nextPage', 'togglePagination', 'toggleView' ]; $.fn.bootstrapTable = function (option, _relatedTarget) { var value; this.each(function () { var $this = $(this), data = $this.data('bootstrap.table'), options = $.extend({}, BootstrapTable.DEFAULTS, $this.data(), typeof option === 'object' && option); if (typeof option === 'string') { if ($.inArray(option, allowedMethods) < 0) { throw "Unknown method: " + option; } if (!data) { return; } value = data[option](_relatedTarget); if (option === 'destroy') { $this.removeData('bootstrap.table'); } } if (!data) { $this.data('bootstrap.table', (data = new BootstrapTable(this, options))); } }); return typeof value === 'undefined' ? this : value; }; $.fn.bootstrapTable.Constructor = BootstrapTable; $.fn.bootstrapTable.defaults = BootstrapTable.DEFAULTS; $.fn.bootstrapTable.columnDefaults = BootstrapTable.COLUMN_DEFAULTS; $.fn.bootstrapTable.locales = BootstrapTable.LOCALES; $.fn.bootstrapTable.methods = allowedMethods; // BOOTSTRAP TABLE INIT // ======================= $(function () { $('[data-toggle="table"]').bootstrapTable(); }); }(jQuery);