/** * Custom toolbar for bootstrap table that allows select filters **/ !function($) { 'use strict'; var firstLoad = false; var sprintf = $.fn.bootstrapTable.utils.sprintf; var escapeHTML = function (text) { if (typeof text === 'string') { return text .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"') .replace(/'/g, ''') .replace(/`/g, '`'); } return text; }; var showAvdSearch = function(pColumns, searchTitle, searchText, that) { if (!$("#avdSearchModal" + "_" + that.options.idTable).hasClass("modal")) { var vModal = sprintf("
", "_" + that.options.idTable); vModal += "
"; vModal += "
"; vModal += "
"; vModal += " "; vModal += sprintf("

%s

", searchTitle); vModal += "
"; vModal += "
"; vModal += sprintf("
", "_" + that.options.idTable); vModal += "
"; vModal += "
"; vModal += "
"; vModal += "
"; vModal += "
"; $("body").append($(vModal)); var vFormAvd = createFormAvd(pColumns, searchText, that), timeoutId = 0;; $('#avdSearchModalContent' + "_" + that.options.idTable).append(vFormAvd.join('')); $('#' + that.options.idForm + ' .select2').select2({ allowClear: true }); $('#' + that.options.idForm).off('keyup blur', 'input').on('keyup blur', 'input', function (event) { clearTimeout(timeoutId); timeoutId = setTimeout(function () { that.onColumnAdvancedSearch(event); }, that.options.searchTimeOut); }); $('#' + that.options.idForm + ' .select2').change(function (event) { clearTimeout(timeoutId); timeoutId = setTimeout(function () { that.onColumnAdvancedSearch(event); }, that.options.searchTimeOut); }); $("#btnCloseAvd" + "_" + that.options.idTable).click(function() { $("#avdSearchModal" + "_" + that.options.idTable).modal('hide'); }); //$("#avdSearchModal" + "_" + that.options.idTable).modal(); } else { $("#avdSearchModal" + "_" + that.options.idTable).modal(); } }; var createFormAvd = function(pColumns, searchText, that) { var htmlForm = []; htmlForm.push(sprintf('
', that.options.idForm, that.options.actionForm)); for (var i in pColumns) { var vObjCol = pColumns[i]; if (!vObjCol.checkbox && vObjCol.visible && vObjCol.searchable && vObjCol.filter) { htmlForm.push('
'); htmlForm.push(sprintf('', vObjCol.title)); htmlForm.push('
'); if (vObjCol.filter.type == 'select') { htmlForm.push(sprintf(''); } else { htmlForm.push(sprintf('', vObjCol.field, vObjCol.title, vObjCol.field)); } htmlForm.push('
'); htmlForm.push('
'); } } htmlForm.push('
'); htmlForm.push('
'); htmlForm.push(sprintf('', "_" + that.options.idTable, searchText)); htmlForm.push('
'); htmlForm.push('
'); htmlForm.push('
'); return htmlForm; }; $.extend($.fn.bootstrapTable.defaults, { advancedSearch: false, idForm: 'advancedSearch', actionForm: '', idTable: undefined, onColumnAdvancedSearch: function (field, text) { return false; } }); $.extend($.fn.bootstrapTable.defaults.icons, { advancedSearchIcon: 'glyphicon-filter' }); $.extend($.fn.bootstrapTable.Constructor.EVENTS, { 'column-advanced-search.bs.table': 'onColumnAdvancedSearch' }); $.extend($.fn.bootstrapTable.locales, { formatAdvancedSearch: function() { return 'Advanced Search'; }, formatAdvancedCloseButton: function() { return "Search"; } }); $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales); var BootstrapTable = $.fn.bootstrapTable.Constructor, _initToolbar = BootstrapTable.prototype.initToolbar, _load = BootstrapTable.prototype.load, _initSearch = BootstrapTable.prototype.initSearch; BootstrapTable.prototype.initToolbar = function() { _initToolbar.apply(this, Array.prototype.slice.apply(arguments)); if (!this.options.search) { return; } if (!this.options.advancedSearch) { return; } if (!this.options.idTable) { return; } var that = this, html = []; html.push(sprintf('
', this.options.buttonsAlign, this.options.buttonsAlign)); html.push(sprintf('
'); that.$toolbar.find('.search').before(html.join('')); that.$toolbar.find('button[name="advancedSearch"]') .off('click').on('click', function() { showAvdSearch(that.columns, that.options.formatAdvancedSearch(), that.options.formatAdvancedCloseButton(), that); }); showAvdSearch(that.columns, that.options.formatAdvancedSearch(), that.options.formatAdvancedCloseButton(), that); }; BootstrapTable.prototype.load = function(data) { _load.apply(this, Array.prototype.slice.apply(arguments)); if (!this.options.advancedSearch) { return; } if (typeof this.options.idTable === 'undefined') { return; } else { if (!firstLoad) { var height = parseInt($(".bootstrap-table").height()); height += 10; $("#" + this.options.idTable).bootstrapTable("resetView", {height: height}); firstLoad = true; } } }; BootstrapTable.prototype.initSearch = function () { _initSearch.apply(this, Array.prototype.slice.apply(arguments)); if (!this.options.advancedSearch) { return; } var that = this; var fp = $.isEmptyObject(this.filterColumnsPartial) ? null : this.filterColumnsPartial; this.data = fp ? $.grep(this.data, function (item, i) { for (var key in fp) { var fval = fp[key].toLowerCase(); var value = item[key]; value = $.fn.bootstrapTable.utils.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 && (value + '').toLowerCase().indexOf('not ' + fval) === -1)) { return false; } } return true; }) : this.data; }; BootstrapTable.prototype.onSearch = function (event) { var elem = $(event.currentTarget); var text; var $field = elem[0].id; if (elem.is('select')) { text = $.trim(elem.find('option:selected').text()); } else { text = $.trim(elem.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.searchText = text; this.options.pageNumber = 1; this.initSearch(); this.updatePagination(); this.trigger('search', text); }; BootstrapTable.prototype.onColumnAdvancedSearch = function (event) { var elem = $(event.currentTarget); var text; var $field = elem[0].id; if (elem.is('select')) { text = $.trim(elem.find('option:selected').text()); } else { text = $.trim(elem.val()); } if ($.isEmptyObject(this.filterColumnsPartial)) { this.filterColumnsPartial = {}; } if (text) { this.filterColumnsPartial[$field] = text; } else { delete this.filterColumnsPartial[$field]; } this.options.pageNumber = 1; this.onSearch(event); this.updatePagination(); this.trigger('column-advanced-search', $field, text); }; }(jQuery);