12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622 |
- (function ($) {
- 'use strict';
- //<editor-fold desc="Shims">
- if (!String.prototype.includes) {
- (function () {
- 'use strict'; // needed to support `apply`/`call` with `undefined`/`null`
- var toString = {}.toString;
- var defineProperty = (function () {
- // IE 8 only supports `Object.defineProperty` on DOM elements
- try {
- var object = {};
- var $defineProperty = Object.defineProperty;
- var result = $defineProperty(object, object, object) && $defineProperty;
- } catch (error) {
- }
- return result;
- }());
- var indexOf = ''.indexOf;
- var includes = function (search) {
- if (this == null) {
- throw new TypeError();
- }
- var string = String(this);
- if (search && toString.call(search) == '[object RegExp]') {
- throw new TypeError();
- }
- var stringLength = string.length;
- var searchString = String(search);
- var searchLength = searchString.length;
- var position = arguments.length > 1 ? arguments[1] : undefined;
- // `ToInteger`
- var pos = position ? Number(position) : 0;
- if (pos != pos) { // better `isNaN`
- pos = 0;
- }
- var start = Math.min(Math.max(pos, 0), stringLength);
- // Avoid the `indexOf` call if no match is possible
- if (searchLength + start > stringLength) {
- return false;
- }
- return indexOf.call(string, searchString, pos) != -1;
- };
- if (defineProperty) {
- defineProperty(String.prototype, 'includes', {
- 'value': includes,
- 'configurable': true,
- 'writable': true
- });
- } else {
- String.prototype.includes = includes;
- }
- }());
- }
- if (!String.prototype.startsWith) {
- (function () {
- 'use strict'; // needed to support `apply`/`call` with `undefined`/`null`
- var defineProperty = (function () {
- // IE 8 only supports `Object.defineProperty` on DOM elements
- try {
- var object = {};
- var $defineProperty = Object.defineProperty;
- var result = $defineProperty(object, object, object) && $defineProperty;
- } catch (error) {
- }
- return result;
- }());
- var toString = {}.toString;
- var startsWith = function (search) {
- if (this == null) {
- throw new TypeError();
- }
- var string = String(this);
- if (search && toString.call(search) == '[object RegExp]') {
- throw new TypeError();
- }
- var stringLength = string.length;
- var searchString = String(search);
- var searchLength = searchString.length;
- var position = arguments.length > 1 ? arguments[1] : undefined;
- // `ToInteger`
- var pos = position ? Number(position) : 0;
- if (pos != pos) { // better `isNaN`
- pos = 0;
- }
- var start = Math.min(Math.max(pos, 0), stringLength);
- // Avoid the `indexOf` call if no match is possible
- if (searchLength + start > stringLength) {
- return false;
- }
- var index = -1;
- while (++index < searchLength) {
- if (string.charCodeAt(start + index) != searchString.charCodeAt(index)) {
- return false;
- }
- }
- return true;
- };
- if (defineProperty) {
- defineProperty(String.prototype, 'startsWith', {
- 'value': startsWith,
- 'configurable': true,
- 'writable': true
- });
- } else {
- String.prototype.startsWith = startsWith;
- }
- }());
- }
- if (!Object.keys) {
- Object.keys = function (
- o, // object
- k, // key
- r // result array
- ){
- // initialize object and result
- r=[];
- // iterate over object keys
- for (k in o)
- // fill result array with non-prototypical keys
- r.hasOwnProperty.call(o, k) && r.push(k);
- // return result
- return r
- };
- }
- $.fn.triggerNative = function (eventName) {
- var el = this[0],
- event;
- if (el.dispatchEvent) {
- if (typeof Event === 'function') {
- // For modern browsers
- event = new Event(eventName, {
- bubbles: true
- });
- } else {
- // For IE since it doesn't support Event constructor
- event = document.createEvent('Event');
- event.initEvent(eventName, true, false);
- }
- el.dispatchEvent(event);
- } else {
- if (el.fireEvent) {
- event = document.createEventObject();
- event.eventType = eventName;
- el.fireEvent('on' + eventName, event);
- }
- this.trigger(eventName);
- }
- };
- //</editor-fold>
- // Case insensitive contains search
- $.expr[':'].icontains = function (obj, index, meta) {
- var $obj = $(obj);
- var haystack = ($obj.data('tokens') || $obj.text()).toUpperCase();
- return haystack.includes(meta[3].toUpperCase());
- };
- // Case insensitive begins search
- $.expr[':'].ibegins = function (obj, index, meta) {
- var $obj = $(obj);
- var haystack = ($obj.data('tokens') || $obj.text()).toUpperCase();
- return haystack.startsWith(meta[3].toUpperCase());
- };
- // Case and accent insensitive contains search
- $.expr[':'].aicontains = function (obj, index, meta) {
- var $obj = $(obj);
- var haystack = ($obj.data('tokens') || $obj.data('normalizedText') || $obj.text()).toUpperCase();
- return haystack.includes(meta[3].toUpperCase());
- };
- // Case and accent insensitive begins search
- $.expr[':'].aibegins = function (obj, index, meta) {
- var $obj = $(obj);
- var haystack = ($obj.data('tokens') || $obj.data('normalizedText') || $obj.text()).toUpperCase();
- return haystack.startsWith(meta[3].toUpperCase());
- };
- /**
- * Remove all diatrics from the given text.
- * @access private
- * @param {String} text
- * @returns {String}
- */
- function normalizeToBase(text) {
- var rExps = [
- {re: /[\xC0-\xC6]/g, ch: "A"},
- {re: /[\xE0-\xE6]/g, ch: "a"},
- {re: /[\xC8-\xCB]/g, ch: "E"},
- {re: /[\xE8-\xEB]/g, ch: "e"},
- {re: /[\xCC-\xCF]/g, ch: "I"},
- {re: /[\xEC-\xEF]/g, ch: "i"},
- {re: /[\xD2-\xD6]/g, ch: "O"},
- {re: /[\xF2-\xF6]/g, ch: "o"},
- {re: /[\xD9-\xDC]/g, ch: "U"},
- {re: /[\xF9-\xFC]/g, ch: "u"},
- {re: /[\xC7-\xE7]/g, ch: "c"},
- {re: /[\xD1]/g, ch: "N"},
- {re: /[\xF1]/g, ch: "n"}
- ];
- $.each(rExps, function () {
- text = text.replace(this.re, this.ch);
- });
- return text;
- }
- function htmlEscape(html) {
- var escapeMap = {
- '&': '&',
- '<': '<',
- '>': '>',
- '"': '"',
- "'": ''',
- '`': '`'
- };
- var source = '(?:' + Object.keys(escapeMap).join('|') + ')',
- testRegexp = new RegExp(source),
- replaceRegexp = new RegExp(source, 'g'),
- string = html == null ? '' : '' + html;
- return testRegexp.test(string) ? string.replace(replaceRegexp, function (match) {
- return escapeMap[match];
- }) : string;
- }
- var Selectpicker = function (element, options, e) {
- if (e) {
- e.stopPropagation();
- e.preventDefault();
- }
- this.$element = $(element);
- this.$newElement = null;
- this.$button = null;
- this.$menu = null;
- this.$lis = null;
- this.options = options;
- // If we have no title yet, try to pull it from the html title attribute (jQuery doesnt' pick it up as it's not a
- // data-attribute)
- if (this.options.title === null) {
- this.options.title = this.$element.attr('title');
- }
- //Expose public methods
- this.val = Selectpicker.prototype.val;
- this.render = Selectpicker.prototype.render;
- this.refresh = Selectpicker.prototype.refresh;
- this.setStyle = Selectpicker.prototype.setStyle;
- this.selectAll = Selectpicker.prototype.selectAll;
- this.deselectAll = Selectpicker.prototype.deselectAll;
- this.destroy = Selectpicker.prototype.remove;
- this.remove = Selectpicker.prototype.remove;
- this.show = Selectpicker.prototype.show;
- this.hide = Selectpicker.prototype.hide;
- this.init();
- };
- Selectpicker.VERSION = '1.7.2';
- // part of this is duplicated in i18n/defaults-en_US.js. Make sure to update both.
- Selectpicker.DEFAULTS = {
- noneSelectedText: 'Nothing selected',
- //No results matched
- noneResultsText: '没有结果匹配 {0}',
- countSelectedText: function (numSelected, numTotal) {
- return (numSelected == 1) ? "{0} item selected" : "{0} items selected";
- },
- maxOptionsText: function (numAll, numGroup) {
- return [
- (numAll == 1) ? 'Limit reached ({n} item max)' : 'Limit reached ({n} items max)',
- (numGroup == 1) ? 'Group limit reached ({n} item max)' : 'Group limit reached ({n} items max)'
- ];
- },
- selectAllText: 'Select All',
- deselectAllText: 'Deselect All',
- doneButton: false,
- doneButtonText: 'Close',
- multipleSeparator: ', ',
- styleBase: 'btn',
- style: 'btn-default',
- size: 'auto',
- title: null,
- selectedTextFormat: 'values',
- width: false,
- container: false,
- hideDisabled: false,
- showSubtext: false,
- showIcon: true,
- showContent: true,
- dropupAuto: true,
- header: false,
- liveSearch: false,
- liveSearchPlaceholder: null,
- liveSearchNormalize: false,
- liveSearchStyle: 'contains',
- actionsBox: false,
- iconBase: 'glyphicon',
- tickIcon: 'glyphicon-ok',
- maxOptions: false,
- mobile: false,
- selectOnTab: false,
- dropdownAlignRight: false
- };
- Selectpicker.prototype = {
- constructor: Selectpicker,
- init: function () {
- var that = this,
- id = this.$element.attr('id');
- this.$element.addClass('bs-select-hidden');
- // store originalIndex (key) and newIndex (value) in this.liObj for fast accessibility
- // allows us to do this.$lis.eq(that.liObj[index]) instead of this.$lis.filter('[data-original-index="' + index + '"]')
- this.liObj = {};
- this.multiple = this.$element.prop('multiple');
- this.autofocus = this.$element.prop('autofocus');
- this.$newElement = this.createView();
- this.$element.after(this.$newElement);
- this.$button = this.$newElement.children('button');
- this.$menu = this.$newElement.children('.dropdown-menu');
- this.$menuInner = this.$menu.children('.inner');
- this.$searchbox = this.$menu.find('input');
- if (this.options.dropdownAlignRight)
- this.$menu.addClass('dropdown-menu-right');
- if (typeof id !== 'undefined') {
- this.$button.attr('data-id', id);
- $('label[for="' + id + '"]').click(function (e) {
- e.preventDefault();
- that.$button.focus();
- });
- }
- this.checkDisabled();
- this.clickListener();
- if (this.options.liveSearch) this.liveSearchListener();
- this.render();
- this.setStyle();
- this.setWidth();
- if (this.options.container) this.selectPosition();
- this.$menu.data('this', this);
- this.$newElement.data('this', this);
- if (this.options.mobile) this.mobile();
- this.$newElement.on({
- 'hide.bs.dropdown': function (e) {
- that.$element.trigger('hide.bs.select', e);
- },
- 'hidden.bs.dropdown': function (e) {
- that.$element.trigger('hidden.bs.select', e);
- },
- 'show.bs.dropdown': function (e) {
- that.$element.trigger('show.bs.select', e);
- },
- 'shown.bs.dropdown': function (e) {
- that.$element.trigger('shown.bs.select', e);
- }
- });
- setTimeout(function () {
- that.$element.trigger('loaded.bs.select');
- });
- },
- createDropdown: function () {
- // Options
- // If we are multiple, then add the show-tick class by default
- var multiple = this.multiple ? ' show-tick' : '',
- inputGroup = this.$element.parent().hasClass('input-group') ? ' input-group-btn' : '',
- autofocus = this.autofocus ? ' autofocus' : '';
- // Elements
- var header = this.options.header ? '<div class="popover-title"><button type="button" class="close" aria-hidden="true">×</button>' + this.options.header + '</div>' : '';
- var searchbox = this.options.liveSearch ?
- '<div class="bs-searchbox">' +
- '<input type="text" class="form-control" autocomplete="off"' +
- (null === this.options.liveSearchPlaceholder ? '' : ' placeholder="' + htmlEscape(this.options.liveSearchPlaceholder) + '"') + '>' +
- '</div>'
- : '';
- var actionsbox = this.multiple && this.options.actionsBox ?
- '<div class="bs-actionsbox">' +
- '<div class="btn-group btn-group-sm btn-block">' +
- '<button type="button" class="actions-btn bs-select-all btn btn-default">' +
- this.options.selectAllText +
- '</button>' +
- '<button type="button" class="actions-btn bs-deselect-all btn btn-default">' +
- this.options.deselectAllText +
- '</button>' +
- '</div>' +
- '</div>'
- : '';
- var donebutton = this.multiple && this.options.doneButton ?
- '<div class="bs-donebutton">' +
- '<div class="btn-group btn-block">' +
- '<button type="button" class="btn btn-sm btn-default">' +
- this.options.doneButtonText +
- '</button>' +
- '</div>' +
- '</div>'
- : '';
- var drop =
- '<div class="btn-group bootstrap-select' + multiple + inputGroup + '">' +
- '<button type="button" class="' + this.options.styleBase + ' dropdown-toggle" data-toggle="dropdown"' + autofocus + '>' +
- '<span class="filter-option pull-left"></span> ' +
- '<span class="caret"></span>' +
- '</button>' +
- '<div class="dropdown-menu open">' +
- header +
- searchbox +
- actionsbox +
- '<ul class="dropdown-menu inner" role="menu">' +
- '</ul>' +
- donebutton +
- '</div>' +
- '</div>';
- return $(drop);
- },
- createView: function () {
- var $drop = this.createDropdown(),
- li = this.createLi();
- $drop.find('ul')[0].innerHTML = li;
- return $drop;
- },
- reloadLi: function () {
- //Remove all children.
- this.destroyLi();
- //Re build
- var li = this.createLi();
- this.$menuInner[0].innerHTML = li;
- },
- destroyLi: function () {
- this.$menu.find('li').remove();
- },
- createLi: function () {
- var that = this,
- _li = [],
- optID = 0,
- titleOption = document.createElement('option'),
- liIndex = -1; // increment liIndex whenever a new <li> element is created to ensure liObj is correct
- // Helper functions
- /**
- * @param content
- * @param [index]
- * @param [classes]
- * @param [optgroup]
- * @returns {string}
- */
- var generateLI = function (content, index, classes, optgroup) {
- return '<li' +
- ((typeof classes !== 'undefined' & '' !== classes) ? ' class="' + classes + '"' : '') +
- ((typeof index !== 'undefined' & null !== index) ? ' data-original-index="' + index + '"' : '') +
- ((typeof optgroup !== 'undefined' & null !== optgroup) ? 'data-optgroup="' + optgroup + '"' : '') +
- '>' + content + '</li>';
- };
- /**
- * @param text
- * @param [classes]
- * @param [inline]
- * @param [tokens]
- * @returns {string}
- */
- var generateA = function (text, classes, inline, tokens) {
- return '<a tabindex="0"' +
- (typeof classes !== 'undefined' ? ' class="' + classes + '"' : '') +
- (typeof inline !== 'undefined' ? ' style="' + inline + '"' : '') +
- (that.options.liveSearchNormalize ? ' data-normalized-text="' + normalizeToBase(htmlEscape(text)) + '"' : '') +
- (typeof tokens !== 'undefined' || tokens !== null ? ' data-tokens="' + tokens + '"' : '') +
- '>' + text +
- '<span class="' + that.options.iconBase + ' ' + that.options.tickIcon + ' check-mark"></span>' +
- '</a>';
- };
- if (this.options.title && !this.multiple) {
- // this option doesn't create a new <li> element, but does add a new option, so liIndex is decreased
- // since liObj is recalculated on every refresh, liIndex needs to be decreased even if the titleOption is already appended
- liIndex--;
- if (!this.$element.find('.bs-title-option').length) {
- // Use native JS to prepend option (faster)
- var element = this.$element[0];
- titleOption.className = 'bs-title-option';
- titleOption.appendChild(document.createTextNode(this.options.title));
- titleOption.value = '';
- element.insertBefore(titleOption, element.firstChild);
- // Check if selected attribute is already set on an option. If not, select the titleOption option.
- if ($(element.options[element.selectedIndex]).attr('selected') === undefined) titleOption.selected = true;
- }
- }
- this.$element.find('option').each(function (index) {
- var $this = $(this);
- liIndex++;
- if ($this.hasClass('bs-title-option')) return;
- // Get the class and text for the option
- var optionClass = this.className || '',
- inline = this.style.cssText,
- text = $this.data('content') ? $this.data('content') : $this.html(),
- tokens = $this.data('tokens') ? $this.data('tokens') : null,
- subtext = typeof $this.data('subtext') !== 'undefined' ? '<small class="text-muted">' + $this.data('subtext') + '</small>' : '',
- icon = typeof $this.data('icon') !== 'undefined' ? '<span class="' + that.options.iconBase + ' ' + $this.data('icon') + '"></span> ' : '',
- isDisabled = this.disabled || (this.parentElement.tagName === 'OPTGROUP' && this.parentElement.disabled);
- if (icon !== '' && isDisabled) {
- icon = '<span>' + icon + '</span>';
- }
- if (that.options.hideDisabled && isDisabled) {
- liIndex--;
- return;
- }
- if (!$this.data('content')) {
- // Prepend any icon and append any subtext to the main text.
- text = icon + '<span class="text">' + text + subtext + '</span>';
- }
- if (this.parentElement.tagName === 'OPTGROUP' && $this.data('divider') !== true) {
- var optGroupClass = ' ' + this.parentElement.className || '';
- if ($this.index() === 0) { // Is it the first option of the optgroup?
- optID += 1;
- // Get the opt group label
- var label = this.parentElement.label,
- labelSubtext = typeof $this.parent().data('subtext') !== 'undefined' ? '<small class="text-muted">' + $this.parent().data('subtext') + '</small>' : '',
- labelIcon = $this.parent().data('icon') ? '<span class="' + that.options.iconBase + ' ' + $this.parent().data('icon') + '"></span> ' : '';
- label = labelIcon + '<span class="text">' + label + labelSubtext + '</span>';
- if (index !== 0 && _li.length > 0) { // Is it NOT the first option of the select && are there elements in the dropdown?
- liIndex++;
- _li.push(generateLI('', null, 'divider', optID + 'div'));
- }
- liIndex++;
- _li.push(generateLI(label, null, 'dropdown-header' + optGroupClass, optID));
- }
- _li.push(generateLI(generateA(text, 'opt ' + optionClass + optGroupClass, inline, tokens), index, '', optID));
- } else if ($this.data('divider') === true) {
- _li.push(generateLI('', index, 'divider'));
- } else if ($this.data('hidden') === true) {
- _li.push(generateLI(generateA(text, optionClass, inline, tokens), index, 'hidden is-hidden'));
- } else {
- if (this.previousElementSibling && this.previousElementSibling.tagName === 'OPTGROUP') {
- liIndex++;
- _li.push(generateLI('', null, 'divider', optID + 'div'));
- }
- _li.push(generateLI(generateA(text, optionClass, inline, tokens), index));
- }
- that.liObj[index] = liIndex;
- });
- //If we are not multiple, we don't have a selected item, and we don't have a title, select the first element so something is set in the button
- if (!this.multiple && this.$element.find('option:selected').length === 0 && !this.options.title) {
- this.$element.find('option').eq(0).prop('selected', true).attr('selected', 'selected');
- }
- return _li.join('');
- },
- findLis: function () {
- if (this.$lis == null) this.$lis = this.$menu.find('li');
- return this.$lis;
- },
- /**
- * @param [updateLi] defaults to true
- */
- render: function (updateLi) {
- var that = this,
- notDisabled;
- //Update the LI to match the SELECT
- if (updateLi !== false) {
- this.$element.find('option').each(function (index) {
- var $lis = that.findLis().eq(that.liObj[index]);
- that.setDisabled(index, this.disabled || this.parentElement.tagName === 'OPTGROUP' && this.parentElement.disabled, $lis);
- that.setSelected(index, this.selected, $lis);
- });
- }
- this.tabIndex();
- var selectedItems = this.$element.find('option').map(function () {
- if (this.selected) {
- if (that.options.hideDisabled && (this.disabled || this.parentElement.tagName === 'OPTGROUP' && this.parentElement.disabled)) return false;
- var $this = $(this),
- icon = $this.data('icon') && that.options.showIcon ? '<i class="' + that.options.iconBase + ' ' + $this.data('icon') + '"></i> ' : '',
- subtext;
- if (that.options.showSubtext && $this.data('subtext') && !that.multiple) {
- subtext = ' <small class="text-muted">' + $this.data('subtext') + '</small>';
- } else {
- subtext = '';
- }
- if (typeof $this.attr('title') !== 'undefined') {
- return $this.attr('title');
- } else if ($this.data('content') && that.options.showContent) {
- return $this.data('content');
- } else {
- return icon + $this.html() + subtext;
- }
- }
- }).toArray();
- //Fixes issue in IE10 occurring when no default option is selected and at least one option is disabled
- //Convert all the values into a comma delimited string
- var title = !this.multiple ? selectedItems[0] : selectedItems.join(this.options.multipleSeparator);
- //If this is multi select, and the selectText type is count, the show 1 of 2 selected etc..
- if (this.multiple && this.options.selectedTextFormat.indexOf('count') > -1) {
- var max = this.options.selectedTextFormat.split('>');
- if ((max.length > 1 && selectedItems.length > max[1]) || (max.length == 1 && selectedItems.length >= 2)) {
- notDisabled = this.options.hideDisabled ? ', [disabled]' : '';
- var totalCount = this.$element.find('option').not('[data-divider="true"], [data-hidden="true"]' + notDisabled).length,
- tr8nText = (typeof this.options.countSelectedText === 'function') ? this.options.countSelectedText(selectedItems.length, totalCount) : this.options.countSelectedText;
- title = tr8nText.replace('{0}', selectedItems.length.toString()).replace('{1}', totalCount.toString());
- }
- }
- if (this.options.title == undefined) {
- this.options.title = this.$element.attr('title');
- }
- if (this.options.selectedTextFormat == 'static') {
- title = this.options.title;
- }
- //If we dont have a title, then use the default, or if nothing is set at all, use the not selected text
- if (!title) {
- title = typeof this.options.title !== 'undefined' ? this.options.title : this.options.noneSelectedText;
- }
- //strip all html-tags and trim the result
- this.$button.attr('title', $.trim(title.replace(/<[^>]*>?/g, '')));
- this.$button.children('.filter-option').html(title);
- this.$element.trigger('rendered.bs.select');
- },
- /**
- * @param [style]
- * @param [status]
- */
- setStyle: function (style, status) {
- if (this.$element.attr('class')) {
- this.$newElement.addClass(this.$element.attr('class').replace(/selectpicker|mobile-device|bs-select-hidden|validate\[.*\]/gi, ''));
- }
- var buttonClass = style ? style : this.options.style;
- if (status == 'add') {
- this.$button.addClass(buttonClass);
- } else if (status == 'remove') {
- this.$button.removeClass(buttonClass);
- } else {
- this.$button.removeClass(this.options.style);
- this.$button.addClass(buttonClass);
- }
- },
- liHeight: function (refresh) {
- if (!refresh && (this.options.size === false || this.sizeInfo)) return;
- var newElement = document.createElement('div'),
- menu = document.createElement('div'),
- menuInner = document.createElement('ul'),
- divider = document.createElement('li'),
- li = document.createElement('li'),
- a = document.createElement('a'),
- text = document.createElement('span'),
- header = this.options.header ? this.$menu.find('.popover-title')[0].cloneNode(true) : null,
- search = this.options.liveSearch ? document.createElement('div') : null,
- actions = this.options.actionsBox && this.multiple ? this.$menu.find('.bs-actionsbox')[0].cloneNode(true) : null,
- doneButton = this.options.doneButton && this.multiple ? this.$menu.find('.bs-donebutton')[0].cloneNode(true) : null;
- text.className = 'text';
- newElement.className = this.$menu[0].parentNode.className + ' open';
- menu.className = 'dropdown-menu open';
- menuInner.className = 'dropdown-menu inner';
- divider.className = 'divider';
- text.appendChild(document.createTextNode('Inner text'));
- a.appendChild(text);
- li.appendChild(a);
- menuInner.appendChild(li);
- menuInner.appendChild(divider);
- if (header) menu.appendChild(header);
- if (search) {
- // create a span instead of input as creating an input element is slower
- var input = document.createElement('span');
- search.className = 'bs-searchbox';
- input.className = 'form-control';
- search.appendChild(input);
- menu.appendChild(search);
- }
- if (actions) menu.appendChild(actions);
- menu.appendChild(menuInner);
- if (doneButton) menu.appendChild(doneButton);
- newElement.appendChild(menu);
- document.body.appendChild(newElement);
- var liHeight = a.offsetHeight,
- headerHeight = header ? header.offsetHeight : 0,
- searchHeight = search ? search.offsetHeight : 0,
- actionsHeight = actions ? actions.offsetHeight : 0,
- doneButtonHeight = doneButton ? doneButton.offsetHeight : 0,
- dividerHeight = $(divider).outerHeight(true),
- // fall back to jQuery if getComputedStyle is not supported
- menuStyle = typeof getComputedStyle === 'function' ? getComputedStyle(menu) : false,
- $menu = menuStyle ? null : $(menu),
- menuPadding = parseInt(menuStyle ? menuStyle.paddingTop : $menu.css('paddingTop')) +
- parseInt(menuStyle ? menuStyle.paddingBottom : $menu.css('paddingBottom')) +
- parseInt(menuStyle ? menuStyle.borderTopWidth : $menu.css('borderTopWidth')) +
- parseInt(menuStyle ? menuStyle.borderBottomWidth : $menu.css('borderBottomWidth')),
- menuExtras = menuPadding +
- parseInt(menuStyle ? menuStyle.marginTop : $menu.css('marginTop')) +
- parseInt(menuStyle ? menuStyle.marginBottom : $menu.css('marginBottom')) + 2;
- document.body.removeChild(newElement);
- this.sizeInfo = {
- liHeight: liHeight,
- headerHeight: headerHeight,
- searchHeight: searchHeight,
- actionsHeight: actionsHeight,
- doneButtonHeight: doneButtonHeight,
- dividerHeight: dividerHeight,
- menuPadding: menuPadding,
- menuExtras: menuExtras
- };
- },
- setSize: function () {
- this.findLis();
- this.liHeight();
- if (this.options.header) this.$menu.css('padding-top', 0);
- if (this.options.size === false) return;
- var that = this,
- $menu = this.$menu,
- $menuInner = this.$menuInner,
- $window = $(window),
- selectHeight = this.$newElement[0].offsetHeight,
- liHeight = this.sizeInfo['liHeight'],
- headerHeight = this.sizeInfo['headerHeight'],
- searchHeight = this.sizeInfo['searchHeight'],
- actionsHeight = this.sizeInfo['actionsHeight'],
- doneButtonHeight = this.sizeInfo['doneButtonHeight'],
- divHeight = this.sizeInfo['dividerHeight'],
- menuPadding = this.sizeInfo['menuPadding'],
- menuExtras = this.sizeInfo['menuExtras'],
- notDisabled = this.options.hideDisabled ? '.disabled' : '',
- menuHeight,
- getHeight,
- selectOffsetTop,
- selectOffsetBot,
- posVert = function () {
- selectOffsetTop = that.$newElement.offset().top - $window.scrollTop();
- selectOffsetBot = $window.height() - selectOffsetTop - selectHeight;
- };
- posVert();
- if (this.options.size === 'auto') {
- var getSize = function () {
- var minHeight,
- hasClass = function (className, include) {
- return function (element) {
- if (include) {
- return (element.classList ? element.classList.contains(className) : $(element).hasClass(className));
- } else {
- return !(element.classList ? element.classList.contains(className) : $(element).hasClass(className));
- }
- };
- },
- lis = that.$menuInner[0].getElementsByTagName('li'),
- lisVisible = Array.prototype.filter ? Array.prototype.filter.call(lis, hasClass('hidden', false)) : that.$lis.not('.hidden'),
- optGroup = Array.prototype.filter ? Array.prototype.filter.call(lisVisible, hasClass('dropdown-header', true)) : lisVisible.filter('.dropdown-header');
- posVert();
- menuHeight = selectOffsetBot - menuExtras;
- if (that.options.container) {
- if (!$menu.data('height')) $menu.data('height', $menu.height());
- getHeight = $menu.data('height');
- } else {
- getHeight = $menu.height();
- }
- if (that.options.dropupAuto) {
- that.$newElement.toggleClass('dropup', selectOffsetTop > selectOffsetBot && (menuHeight - menuExtras) < getHeight);
- }
- if (that.$newElement.hasClass('dropup')) {
- menuHeight = selectOffsetTop - menuExtras;
- }
- if ((lisVisible.length + optGroup.length) > 3) {
- minHeight = liHeight * 3 + menuExtras - 2;
- } else {
- minHeight = 0;
- }
- $menu.css({
- 'max-height': menuHeight + 'px',
- 'overflow': 'hidden',
- 'min-height': minHeight + headerHeight + searchHeight + actionsHeight + doneButtonHeight + 'px'
- });
- $menuInner.css({
- 'max-height': menuHeight - headerHeight - searchHeight - actionsHeight - doneButtonHeight - menuPadding + 'px',
- 'overflow-y': 'auto',
- 'min-height': Math.max(minHeight - menuPadding, 0) + 'px'
- });
- };
- getSize();
- this.$searchbox.off('input.getSize propertychange.getSize').on('input.getSize propertychange.getSize', getSize);
- $window.off('resize.getSize scroll.getSize').on('resize.getSize scroll.getSize', getSize);
- } else if (this.options.size && this.options.size != 'auto' && this.$lis.not(notDisabled).length > this.options.size) {
- var optIndex = this.$lis.not('.divider').not(notDisabled).children().slice(0, this.options.size).last().parent().index(),
- divLength = this.$lis.slice(0, optIndex + 1).filter('.divider').length;
- menuHeight = liHeight * this.options.size + divLength * divHeight + menuPadding;
- if (that.options.container) {
- if (!$menu.data('height')) $menu.data('height', $menu.height());
- getHeight = $menu.data('height');
- } else {
- getHeight = $menu.height();
- }
- if (that.options.dropupAuto) {
- //noinspection JSUnusedAssignment
- this.$newElement.toggleClass('dropup', selectOffsetTop > selectOffsetBot && (menuHeight - menuExtras) < getHeight);
- }
- $menu.css({
- 'max-height': menuHeight + headerHeight + searchHeight + actionsHeight + doneButtonHeight + 'px',
- 'overflow': 'hidden',
- 'min-height': ''
- });
- $menuInner.css({
- 'max-height': menuHeight - menuPadding + 'px',
- 'overflow-y': 'auto',
- 'min-height': ''
- });
- }
- },
- setWidth: function () {
- if (this.options.width === 'auto') {
- this.$menu.css('min-width', '0');
- // Get correct width if element is hidden
- var $selectClone = this.$menu.parent().clone().appendTo('body'),
- $selectClone2 = this.options.container ? this.$newElement.clone().appendTo('body') : $selectClone,
- ulWidth = $selectClone.children('.dropdown-menu').outerWidth(),
- btnWidth = $selectClone2.css('width', 'auto').children('button').outerWidth();
- $selectClone.remove();
- $selectClone2.remove();
- // Set width to whatever's larger, button title or longest option
- this.$newElement.css('width', Math.max(ulWidth, btnWidth) + 'px');
- } else if (this.options.width === 'fit') {
- // Remove inline min-width so width can be changed from 'auto'
- this.$menu.css('min-width', '');
- this.$newElement.css('width', '').addClass('fit-width');
- } else if (this.options.width) {
- // Remove inline min-width so width can be changed from 'auto'
- this.$menu.css('min-width', '');
- this.$newElement.css('width', this.options.width);
- } else {
- // Remove inline min-width/width so width can be changed
- this.$menu.css('min-width', '');
- this.$newElement.css('width', '');
- }
- // Remove fit-width class if width is changed programmatically
- if (this.$newElement.hasClass('fit-width') && this.options.width !== 'fit') {
- this.$newElement.removeClass('fit-width');
- }
- },
- selectPosition: function () {
- var that = this,
- $drop = $('<div class="bs-container" />'),
- pos,
- actualHeight,
- getPlacement = function ($element) {
- $drop.addClass($element.attr('class').replace(/form-control|fit-width/gi, '')).toggleClass('dropup', $element.hasClass('dropup'));
- pos = $element.offset();
- actualHeight = $element.hasClass('dropup') ? 0 : $element[0].offsetHeight;
- $drop.css({
- 'top': pos.top + actualHeight,
- 'left': pos.left,
- 'width': $element[0].offsetWidth,
- 'position': 'absolute'
- });
- };
- this.$newElement.on('click', function () {
- if (that.isDisabled()) {
- return;
- }
- getPlacement($(this));
- $drop.appendTo(that.options.container);
- $drop.toggleClass('open', !$(this).hasClass('open'));
- $drop.append(that.$menu);
- });
- $(window).on('resize scroll', function () {
- getPlacement(that.$newElement);
- });
- this.$element.on('hide.bs.select', function () {
- that.$menu.data('height', that.$menu.height());
- $drop.detach();
- });
- },
- setSelected: function (index, selected, $lis) {
- if (!$lis) {
- var $lis = this.findLis().eq(this.liObj[index]);
- }
- $lis.toggleClass('selected', selected);
- },
- setDisabled: function (index, disabled, $lis) {
- if (!$lis) {
- var $lis = this.findLis().eq(this.liObj[index]);
- }
- if (disabled) {
- $lis.addClass('disabled').children('a').attr('href', '#').attr('tabindex', -1);
- } else {
- $lis.removeClass('disabled').children('a').removeAttr('href').attr('tabindex', 0);
- }
- },
- isDisabled: function () {
- return this.$element[0].disabled;
- },
- checkDisabled: function () {
- var that = this;
- if (this.isDisabled()) {
- this.$newElement.addClass('disabled');
- this.$button.addClass('disabled').attr('tabindex', -1);
- } else {
- if (this.$button.hasClass('disabled')) {
- this.$newElement.removeClass('disabled');
- this.$button.removeClass('disabled');
- }
- if (this.$button.attr('tabindex') == -1 && !this.$element.data('tabindex')) {
- this.$button.removeAttr('tabindex');
- }
- }
- this.$button.click(function () {
- return !that.isDisabled();
- });
- },
- tabIndex: function () {
- if (this.$element.is('[tabindex]')) {
- this.$element.data('tabindex', this.$element.attr('tabindex'));
- this.$button.attr('tabindex', this.$element.data('tabindex'));
- }
- },
- clickListener: function () {
- var that = this,
- $document = $(document);
- this.$newElement.on('touchstart.dropdown', '.dropdown-menu', function (e) {
- e.stopPropagation();
- });
- $document.data('spaceSelect', false);
- this.$button.on('keyup', function (e) {
- if (/(32)/.test(e.keyCode.toString(10)) && $document.data('spaceSelect')) {
- e.preventDefault();
- $document.data('spaceSelect', false);
- }
- });
- this.$newElement.on('click', function () {
- that.setSize();
- that.$element.on('shown.bs.select', function () {
- if (!that.options.liveSearch && !that.multiple) {
- that.$menuInner.find('.selected a').focus();
- } else if (!that.multiple) {
- var selectedIndex = that.liObj[that.$element[0].selectedIndex];
- if (typeof selectedIndex !== 'number' || that.options.size === false) return;
- // scroll to selected option
- var offset = that.$lis.eq(selectedIndex)[0].offsetTop - that.$menuInner[0].offsetTop;
- offset = offset - that.$menuInner[0].offsetHeight/2 + that.sizeInfo.liHeight/2;
- that.$menuInner[0].scrollTop = offset;
- }
- });
- });
- this.$menuInner.on('click', 'li a', function (e) {
- var $this = $(this),
- clickedIndex = $this.parent().data('originalIndex'),
- prevValue = that.$element.val(),
- prevIndex = that.$element.prop('selectedIndex');
- // Don't close on multi choice menu
- if (that.multiple) {
- e.stopPropagation();
- }
- e.preventDefault();
- //Don't run if we have been disabled
- if (!that.isDisabled() && !$this.parent().hasClass('disabled')) {
- var $options = that.$element.find('option'),
- $option = $options.eq(clickedIndex),
- state = $option.prop('selected'),
- $optgroup = $option.parent('optgroup'),
- maxOptions = that.options.maxOptions,
- maxOptionsGrp = $optgroup.data('maxOptions') || false;
- if (!that.multiple) { // Deselect all others if not multi select box
- $options.prop('selected', false);
- $option.prop('selected', true);
- that.$menuInner.find('.selected').removeClass('selected');
- that.setSelected(clickedIndex, true);
- } else { // Toggle the one we have chosen if we are multi select.
- $option.prop('selected', !state);
- that.setSelected(clickedIndex, !state);
- $this.blur();
- if (maxOptions !== false || maxOptionsGrp !== false) {
- var maxReached = maxOptions < $options.filter(':selected').length,
- maxReachedGrp = maxOptionsGrp < $optgroup.find('option:selected').length;
- if ((maxOptions && maxReached) || (maxOptionsGrp && maxReachedGrp)) {
- if (maxOptions && maxOptions == 1) {
- $options.prop('selected', false);
- $option.prop('selected', true);
- that.$menuInner.find('.selected').removeClass('selected');
- that.setSelected(clickedIndex, true);
- } else if (maxOptionsGrp && maxOptionsGrp == 1) {
- $optgroup.find('option:selected').prop('selected', false);
- $option.prop('selected', true);
- var optgroupID = $this.parent().data('optgroup');
- that.$menuInner.find('[data-optgroup="' + optgroupID + '"]').removeClass('selected');
- that.setSelected(clickedIndex, true);
- } else {
- var maxOptionsArr = (typeof that.options.maxOptionsText === 'function') ?
- that.options.maxOptionsText(maxOptions, maxOptionsGrp) : that.options.maxOptionsText,
- maxTxt = maxOptionsArr[0].replace('{n}', maxOptions),
- maxTxtGrp = maxOptionsArr[1].replace('{n}', maxOptionsGrp),
- $notify = $('<div class="notify"></div>');
- // If {var} is set in array, replace it
- /** @deprecated */
- if (maxOptionsArr[2]) {
- maxTxt = maxTxt.replace('{var}', maxOptionsArr[2][maxOptions > 1 ? 0 : 1]);
- maxTxtGrp = maxTxtGrp.replace('{var}', maxOptionsArr[2][maxOptionsGrp > 1 ? 0 : 1]);
- }
- $option.prop('selected', false);
- that.$menu.append($notify);
- if (maxOptions && maxReached) {
- $notify.append($('<div>' + maxTxt + '</div>'));
- that.$element.trigger('maxReached.bs.select');
- }
- if (maxOptionsGrp && maxReachedGrp) {
- $notify.append($('<div>' + maxTxtGrp + '</div>'));
- that.$element.trigger('maxReachedGrp.bs.select');
- }
- setTimeout(function () {
- that.setSelected(clickedIndex, false);
- }, 10);
- $notify.delay(750).fadeOut(300, function () {
- $(this).remove();
- });
- }
- }
- }
- }
- if (!that.multiple) {
- that.$button.focus();
- } else if (that.options.liveSearch) {
- that.$searchbox.focus();
- }
- // Trigger select 'change'
- if ((prevValue != that.$element.val() && that.multiple) || (prevIndex != that.$element.prop('selectedIndex') && !that.multiple)) {
- that.$element.triggerNative('change');
- // $option.prop('selected') is current option state (selected/unselected). state is previous option state.
- that.$element.trigger('changed.bs.select', [clickedIndex, $option.prop('selected'), state]);
- }
- }
- });
- this.$menu.on('click', 'li.disabled a, .popover-title, .popover-title :not(.close)', function (e) {
- if (e.currentTarget == this) {
- e.preventDefault();
- e.stopPropagation();
- if (that.options.liveSearch && !$(e.target).hasClass('close')) {
- that.$searchbox.focus();
- } else {
- that.$button.focus();
- }
- }
- });
- this.$menuInner.on('click', '.divider, .dropdown-header', function (e) {
- e.preventDefault();
- e.stopPropagation();
- if (that.options.liveSearch) {
- that.$searchbox.focus();
- } else {
- that.$button.focus();
- }
- });
- this.$menu.on('click', '.popover-title .close', function () {
- that.$button.click();
- });
- this.$searchbox.on('click', function (e) {
- e.stopPropagation();
- });
- this.$menu.on('click', '.actions-btn', function (e) {
- if (that.options.liveSearch) {
- that.$searchbox.focus();
- } else {
- that.$button.focus();
- }
- e.preventDefault();
- e.stopPropagation();
- if ($(this).hasClass('bs-select-all')) {
- that.selectAll();
- } else {
- that.deselectAll();
- }
- that.$element.triggerNative('change');
- });
- this.$element.change(function () {
- that.render(false);
- });
- },
- liveSearchListener: function () {
- var that = this,
- $no_results = $('<li class="no-results"></li>');
- this.$newElement.on('click.dropdown.data-api touchstart.dropdown.data-api', function () {
- that.$menuInner.find('.active').removeClass('active');
- if (!!that.$searchbox.val()) {
- that.$searchbox.val('');
- that.$lis.not('.is-hidden').removeClass('hidden');
- if (!!$no_results.parent().length) $no_results.remove();
- }
- if (!that.multiple) that.$menuInner.find('.selected').addClass('active');
- setTimeout(function () {
- that.$searchbox.focus();
- }, 10);
- });
- this.$searchbox.on('click.dropdown.data-api focus.dropdown.data-api touchend.dropdown.data-api', function (e) {
- e.stopPropagation();
- });
- this.$searchbox.on('input propertychange', function () {
- if (that.$searchbox.val()) {
- var $searchBase = that.$lis.not('.is-hidden').removeClass('hidden').children('a');
- if (that.options.liveSearchNormalize) {
- $searchBase = $searchBase.not(':a' + that._searchStyle() + '("' + normalizeToBase(that.$searchbox.val()) + '")');
- } else {
- $searchBase = $searchBase.not(':' + that._searchStyle() + '("' + that.$searchbox.val() + '")');
- }
- $searchBase.parent().addClass('hidden');
- that.$lis.filter('.dropdown-header').each(function () {
- var $this = $(this),
- optgroup = $this.data('optgroup');
- if (that.$lis.filter('[data-optgroup=' + optgroup + ']').not($this).not('.hidden').length === 0) {
- $this.addClass('hidden');
- that.$lis.filter('[data-optgroup=' + optgroup + 'div]').addClass('hidden');
- }
- });
- var $lisVisible = that.$lis.not('.hidden');
- // hide divider if first or last visible, or if followed by another divider
- $lisVisible.each(function (index) {
- var $this = $(this);
- if ($this.hasClass('divider') && (
- $this.index() === $lisVisible.first().index() ||
- $this.index() === $lisVisible.last().index() ||
- $lisVisible.eq(index + 1).hasClass('divider'))) {
- $this.addClass('hidden');
- }
- });
- if (!that.$lis.not('.hidden, .no-results').length) {
- if (!!$no_results.parent().length) {
- $no_results.remove();
- }
- $no_results.html(that.options.noneResultsText.replace('{0}', '"' + htmlEscape(that.$searchbox.val()) + '"')).show();
- that.$menuInner.append($no_results);
- } else if (!!$no_results.parent().length) {
- $no_results.remove();
- }
- } else {
- that.$lis.not('.is-hidden').removeClass('hidden');
- if (!!$no_results.parent().length) {
- $no_results.remove();
- }
- }
- that.$lis.filter('.active').removeClass('active');
- if (that.$searchbox.val()) that.$lis.not('.hidden, .divider, .dropdown-header').eq(0).addClass('active').children('a').focus();
- $(this).focus();
- });
- },
- _searchStyle: function () {
- var style = 'icontains';
- switch (this.options.liveSearchStyle) {
- case 'begins':
- case 'startsWith':
- style = 'ibegins';
- break;
- case 'contains':
- default:
- break; //no need to change the default
- }
- return style;
- },
- val: function (value) {
- if (typeof value !== 'undefined') {
- this.$element.val(value);
- this.render();
- return this.$element;
- } else {
- return this.$element.val();
- }
- },
- selectAll: function () {
- this.findLis();
- this.$element.find('option:enabled').not('[data-divider], [data-hidden]').prop('selected', true);
- this.$lis.not('.divider, .dropdown-header, .disabled, .hidden').addClass('selected');
- this.render(false);
- },
- deselectAll: function () {
- this.findLis();
- this.$element.find('option:enabled').not('[data-divider], [data-hidden]').prop('selected', false);
- this.$lis.not('.divider, .dropdown-header, .disabled, .hidden').removeClass('selected');
- this.render(false);
- },
- keydown: function (e) {
- var $this = $(this),
- $parent = $this.is('input') ? $this.parent().parent() : $this.parent(),
- $items,
- that = $parent.data('this'),
- index,
- next,
- first,
- last,
- prev,
- nextPrev,
- prevIndex,
- isActive,
- selector = ':not(.disabled, .hidden, .dropdown-header, .divider)',
- keyCodeMap = {
- 32: ' ',
- 48: '0',
- 49: '1',
- 50: '2',
- 51: '3',
- 52: '4',
- 53: '5',
- 54: '6',
- 55: '7',
- 56: '8',
- 57: '9',
- 59: ';',
- 65: 'a',
- 66: 'b',
- 67: 'c',
- 68: 'd',
- 69: 'e',
- 70: 'f',
- 71: 'g',
- 72: 'h',
- 73: 'i',
- 74: 'j',
- 75: 'k',
- 76: 'l',
- 77: 'm',
- 78: 'n',
- 79: 'o',
- 80: 'p',
- 81: 'q',
- 82: 'r',
- 83: 's',
- 84: 't',
- 85: 'u',
- 86: 'v',
- 87: 'w',
- 88: 'x',
- 89: 'y',
- 90: 'z',
- 96: '0',
- 97: '1',
- 98: '2',
- 99: '3',
- 100: '4',
- 101: '5',
- 102: '6',
- 103: '7',
- 104: '8',
- 105: '9'
- };
- if (that.options.liveSearch) $parent = $this.parent().parent();
- if (that.options.container) $parent = that.$menu;
- $items = $('[role=menu] li a', $parent);
- isActive = that.$menu.parent().hasClass('open');
- if (!isActive && (e.keyCode >= 48 && e.keyCode <= 57 || e.keyCode >= 65 && e.keyCode <= 90)) {
- if (!that.options.container) {
- that.setSize();
- that.$menu.parent().addClass('open');
- isActive = true;
- } else {
- that.$newElement.trigger('click');
- }
- that.$searchbox.focus();
- }
- if (that.options.liveSearch) {
- if (/(^9$|27)/.test(e.keyCode.toString(10)) && isActive && that.$menu.find('.active').length === 0) {
- e.preventDefault();
- that.$menu.parent().removeClass('open');
- if (that.options.container) that.$newElement.removeClass('open');
- that.$button.focus();
- }
- // $items contains li elements when liveSearch is enabled
- $items = $('[role=menu] li:not(.disabled, .hidden, .dropdown-header, .divider)', $parent);
- if (!$this.val() && !/(38|40)/.test(e.keyCode.toString(10))) {
- if ($items.filter('.active').length === 0) {
- $items = that.$menuInner.find('li');
- if (that.options.liveSearchNormalize) {
- $items = $items.filter(':a' + that._searchStyle() + '(' + normalizeToBase(keyCodeMap[e.keyCode]) + ')');
- } else {
- $items = $items.filter(':' + that._searchStyle() + '(' + keyCodeMap[e.keyCode] + ')');
- }
- }
- }
- }
- if (!$items.length) return;
- if (/(38|40)/.test(e.keyCode.toString(10))) {
- index = $items.index($items.filter(':focus'));
- first = $items.parent(selector).first().data('originalIndex');
- last = $items.parent(selector).last().data('originalIndex');
- next = $items.eq(index).parent().nextAll(selector).eq(0).data('originalIndex');
- prev = $items.eq(index).parent().prevAll(selector).eq(0).data('originalIndex');
- nextPrev = $items.eq(next).parent().prevAll(selector).eq(0).data('originalIndex');
- if (that.options.liveSearch) {
- $items.each(function (i) {
- if (!$(this).hasClass('disabled')) {
- $(this).data('index', i);
- }
- });
- index = $items.index($items.filter('.active'));
- first = $items.first().data('index');
- last = $items.last().data('index');
- next = $items.eq(index).nextAll().eq(0).data('index');
- prev = $items.eq(index).prevAll().eq(0).data('index');
- nextPrev = $items.eq(next).prevAll().eq(0).data('index');
- }
- prevIndex = $this.data('prevIndex');
- if (e.keyCode == 38) {
- if (that.options.liveSearch) index--;
- if (index != nextPrev && index > prev) index = prev;
- if (index < first) index = first;
- if (index == prevIndex) index = last;
- } else if (e.keyCode == 40) {
- if (that.options.liveSearch) index++;
- if (index == -1) index = 0;
- if (index != nextPrev && index < next) index = next;
- if (index > last) index = last;
- if (index == prevIndex) index = first;
- }
- $this.data('prevIndex', index);
- if (!that.options.liveSearch) {
- $items.eq(index).focus();
- } else {
- e.preventDefault();
- if (!$this.hasClass('dropdown-toggle')) {
- $items.removeClass('active').eq(index).addClass('active').children('a').focus();
- $this.focus();
- }
- }
- } else if (!$this.is('input')) {
- var keyIndex = [],
- count,
- prevKey;
- $items.each(function () {
- if (!$(this).parent().hasClass('disabled')) {
- if ($.trim($(this).text().toLowerCase()).substring(0, 1) == keyCodeMap[e.keyCode]) {
- keyIndex.push($(this).parent().index());
- }
- }
- });
- count = $(document).data('keycount');
- count++;
- $(document).data('keycount', count);
- prevKey = $.trim($(':focus').text().toLowerCase()).substring(0, 1);
- if (prevKey != keyCodeMap[e.keyCode]) {
- count = 1;
- $(document).data('keycount', count);
- } else if (count >= keyIndex.length) {
- $(document).data('keycount', 0);
- if (count > keyIndex.length) count = 1;
- }
- $items.eq(keyIndex[count - 1]).focus();
- }
- // Select focused option if "Enter", "Spacebar" or "Tab" (when selectOnTab is true) are pressed inside the menu.
- if ((/(13|32)/.test(e.keyCode.toString(10)) || (/(^9$)/.test(e.keyCode.toString(10)) && that.options.selectOnTab)) && isActive) {
- if (!/(32)/.test(e.keyCode.toString(10))) e.preventDefault();
- if (!that.options.liveSearch) {
- var elem = $(':focus');
- elem.click();
- // Bring back focus for multiselects
- elem.focus();
- // Prevent screen from scrolling if the user hit the spacebar
- e.preventDefault();
- // Fixes spacebar selection of dropdown items in FF & IE
- $(document).data('spaceSelect', true);
- } else if (!/(32)/.test(e.keyCode.toString(10))) {
- that.$menuInner.find('.active a').click();
- $this.focus();
- }
- $(document).data('keycount', 0);
- }
- if ((/(^9$|27)/.test(e.keyCode.toString(10)) && isActive && (that.multiple || that.options.liveSearch)) || (/(27)/.test(e.keyCode.toString(10)) && !isActive)) {
- that.$menu.parent().removeClass('open');
- if (that.options.container) that.$newElement.removeClass('open');
- that.$button.focus();
- }
- },
- mobile: function () {
- this.$element.addClass('mobile-device').appendTo(this.$newElement);
- if (this.options.container) this.$menu.hide();
- },
- refresh: function () {
- this.$lis = null;
- this.liObj = {};
- this.reloadLi();
- this.render();
- this.checkDisabled();
- this.liHeight(true);
- this.setStyle();
- this.setWidth();
- if (this.$lis) this.$searchbox.trigger('propertychange');
- this.$element.trigger('refreshed.bs.select');
- },
- hide: function () {
- this.$newElement.hide();
- },
- show: function () {
- this.$newElement.show();
- },
- remove: function () {
- this.$newElement.remove();
- this.$element.remove();
- }
- };
- // SELECTPICKER PLUGIN DEFINITION
- // ==============================
- function Plugin(option, event) {
- // get the args of the outer function..
- var args = arguments;
- // The arguments of the function are explicitly re-defined from the argument list, because the shift causes them
- // to get lost/corrupted in android 2.3 and IE9 #715 #775
- var _option = option,
- _event = event;
- [].shift.apply(args);
- var value;
- var chain = this.each(function () {
- var $this = $(this);
- if ($this.is('select')) {
- var data = $this.data('selectpicker'),
- options = typeof _option == 'object' && _option;
- if (!data) {
- var config = $.extend({}, Selectpicker.DEFAULTS, $.fn.selectpicker.defaults || {}, $this.data(), options);
- $this.data('selectpicker', (data = new Selectpicker(this, config, _event)));
- } else if (options) {
- for (var i in options) {
- if (options.hasOwnProperty(i)) {
- data.options[i] = options[i];
- }
- }
- }
- if (typeof _option == 'string') {
- if (data[_option] instanceof Function) {
- value = data[_option].apply(data, args);
- } else {
- value = data.options[_option];
- }
- }
- }
- });
- if (typeof value !== 'undefined') {
- //noinspection JSUnusedAssignment
- return value;
- } else {
- return chain;
- }
- }
- var old = $.fn.selectpicker;
- $.fn.selectpicker = Plugin;
- $.fn.selectpicker.Constructor = Selectpicker;
- // SELECTPICKER NO CONFLICT
- // ========================
- $.fn.selectpicker.noConflict = function () {
- $.fn.selectpicker = old;
- return this;
- };
- $(document)
- .data('keycount', 0)
- .on('keydown', '.bootstrap-select [data-toggle=dropdown], .bootstrap-select [role="menu"], .bs-searchbox input', Selectpicker.prototype.keydown)
- .on('focusin.modal', '.bootstrap-select [data-toggle=dropdown], .bootstrap-select [role="menu"], .bs-searchbox input', function (e) {
- e.stopPropagation();
- });
- // SELECTPICKER DATA-API
- // =====================
- $(window).on('load.bs.select.data-api', function () {
- $('.selectpicker').each(function () {
- var $selectpicker = $(this);
- Plugin.call($selectpicker, $selectpicker.data());
- })
- });
- })(jQuery);
|