select2.js 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366
  1. /*
  2. Copyright 2012 Igor Vaynberg
  3. Version: @@ver@@ Timestamp: @@timestamp@@
  4. This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU
  5. General Public License version 2 (the "GPL License"). You may choose either license to govern your
  6. use of this software only upon the condition that you accept all of the terms of either the Apache
  7. License or the GPL License.
  8. You may obtain a copy of the Apache License and the GPL License at:
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. http://www.gnu.org/licenses/gpl-2.0.html
  11. Unless required by applicable law or agreed to in writing, software distributed under the
  12. Apache License or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for
  14. the specific language governing permissions and limitations under the Apache License and the GPL License.
  15. */
  16. (function ($) {
  17. if(typeof $.fn.each2 == "undefined") {
  18. $.extend($.fn, {
  19. /*
  20. * 4-10 times faster .each replacement
  21. * use it carefully, as it overrides jQuery context of element on each iteration
  22. */
  23. each2 : function (c) {
  24. var j = $([0]), i = -1, l = this.length;
  25. while (
  26. ++i < l
  27. && (j.context = j[0] = this[i])
  28. && c.call(j[0], i, j) !== false //"this"=DOM, i=index, j=jQuery object
  29. );
  30. return this;
  31. }
  32. });
  33. }
  34. })(jQuery);
  35. (function ($, undefined) {
  36. "use strict";
  37. /*global document, window, jQuery, console */
  38. if (window.Select2 !== undefined) {
  39. return;
  40. }
  41. var KEY, AbstractSelect2, SingleSelect2, MultiSelect2, nextUid, sizer,
  42. lastMousePosition={x:0,y:0}, $document, scrollBarDimensions,
  43. KEY = {
  44. TAB: 9,
  45. ENTER: 13,
  46. ESC: 27,
  47. SPACE: 32,
  48. LEFT: 37,
  49. UP: 38,
  50. RIGHT: 39,
  51. DOWN: 40,
  52. SHIFT: 16,
  53. CTRL: 17,
  54. ALT: 18,
  55. PAGE_UP: 33,
  56. PAGE_DOWN: 34,
  57. HOME: 36,
  58. END: 35,
  59. BACKSPACE: 8,
  60. DELETE: 46,
  61. isArrow: function (k) {
  62. k = k.which ? k.which : k;
  63. switch (k) {
  64. case KEY.LEFT:
  65. case KEY.RIGHT:
  66. case KEY.UP:
  67. case KEY.DOWN:
  68. return true;
  69. }
  70. return false;
  71. },
  72. isControl: function (e) {
  73. var k = e.which;
  74. switch (k) {
  75. case KEY.SHIFT:
  76. case KEY.CTRL:
  77. case KEY.ALT:
  78. return true;
  79. }
  80. if (e.metaKey) return true;
  81. return false;
  82. },
  83. isFunctionKey: function (k) {
  84. k = k.which ? k.which : k;
  85. return k >= 112 && k <= 123;
  86. }
  87. },
  88. MEASURE_SCROLLBAR_TEMPLATE = "<div class='select2-measure-scrollbar'></div>",
  89. DIACRITICS = {"\u24B6":"A","\uFF21":"A","\u00C0":"A","\u00C1":"A","\u00C2":"A","\u1EA6":"A","\u1EA4":"A","\u1EAA":"A","\u1EA8":"A","\u00C3":"A","\u0100":"A","\u0102":"A","\u1EB0":"A","\u1EAE":"A","\u1EB4":"A","\u1EB2":"A","\u0226":"A","\u01E0":"A","\u00C4":"A","\u01DE":"A","\u1EA2":"A","\u00C5":"A","\u01FA":"A","\u01CD":"A","\u0200":"A","\u0202":"A","\u1EA0":"A","\u1EAC":"A","\u1EB6":"A","\u1E00":"A","\u0104":"A","\u023A":"A","\u2C6F":"A","\uA732":"AA","\u00C6":"AE","\u01FC":"AE","\u01E2":"AE","\uA734":"AO","\uA736":"AU","\uA738":"AV","\uA73A":"AV","\uA73C":"AY","\u24B7":"B","\uFF22":"B","\u1E02":"B","\u1E04":"B","\u1E06":"B","\u0243":"B","\u0182":"B","\u0181":"B","\u24B8":"C","\uFF23":"C","\u0106":"C","\u0108":"C","\u010A":"C","\u010C":"C","\u00C7":"C","\u1E08":"C","\u0187":"C","\u023B":"C","\uA73E":"C","\u24B9":"D","\uFF24":"D","\u1E0A":"D","\u010E":"D","\u1E0C":"D","\u1E10":"D","\u1E12":"D","\u1E0E":"D","\u0110":"D","\u018B":"D","\u018A":"D","\u0189":"D","\uA779":"D","\u01F1":"DZ","\u01C4":"DZ","\u01F2":"Dz","\u01C5":"Dz","\u24BA":"E","\uFF25":"E","\u00C8":"E","\u00C9":"E","\u00CA":"E","\u1EC0":"E","\u1EBE":"E","\u1EC4":"E","\u1EC2":"E","\u1EBC":"E","\u0112":"E","\u1E14":"E","\u1E16":"E","\u0114":"E","\u0116":"E","\u00CB":"E","\u1EBA":"E","\u011A":"E","\u0204":"E","\u0206":"E","\u1EB8":"E","\u1EC6":"E","\u0228":"E","\u1E1C":"E","\u0118":"E","\u1E18":"E","\u1E1A":"E","\u0190":"E","\u018E":"E","\u24BB":"F","\uFF26":"F","\u1E1E":"F","\u0191":"F","\uA77B":"F","\u24BC":"G","\uFF27":"G","\u01F4":"G","\u011C":"G","\u1E20":"G","\u011E":"G","\u0120":"G","\u01E6":"G","\u0122":"G","\u01E4":"G","\u0193":"G","\uA7A0":"G","\uA77D":"G","\uA77E":"G","\u24BD":"H","\uFF28":"H","\u0124":"H","\u1E22":"H","\u1E26":"H","\u021E":"H","\u1E24":"H","\u1E28":"H","\u1E2A":"H","\u0126":"H","\u2C67":"H","\u2C75":"H","\uA78D":"H","\u24BE":"I","\uFF29":"I","\u00CC":"I","\u00CD":"I","\u00CE":"I","\u0128":"I","\u012A":"I","\u012C":"I","\u0130":"I","\u00CF":"I","\u1E2E":"I","\u1EC8":"I","\u01CF":"I","\u0208":"I","\u020A":"I","\u1ECA":"I","\u012E":"I","\u1E2C":"I","\u0197":"I","\u24BF":"J","\uFF2A":"J","\u0134":"J","\u0248":"J","\u24C0":"K","\uFF2B":"K","\u1E30":"K","\u01E8":"K","\u1E32":"K","\u0136":"K","\u1E34":"K","\u0198":"K","\u2C69":"K","\uA740":"K","\uA742":"K","\uA744":"K","\uA7A2":"K","\u24C1":"L","\uFF2C":"L","\u013F":"L","\u0139":"L","\u013D":"L","\u1E36":"L","\u1E38":"L","\u013B":"L","\u1E3C":"L","\u1E3A":"L","\u0141":"L","\u023D":"L","\u2C62":"L","\u2C60":"L","\uA748":"L","\uA746":"L","\uA780":"L","\u01C7":"LJ","\u01C8":"Lj","\u24C2":"M","\uFF2D":"M","\u1E3E":"M","\u1E40":"M","\u1E42":"M","\u2C6E":"M","\u019C":"M","\u24C3":"N","\uFF2E":"N","\u01F8":"N","\u0143":"N","\u00D1":"N","\u1E44":"N","\u0147":"N","\u1E46":"N","\u0145":"N","\u1E4A":"N","\u1E48":"N","\u0220":"N","\u019D":"N","\uA790":"N","\uA7A4":"N","\u01CA":"NJ","\u01CB":"Nj","\u24C4":"O","\uFF2F":"O","\u00D2":"O","\u00D3":"O","\u00D4":"O","\u1ED2":"O","\u1ED0":"O","\u1ED6":"O","\u1ED4":"O","\u00D5":"O","\u1E4C":"O","\u022C":"O","\u1E4E":"O","\u014C":"O","\u1E50":"O","\u1E52":"O","\u014E":"O","\u022E":"O","\u0230":"O","\u00D6":"O","\u022A":"O","\u1ECE":"O","\u0150":"O","\u01D1":"O","\u020C":"O","\u020E":"O","\u01A0":"O","\u1EDC":"O","\u1EDA":"O","\u1EE0":"O","\u1EDE":"O","\u1EE2":"O","\u1ECC":"O","\u1ED8":"O","\u01EA":"O","\u01EC":"O","\u00D8":"O","\u01FE":"O","\u0186":"O","\u019F":"O","\uA74A":"O","\uA74C":"O","\u01A2":"OI","\uA74E":"OO","\u0222":"OU","\u24C5":"P","\uFF30":"P","\u1E54":"P","\u1E56":"P","\u01A4":"P","\u2C63":"P","\uA750":"P","\uA752":"P","\uA754":"P","\u24C6":"Q","\uFF31":"Q","\uA756":"Q","\uA758":"Q","\u024A":"Q","\u24C7":"R","\uFF32":"R","\u0154":"R","\u1E58":"R","\u0158":"R","\u0210":"R","\u0212":"R","\u1E5A":"R","\u1E5C":"R","\u0156":"R","\u1E5E":"R","\u024C":"R","\u2C64":"R","\uA75A":"R","\uA7A6":"R","\uA782":"R","\u24C8":"S","\uFF33":"S","\u1E9E":"S","\u015A":"S","\u1E64":"S","\u015C":"S","\u1E60":"S","\u0160":"S","\u1E66":"S","\u1E62":"S","\u1E68":"S","\u0218":"S","\u015E":"S","\u2C7E":"S","\uA7A8":"S","\uA784":"S","\u24C9":"T","\uFF34":"T","\u1E6A":"T","\u0164":"T","\u1E6C":"T","\u021A":"T","\u0162":"T","\u1E70":"T","\u1E6E":"T","\u0166":"T","\u01AC":"T","\u01AE":"T","\u023E":"T","\uA786":"T","\uA728":"TZ","\u24CA":"U","\uFF35":"U","\u00D9":"U","\u00DA":"U","\u00DB":"U","\u0168":"U","\u1E78":"U","\u016A":"U","\u1E7A":"U","\u016C":"U","\u00DC":"U","\u01DB":"U","\u01D7":"U","\u01D5":"U","\u01D9":"U","\u1EE6":"U","\u016E":"U","\u0170":"U","\u01D3":"U","\u0214":"U","\u0216":"U","\u01AF":"U","\u1EEA":"U","\u1EE8":"U","\u1EEE":"U","\u1EEC":"U","\u1EF0":"U","\u1EE4":"U","\u1E72":"U","\u0172":"U","\u1E76":"U","\u1E74":"U","\u0244":"U","\u24CB":"V","\uFF36":"V","\u1E7C":"V","\u1E7E":"V","\u01B2":"V","\uA75E":"V","\u0245":"V","\uA760":"VY","\u24CC":"W","\uFF37":"W","\u1E80":"W","\u1E82":"W","\u0174":"W","\u1E86":"W","\u1E84":"W","\u1E88":"W","\u2C72":"W","\u24CD":"X","\uFF38":"X","\u1E8A":"X","\u1E8C":"X","\u24CE":"Y","\uFF39":"Y","\u1EF2":"Y","\u00DD":"Y","\u0176":"Y","\u1EF8":"Y","\u0232":"Y","\u1E8E":"Y","\u0178":"Y","\u1EF6":"Y","\u1EF4":"Y","\u01B3":"Y","\u024E":"Y","\u1EFE":"Y","\u24CF":"Z","\uFF3A":"Z","\u0179":"Z","\u1E90":"Z","\u017B":"Z","\u017D":"Z","\u1E92":"Z","\u1E94":"Z","\u01B5":"Z","\u0224":"Z","\u2C7F":"Z","\u2C6B":"Z","\uA762":"Z","\u24D0":"a","\uFF41":"a","\u1E9A":"a","\u00E0":"a","\u00E1":"a","\u00E2":"a","\u1EA7":"a","\u1EA5":"a","\u1EAB":"a","\u1EA9":"a","\u00E3":"a","\u0101":"a","\u0103":"a","\u1EB1":"a","\u1EAF":"a","\u1EB5":"a","\u1EB3":"a","\u0227":"a","\u01E1":"a","\u00E4":"a","\u01DF":"a","\u1EA3":"a","\u00E5":"a","\u01FB":"a","\u01CE":"a","\u0201":"a","\u0203":"a","\u1EA1":"a","\u1EAD":"a","\u1EB7":"a","\u1E01":"a","\u0105":"a","\u2C65":"a","\u0250":"a","\uA733":"aa","\u00E6":"ae","\u01FD":"ae","\u01E3":"ae","\uA735":"ao","\uA737":"au","\uA739":"av","\uA73B":"av","\uA73D":"ay","\u24D1":"b","\uFF42":"b","\u1E03":"b","\u1E05":"b","\u1E07":"b","\u0180":"b","\u0183":"b","\u0253":"b","\u24D2":"c","\uFF43":"c","\u0107":"c","\u0109":"c","\u010B":"c","\u010D":"c","\u00E7":"c","\u1E09":"c","\u0188":"c","\u023C":"c","\uA73F":"c","\u2184":"c","\u24D3":"d","\uFF44":"d","\u1E0B":"d","\u010F":"d","\u1E0D":"d","\u1E11":"d","\u1E13":"d","\u1E0F":"d","\u0111":"d","\u018C":"d","\u0256":"d","\u0257":"d","\uA77A":"d","\u01F3":"dz","\u01C6":"dz","\u24D4":"e","\uFF45":"e","\u00E8":"e","\u00E9":"e","\u00EA":"e","\u1EC1":"e","\u1EBF":"e","\u1EC5":"e","\u1EC3":"e","\u1EBD":"e","\u0113":"e","\u1E15":"e","\u1E17":"e","\u0115":"e","\u0117":"e","\u00EB":"e","\u1EBB":"e","\u011B":"e","\u0205":"e","\u0207":"e","\u1EB9":"e","\u1EC7":"e","\u0229":"e","\u1E1D":"e","\u0119":"e","\u1E19":"e","\u1E1B":"e","\u0247":"e","\u025B":"e","\u01DD":"e","\u24D5":"f","\uFF46":"f","\u1E1F":"f","\u0192":"f","\uA77C":"f","\u24D6":"g","\uFF47":"g","\u01F5":"g","\u011D":"g","\u1E21":"g","\u011F":"g","\u0121":"g","\u01E7":"g","\u0123":"g","\u01E5":"g","\u0260":"g","\uA7A1":"g","\u1D79":"g","\uA77F":"g","\u24D7":"h","\uFF48":"h","\u0125":"h","\u1E23":"h","\u1E27":"h","\u021F":"h","\u1E25":"h","\u1E29":"h","\u1E2B":"h","\u1E96":"h","\u0127":"h","\u2C68":"h","\u2C76":"h","\u0265":"h","\u0195":"hv","\u24D8":"i","\uFF49":"i","\u00EC":"i","\u00ED":"i","\u00EE":"i","\u0129":"i","\u012B":"i","\u012D":"i","\u00EF":"i","\u1E2F":"i","\u1EC9":"i","\u01D0":"i","\u0209":"i","\u020B":"i","\u1ECB":"i","\u012F":"i","\u1E2D":"i","\u0268":"i","\u0131":"i","\u24D9":"j","\uFF4A":"j","\u0135":"j","\u01F0":"j","\u0249":"j","\u24DA":"k","\uFF4B":"k","\u1E31":"k","\u01E9":"k","\u1E33":"k","\u0137":"k","\u1E35":"k","\u0199":"k","\u2C6A":"k","\uA741":"k","\uA743":"k","\uA745":"k","\uA7A3":"k","\u24DB":"l","\uFF4C":"l","\u0140":"l","\u013A":"l","\u013E":"l","\u1E37":"l","\u1E39":"l","\u013C":"l","\u1E3D":"l","\u1E3B":"l","\u017F":"l","\u0142":"l","\u019A":"l","\u026B":"l","\u2C61":"l","\uA749":"l","\uA781":"l","\uA747":"l","\u01C9":"lj","\u24DC":"m","\uFF4D":"m","\u1E3F":"m","\u1E41":"m","\u1E43":"m","\u0271":"m","\u026F":"m","\u24DD":"n","\uFF4E":"n","\u01F9":"n","\u0144":"n","\u00F1":"n","\u1E45":"n","\u0148":"n","\u1E47":"n","\u0146":"n","\u1E4B":"n","\u1E49":"n","\u019E":"n","\u0272":"n","\u0149":"n","\uA791":"n","\uA7A5":"n","\u01CC":"nj","\u24DE":"o","\uFF4F":"o","\u00F2":"o","\u00F3":"o","\u00F4":"o","\u1ED3":"o","\u1ED1":"o","\u1ED7":"o","\u1ED5":"o","\u00F5":"o","\u1E4D":"o","\u022D":"o","\u1E4F":"o","\u014D":"o","\u1E51":"o","\u1E53":"o","\u014F":"o","\u022F":"o","\u0231":"o","\u00F6":"o","\u022B":"o","\u1ECF":"o","\u0151":"o","\u01D2":"o","\u020D":"o","\u020F":"o","\u01A1":"o","\u1EDD":"o","\u1EDB":"o","\u1EE1":"o","\u1EDF":"o","\u1EE3":"o","\u1ECD":"o","\u1ED9":"o","\u01EB":"o","\u01ED":"o","\u00F8":"o","\u01FF":"o","\u0254":"o","\uA74B":"o","\uA74D":"o","\u0275":"o","\u01A3":"oi","\u0223":"ou","\uA74F":"oo","\u24DF":"p","\uFF50":"p","\u1E55":"p","\u1E57":"p","\u01A5":"p","\u1D7D":"p","\uA751":"p","\uA753":"p","\uA755":"p","\u24E0":"q","\uFF51":"q","\u024B":"q","\uA757":"q","\uA759":"q","\u24E1":"r","\uFF52":"r","\u0155":"r","\u1E59":"r","\u0159":"r","\u0211":"r","\u0213":"r","\u1E5B":"r","\u1E5D":"r","\u0157":"r","\u1E5F":"r","\u024D":"r","\u027D":"r","\uA75B":"r","\uA7A7":"r","\uA783":"r","\u24E2":"s","\uFF53":"s","\u00DF":"s","\u015B":"s","\u1E65":"s","\u015D":"s","\u1E61":"s","\u0161":"s","\u1E67":"s","\u1E63":"s","\u1E69":"s","\u0219":"s","\u015F":"s","\u023F":"s","\uA7A9":"s","\uA785":"s","\u1E9B":"s","\u24E3":"t","\uFF54":"t","\u1E6B":"t","\u1E97":"t","\u0165":"t","\u1E6D":"t","\u021B":"t","\u0163":"t","\u1E71":"t","\u1E6F":"t","\u0167":"t","\u01AD":"t","\u0288":"t","\u2C66":"t","\uA787":"t","\uA729":"tz","\u24E4":"u","\uFF55":"u","\u00F9":"u","\u00FA":"u","\u00FB":"u","\u0169":"u","\u1E79":"u","\u016B":"u","\u1E7B":"u","\u016D":"u","\u00FC":"u","\u01DC":"u","\u01D8":"u","\u01D6":"u","\u01DA":"u","\u1EE7":"u","\u016F":"u","\u0171":"u","\u01D4":"u","\u0215":"u","\u0217":"u","\u01B0":"u","\u1EEB":"u","\u1EE9":"u","\u1EEF":"u","\u1EED":"u","\u1EF1":"u","\u1EE5":"u","\u1E73":"u","\u0173":"u","\u1E77":"u","\u1E75":"u","\u0289":"u","\u24E5":"v","\uFF56":"v","\u1E7D":"v","\u1E7F":"v","\u028B":"v","\uA75F":"v","\u028C":"v","\uA761":"vy","\u24E6":"w","\uFF57":"w","\u1E81":"w","\u1E83":"w","\u0175":"w","\u1E87":"w","\u1E85":"w","\u1E98":"w","\u1E89":"w","\u2C73":"w","\u24E7":"x","\uFF58":"x","\u1E8B":"x","\u1E8D":"x","\u24E8":"y","\uFF59":"y","\u1EF3":"y","\u00FD":"y","\u0177":"y","\u1EF9":"y","\u0233":"y","\u1E8F":"y","\u00FF":"y","\u1EF7":"y","\u1E99":"y","\u1EF5":"y","\u01B4":"y","\u024F":"y","\u1EFF":"y","\u24E9":"z","\uFF5A":"z","\u017A":"z","\u1E91":"z","\u017C":"z","\u017E":"z","\u1E93":"z","\u1E95":"z","\u01B6":"z","\u0225":"z","\u0240":"z","\u2C6C":"z","\uA763":"z"};
  90. $document = $(document);
  91. nextUid=(function() { var counter=1; return function() { return counter++; }; }());
  92. function reinsertElement(element) {
  93. var placeholder = $(document.createTextNode(''));
  94. element.before(placeholder);
  95. placeholder.before(element);
  96. placeholder.remove();
  97. }
  98. function stripDiacritics(str) {
  99. var ret, i, l, c;
  100. if (!str || str.length < 1) return str;
  101. ret = "";
  102. for (i = 0, l = str.length; i < l; i++) {
  103. c = str.charAt(i);
  104. ret += DIACRITICS[c] || c;
  105. }
  106. return ret;
  107. }
  108. function indexOf(value, array) {
  109. var i = 0, l = array.length;
  110. for (; i < l; i = i + 1) {
  111. if (equal(value, array[i])) return i;
  112. }
  113. return -1;
  114. }
  115. function measureScrollbar () {
  116. var $template = $( MEASURE_SCROLLBAR_TEMPLATE );
  117. $template.appendTo('body');
  118. var dim = {
  119. width: $template.width() - $template[0].clientWidth,
  120. height: $template.height() - $template[0].clientHeight
  121. };
  122. $template.remove();
  123. return dim;
  124. }
  125. /**
  126. * Compares equality of a and b
  127. * @param a
  128. * @param b
  129. */
  130. function equal(a, b) {
  131. if (a === b) return true;
  132. if (a === undefined || b === undefined) return false;
  133. if (a === null || b === null) return false;
  134. // Check whether 'a' or 'b' is a string (primitive or object).
  135. // The concatenation of an empty string (+'') converts its argument to a string's primitive.
  136. if (a.constructor === String) return a+'' === b+''; // a+'' - in case 'a' is a String object
  137. if (b.constructor === String) return b+'' === a+''; // b+'' - in case 'b' is a String object
  138. return false;
  139. }
  140. /**
  141. * Splits the string into an array of values, trimming each value. An empty array is returned for nulls or empty
  142. * strings
  143. * @param string
  144. * @param separator
  145. */
  146. function splitVal(string, separator) {
  147. var val, i, l;
  148. if (string === null || string.length < 1) return [];
  149. val = string.split(separator);
  150. for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]);
  151. return val;
  152. }
  153. function getSideBorderPadding(element) {
  154. return element.outerWidth(false) - element.width();
  155. }
  156. function installKeyUpChangeEvent(element) {
  157. var key="keyup-change-value";
  158. element.on("keydown", function () {
  159. if ($.data(element, key) === undefined) {
  160. $.data(element, key, element.val());
  161. }
  162. });
  163. element.on("keyup", function () {
  164. var val= $.data(element, key);
  165. if (val !== undefined && element.val() !== val) {
  166. $.removeData(element, key);
  167. element.trigger("keyup-change");
  168. }
  169. });
  170. }
  171. $document.on("mousemove", function (e) {
  172. lastMousePosition.x = e.pageX;
  173. lastMousePosition.y = e.pageY;
  174. });
  175. /**
  176. * filters mouse events so an event is fired only if the mouse moved.
  177. *
  178. * filters out mouse events that occur when mouse is stationary but
  179. * the elements under the pointer are scrolled.
  180. */
  181. function installFilteredMouseMove(element) {
  182. element.on("mousemove", function (e) {
  183. var lastpos = lastMousePosition;
  184. if (lastpos === undefined || lastpos.x !== e.pageX || lastpos.y !== e.pageY) {
  185. $(e.target).trigger("mousemove-filtered", e);
  186. }
  187. });
  188. }
  189. /**
  190. * Debounces a function. Returns a function that calls the original fn function only if no invocations have been made
  191. * within the last quietMillis milliseconds.
  192. *
  193. * @param quietMillis number of milliseconds to wait before invoking fn
  194. * @param fn function to be debounced
  195. * @param ctx object to be used as this reference within fn
  196. * @return debounced version of fn
  197. */
  198. function debounce(quietMillis, fn, ctx) {
  199. ctx = ctx || undefined;
  200. var timeout;
  201. return function () {
  202. var args = arguments;
  203. window.clearTimeout(timeout);
  204. timeout = window.setTimeout(function() {
  205. fn.apply(ctx, args);
  206. }, quietMillis);
  207. };
  208. }
  209. /**
  210. * A simple implementation of a thunk
  211. * @param formula function used to lazily initialize the thunk
  212. * @return {Function}
  213. */
  214. function thunk(formula) {
  215. var evaluated = false,
  216. value;
  217. return function() {
  218. if (evaluated === false) { value = formula(); evaluated = true; }
  219. return value;
  220. };
  221. };
  222. function installDebouncedScroll(threshold, element) {
  223. var notify = debounce(threshold, function (e) { element.trigger("scroll-debounced", e);});
  224. element.on("scroll", function (e) {
  225. if (indexOf(e.target, element.get()) >= 0) notify(e);
  226. });
  227. }
  228. function focus($el) {
  229. if ($el[0] === document.activeElement) return;
  230. /* set the focus in a 0 timeout - that way the focus is set after the processing
  231. of the current event has finished - which seems like the only reliable way
  232. to set focus */
  233. window.setTimeout(function() {
  234. var el=$el[0], pos=$el.val().length, range;
  235. $el.focus();
  236. /* make sure el received focus so we do not error out when trying to manipulate the caret.
  237. sometimes modals or others listeners may steal it after its set */
  238. var isVisible = (el.offsetWidth > 0 || el.offsetHeight > 0);
  239. if (isVisible && el === document.activeElement) {
  240. /* after the focus is set move the caret to the end, necessary when we val()
  241. just before setting focus */
  242. if(el.setSelectionRange)
  243. {
  244. el.setSelectionRange(pos, pos);
  245. }
  246. else if (el.createTextRange) {
  247. range = el.createTextRange();
  248. range.collapse(false);
  249. range.select();
  250. }
  251. }
  252. }, 0);
  253. }
  254. function getCursorInfo(el) {
  255. el = $(el)[0];
  256. var offset = 0;
  257. var length = 0;
  258. if ('selectionStart' in el) {
  259. offset = el.selectionStart;
  260. length = el.selectionEnd - offset;
  261. } else if ('selection' in document) {
  262. el.focus();
  263. var sel = document.selection.createRange();
  264. length = document.selection.createRange().text.length;
  265. sel.moveStart('character', -el.value.length);
  266. offset = sel.text.length - length;
  267. }
  268. return { offset: offset, length: length };
  269. }
  270. function killEvent(event) {
  271. event.preventDefault();
  272. event.stopPropagation();
  273. }
  274. function killEventImmediately(event) {
  275. event.preventDefault();
  276. event.stopImmediatePropagation();
  277. }
  278. function measureTextWidth(e) {
  279. if (!sizer){
  280. var style = e[0].currentStyle || window.getComputedStyle(e[0], null);
  281. sizer = $(document.createElement("div")).css({
  282. position: "absolute",
  283. left: "-10000px",
  284. top: "-10000px",
  285. display: "none",
  286. fontSize: style.fontSize,
  287. fontFamily: style.fontFamily,
  288. fontStyle: style.fontStyle,
  289. fontWeight: style.fontWeight,
  290. letterSpacing: style.letterSpacing,
  291. textTransform: style.textTransform,
  292. whiteSpace: "nowrap"
  293. });
  294. sizer.attr("class","select2-sizer");
  295. $("body").append(sizer);
  296. }
  297. sizer.text(e.val());
  298. return sizer.width();
  299. }
  300. function syncCssClasses(dest, src, adapter) {
  301. var classes, replacements = [], adapted;
  302. classes = dest.attr("class");
  303. if (classes) {
  304. classes = '' + classes; // for IE which returns object
  305. $(classes.split(" ")).each2(function() {
  306. if (this.indexOf("select2-") === 0) {
  307. replacements.push(this);
  308. }
  309. });
  310. }
  311. classes = src.attr("class");
  312. if (classes) {
  313. classes = '' + classes; // for IE which returns object
  314. $(classes.split(" ")).each2(function() {
  315. if (this.indexOf("select2-") !== 0) {
  316. adapted = adapter(this);
  317. if (adapted) {
  318. replacements.push(adapted);
  319. }
  320. }
  321. });
  322. }
  323. dest.attr("class", replacements.join(" "));
  324. }
  325. function markMatch(text, term, markup, escapeMarkup) {
  326. var match=stripDiacritics(text.toUpperCase()).indexOf(stripDiacritics(term.toUpperCase())),
  327. tl=term.length;
  328. if (match<0) {
  329. markup.push(escapeMarkup(text));
  330. return;
  331. }
  332. markup.push(escapeMarkup(text.substring(0, match)));
  333. markup.push("<span class='select2-match'>");
  334. markup.push(escapeMarkup(text.substring(match, match + tl)));
  335. markup.push("</span>");
  336. markup.push(escapeMarkup(text.substring(match + tl, text.length)));
  337. }
  338. function defaultEscapeMarkup(markup) {
  339. var replace_map = {
  340. '\\': '&#92;',
  341. '&': '&amp;',
  342. '<': '&lt;',
  343. '>': '&gt;',
  344. '"': '&quot;',
  345. "'": '&#39;',
  346. "/": '&#47;'
  347. };
  348. return String(markup).replace(/[&<>"'\/\\]/g, function (match) {
  349. return replace_map[match];
  350. });
  351. }
  352. /**
  353. * Produces an ajax-based query function
  354. *
  355. * @param options object containing configuration parameters
  356. * @param options.params parameter map for the transport ajax call, can contain such options as cache, jsonpCallback, etc. see $.ajax
  357. * @param options.transport function that will be used to execute the ajax request. must be compatible with parameters supported by $.ajax
  358. * @param options.url url for the data
  359. * @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url.
  360. * @param options.dataType request data type: ajax, jsonp, other datatypes supported by jQuery's $.ajax function or the transport function if specified
  361. * @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often
  362. * @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2.
  363. * The expected format is an object containing the following keys:
  364. * results array of objects that will be used as choices
  365. * more (optional) boolean indicating whether there are more results available
  366. * Example: {results:[{id:1, text:'Red'},{id:2, text:'Blue'}], more:true}
  367. */
  368. function ajax(options) {
  369. var timeout, // current scheduled but not yet executed request
  370. handler = null,
  371. quietMillis = options.quietMillis || 100,
  372. ajaxUrl = options.url,
  373. self = this;
  374. return function (query) {
  375. window.clearTimeout(timeout);
  376. timeout = window.setTimeout(function () {
  377. var data = options.data, // ajax data function
  378. url = ajaxUrl, // ajax url string or function
  379. transport = options.transport || $.fn.select2.ajaxDefaults.transport,
  380. // deprecated - to be removed in 4.0 - use params instead
  381. deprecated = {
  382. type: options.type || 'GET', // set type of request (GET or POST)
  383. cache: options.cache || false,
  384. jsonpCallback: options.jsonpCallback||undefined,
  385. dataType: options.dataType||"json"
  386. },
  387. params = $.extend({}, $.fn.select2.ajaxDefaults.params, deprecated);
  388. data = data ? data.call(self, query.term, query.page, query.context) : null;
  389. url = (typeof url === 'function') ? url.call(self, query.term, query.page, query.context) : url;
  390. if (handler && typeof handler.abort === "function") { handler.abort(); }
  391. if (options.params) {
  392. if ($.isFunction(options.params)) {
  393. $.extend(params, options.params.call(self));
  394. } else {
  395. $.extend(params, options.params);
  396. }
  397. }
  398. $.extend(params, {
  399. url: url,
  400. dataType: options.dataType,
  401. data: data,
  402. success: function (data) {
  403. // TODO - replace query.page with query so users have access to term, page, etc.
  404. var results = options.results(data, query.page);
  405. query.callback(results);
  406. }
  407. });
  408. handler = transport.call(self, params);
  409. }, quietMillis);
  410. };
  411. }
  412. /**
  413. * Produces a query function that works with a local array
  414. *
  415. * @param options object containing configuration parameters. The options parameter can either be an array or an
  416. * object.
  417. *
  418. * If the array form is used it is assumed that it contains objects with 'id' and 'text' keys.
  419. *
  420. * If the object form is used ti is assumed that it contains 'data' and 'text' keys. The 'data' key should contain
  421. * an array of objects that will be used as choices. These objects must contain at least an 'id' key. The 'text'
  422. * key can either be a String in which case it is expected that each element in the 'data' array has a key with the
  423. * value of 'text' which will be used to match choices. Alternatively, text can be a function(item) that can extract
  424. * the text.
  425. */
  426. function local(options) {
  427. var data = options, // data elements
  428. dataText,
  429. tmp,
  430. text = function (item) { return ""+item.text; }; // function used to retrieve the text portion of a data item that is matched against the search
  431. if ($.isArray(data)) {
  432. tmp = data;
  433. data = { results: tmp };
  434. }
  435. if ($.isFunction(data) === false) {
  436. tmp = data;
  437. data = function() { return tmp; };
  438. }
  439. var dataItem = data();
  440. if (dataItem.text) {
  441. text = dataItem.text;
  442. // if text is not a function we assume it to be a key name
  443. if (!$.isFunction(text)) {
  444. dataText = dataItem.text; // we need to store this in a separate variable because in the next step data gets reset and data.text is no longer available
  445. text = function (item) { return item[dataText]; };
  446. }
  447. }
  448. return function (query) {
  449. var t = query.term, filtered = { results: [] }, process;
  450. if (t === "") {
  451. query.callback(data());
  452. return;
  453. }
  454. process = function(datum, collection) {
  455. var group, attr;
  456. datum = datum[0];
  457. if (datum.children) {
  458. group = {};
  459. for (attr in datum) {
  460. if (datum.hasOwnProperty(attr)) group[attr]=datum[attr];
  461. }
  462. group.children=[];
  463. $(datum.children).each2(function(i, childDatum) { process(childDatum, group.children); });
  464. if (group.children.length || query.matcher(t, text(group), datum)) {
  465. collection.push(group);
  466. }
  467. } else {
  468. if (query.matcher(t, text(datum), datum)) {
  469. collection.push(datum);
  470. }
  471. }
  472. };
  473. $(data().results).each2(function(i, datum) { process(datum, filtered.results); });
  474. query.callback(filtered);
  475. };
  476. }
  477. // TODO javadoc
  478. function tags(data) {
  479. var isFunc = $.isFunction(data);
  480. return function (query) {
  481. var t = query.term, filtered = {results: []};
  482. $(isFunc ? data() : data).each(function () {
  483. var isObject = this.text !== undefined,
  484. text = isObject ? this.text : this;
  485. if (t === "" || query.matcher(t, text)) {
  486. filtered.results.push(isObject ? this : {id: this, text: this});
  487. }
  488. });
  489. query.callback(filtered);
  490. };
  491. }
  492. /**
  493. * Checks if the formatter function should be used.
  494. *
  495. * Throws an error if it is not a function. Returns true if it should be used,
  496. * false if no formatting should be performed.
  497. *
  498. * @param formatter
  499. */
  500. function checkFormatter(formatter, formatterName) {
  501. if ($.isFunction(formatter)) return true;
  502. if (!formatter) return false;
  503. throw new Error(formatterName +" must be a function or a falsy value");
  504. }
  505. function evaluate(val) {
  506. return $.isFunction(val) ? val() : val;
  507. }
  508. function countResults(results) {
  509. var count = 0;
  510. $.each(results, function(i, item) {
  511. if (item.children) {
  512. count += countResults(item.children);
  513. } else {
  514. count++;
  515. }
  516. });
  517. return count;
  518. }
  519. /**
  520. * Default tokenizer. This function uses breaks the input on substring match of any string from the
  521. * opts.tokenSeparators array and uses opts.createSearchChoice to create the choice object. Both of those
  522. * two options have to be defined in order for the tokenizer to work.
  523. *
  524. * @param input text user has typed so far or pasted into the search field
  525. * @param selection currently selected choices
  526. * @param selectCallback function(choice) callback tho add the choice to selection
  527. * @param opts select2's opts
  528. * @return undefined/null to leave the current input unchanged, or a string to change the input to the returned value
  529. */
  530. function defaultTokenizer(input, selection, selectCallback, opts) {
  531. var original = input, // store the original so we can compare and know if we need to tell the search to update its text
  532. dupe = false, // check for whether a token we extracted represents a duplicate selected choice
  533. token, // token
  534. index, // position at which the separator was found
  535. i, l, // looping variables
  536. separator; // the matched separator
  537. if (!opts.createSearchChoice || !opts.tokenSeparators || opts.tokenSeparators.length < 1) return undefined;
  538. while (true) {
  539. index = -1;
  540. for (i = 0, l = opts.tokenSeparators.length; i < l; i++) {
  541. separator = opts.tokenSeparators[i];
  542. index = input.indexOf(separator);
  543. if (index >= 0) break;
  544. }
  545. if (index < 0) break; // did not find any token separator in the input string, bail
  546. token = input.substring(0, index);
  547. input = input.substring(index + separator.length);
  548. if (token.length > 0) {
  549. token = opts.createSearchChoice.call(this, token, selection);
  550. if (token !== undefined && token !== null && opts.id(token) !== undefined && opts.id(token) !== null) {
  551. dupe = false;
  552. for (i = 0, l = selection.length; i < l; i++) {
  553. if (equal(opts.id(token), opts.id(selection[i]))) {
  554. dupe = true; break;
  555. }
  556. }
  557. if (!dupe) selectCallback(token);
  558. }
  559. }
  560. }
  561. if (original!==input) return input;
  562. }
  563. /**
  564. * Creates a new class
  565. *
  566. * @param superClass
  567. * @param methods
  568. */
  569. function clazz(SuperClass, methods) {
  570. var constructor = function () {};
  571. constructor.prototype = new SuperClass;
  572. constructor.prototype.constructor = constructor;
  573. constructor.prototype.parent = SuperClass.prototype;
  574. constructor.prototype = $.extend(constructor.prototype, methods);
  575. return constructor;
  576. }
  577. AbstractSelect2 = clazz(Object, {
  578. // abstract
  579. bind: function (func) {
  580. var self = this;
  581. return function () {
  582. func.apply(self, arguments);
  583. };
  584. },
  585. // abstract
  586. init: function (opts) {
  587. var results, search, resultsSelector = ".select2-results";
  588. // prepare options
  589. this.opts = opts = this.prepareOpts(opts);
  590. this.id=opts.id;
  591. // destroy if called on an existing component
  592. if (opts.element.data("select2") !== undefined &&
  593. opts.element.data("select2") !== null) {
  594. opts.element.data("select2").destroy();
  595. }
  596. this.container = this.createContainer();
  597. this.liveRegion = $("<span>", {
  598. role: "status",
  599. "aria-live": "polite"
  600. })
  601. .addClass("select2-hidden-accessible")
  602. .appendTo(document.body);
  603. this.containerId="s2id_"+(opts.element.attr("id") || "autogen"+nextUid()).replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g, '\\$1');
  604. this.containerSelector="#"+this.containerId;
  605. this.container.attr("id", this.containerId);
  606. // cache the body so future lookups are cheap
  607. this.body = thunk(function() { return opts.element.closest("body"); });
  608. syncCssClasses(this.container, this.opts.element, this.opts.adaptContainerCssClass);
  609. this.container.attr("style", opts.element.attr("style"));
  610. this.container.css(evaluate(opts.containerCss));
  611. this.container.addClass(evaluate(opts.containerCssClass));
  612. this.elementTabIndex = this.opts.element.attr("tabindex");
  613. // swap container for the element
  614. this.opts.element
  615. .data("select2", this)
  616. .attr("tabindex", "-1")
  617. .before(this.container)
  618. .on("click.select2", killEvent); // do not leak click events
  619. this.container.data("select2", this);
  620. this.dropdown = this.container.find(".select2-drop");
  621. syncCssClasses(this.dropdown, this.opts.element, this.opts.adaptDropdownCssClass);
  622. this.dropdown.addClass(evaluate(opts.dropdownCssClass));
  623. this.dropdown.data("select2", this);
  624. this.dropdown.on("click", killEvent);
  625. this.results = results = this.container.find(resultsSelector);
  626. this.search = search = this.container.find("input.select2-input");
  627. this.queryCount = 0;
  628. this.resultsPage = 0;
  629. this.context = null;
  630. // initialize the container
  631. this.initContainer();
  632. this.container.on("click", killEvent);
  633. installFilteredMouseMove(this.results);
  634. this.dropdown.on("mousemove-filtered touchstart touchmove touchend", resultsSelector, this.bind(this.highlightUnderEvent));
  635. installDebouncedScroll(80, this.results);
  636. this.dropdown.on("scroll-debounced", resultsSelector, this.bind(this.loadMoreIfNeeded));
  637. // do not propagate change event from the search field out of the component
  638. $(this.container).on("change", ".select2-input", function(e) {e.stopPropagation();});
  639. $(this.dropdown).on("change", ".select2-input", function(e) {e.stopPropagation();});
  640. // if jquery.mousewheel plugin is installed we can prevent out-of-bounds scrolling of results via mousewheel
  641. if ($.fn.mousewheel) {
  642. results.mousewheel(function (e, delta, deltaX, deltaY) {
  643. var top = results.scrollTop();
  644. if (deltaY > 0 && top - deltaY <= 0) {
  645. results.scrollTop(0);
  646. killEvent(e);
  647. } else if (deltaY < 0 && results.get(0).scrollHeight - results.scrollTop() + deltaY <= results.height()) {
  648. results.scrollTop(results.get(0).scrollHeight - results.height());
  649. killEvent(e);
  650. }
  651. });
  652. }
  653. installKeyUpChangeEvent(search);
  654. search.on("keyup-change input paste", this.bind(this.updateResults));
  655. search.on("focus", function () { search.addClass("select2-focused"); });
  656. search.on("blur", function () { search.removeClass("select2-focused");});
  657. this.dropdown.on("mouseup", resultsSelector, this.bind(function (e) {
  658. if ($(e.target).closest(".select2-result-selectable").length > 0) {
  659. this.highlightUnderEvent(e);
  660. this.selectHighlighted(e);
  661. }
  662. }));
  663. // trap all mouse events from leaving the dropdown. sometimes there may be a modal that is listening
  664. // for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's
  665. // dom it will trigger the popup close, which is not what we want
  666. this.dropdown.on("click mouseup mousedown", function (e) { e.stopPropagation(); });
  667. this.nextSearchTerm = undefined;
  668. if ($.isFunction(this.opts.initSelection)) {
  669. // initialize selection based on the current value of the source element
  670. this.initSelection();
  671. // if the user has provided a function that can set selection based on the value of the source element
  672. // we monitor the change event on the element and trigger it, allowing for two way synchronization
  673. this.monitorSource();
  674. }
  675. if (opts.maximumInputLength !== null) {
  676. this.search.attr("maxlength", opts.maximumInputLength);
  677. }
  678. var disabled = opts.element.prop("disabled");
  679. if (disabled === undefined) disabled = false;
  680. this.enable(!disabled);
  681. var readonly = opts.element.prop("readonly");
  682. if (readonly === undefined) readonly = false;
  683. this.readonly(readonly);
  684. // Calculate size of scrollbar
  685. scrollBarDimensions = scrollBarDimensions || measureScrollbar();
  686. this.autofocus = opts.element.prop("autofocus");
  687. opts.element.prop("autofocus", false);
  688. if (this.autofocus) this.focus();
  689. this.search.attr("placeholder", opts.searchInputPlaceholder);
  690. },
  691. // abstract
  692. destroy: function () {
  693. var element=this.opts.element, select2 = element.data("select2");
  694. this.close();
  695. if (this.propertyObserver) { delete this.propertyObserver; this.propertyObserver = null; }
  696. if (select2 !== undefined) {
  697. select2.container.remove();
  698. select2.liveRegion.remove();
  699. select2.dropdown.remove();
  700. element
  701. .removeClass("select2-offscreen")
  702. .removeData("select2")
  703. .off(".select2")
  704. .prop("autofocus", this.autofocus || false);
  705. if (this.elementTabIndex) {
  706. element.attr({tabindex: this.elementTabIndex});
  707. } else {
  708. element.removeAttr("tabindex");
  709. }
  710. element.show();
  711. }
  712. },
  713. // abstract
  714. optionToData: function(element) {
  715. if (element.is("option")) {
  716. return {
  717. id:element.prop("value"),
  718. text:element.text(),
  719. element: element.get(),
  720. css: element.attr("class"),
  721. disabled: element.prop("disabled"),
  722. locked: equal(element.attr("locked"), "locked") || equal(element.data("locked"), true)
  723. };
  724. } else if (element.is("optgroup")) {
  725. return {
  726. text:element.attr("label"),
  727. children:[],
  728. element: element.get(),
  729. css: element.attr("class")
  730. };
  731. }
  732. },
  733. // abstract
  734. prepareOpts: function (opts) {
  735. var element, select, idKey, ajaxUrl, self = this;
  736. element = opts.element;
  737. if (element.get(0).tagName.toLowerCase() === "select") {
  738. this.select = select = opts.element;
  739. }
  740. if (select) {
  741. // these options are not allowed when attached to a select because they are picked up off the element itself
  742. $.each(["id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags"], function () {
  743. if (this in opts) {
  744. throw new Error("Option '" + this + "' is not allowed for Select2 when attached to a <select> element.");
  745. }
  746. });
  747. }
  748. opts = $.extend({}, {
  749. populateResults: function(container, results, query) {
  750. var populate, id=this.opts.id, liveRegion=this.liveRegion;
  751. populate=function(results, container, depth) {
  752. var i, l, result, selectable, disabled, compound, node, label, innerContainer, formatted;
  753. results = opts.sortResults(results, container, query);
  754. for (i = 0, l = results.length; i < l; i = i + 1) {
  755. result=results[i];
  756. disabled = (result.disabled === true);
  757. selectable = (!disabled) && (id(result) !== undefined);
  758. compound=result.children && result.children.length > 0;
  759. node=$("<li></li>");
  760. node.addClass("select2-results-dept-"+depth);
  761. node.addClass("select2-result");
  762. node.addClass(selectable ? "select2-result-selectable" : "select2-result-unselectable");
  763. if (disabled) { node.addClass("select2-disabled"); }
  764. if (compound) { node.addClass("select2-result-with-children"); }
  765. node.addClass(self.opts.formatResultCssClass(result));
  766. node.attr("role", "presentation");
  767. label=$(document.createElement("div"));
  768. label.addClass("select2-result-label");
  769. label.attr("id", "select2-result-label-" + nextUid());
  770. label.attr("role", "option");
  771. formatted=opts.formatResult(result, label, query, self.opts.escapeMarkup);
  772. if (formatted!==undefined) {
  773. label.html(formatted);
  774. }
  775. node.append(label);
  776. if (compound) {
  777. innerContainer=$("<ul></ul>");
  778. innerContainer.addClass("select2-result-sub");
  779. populate(result.children, innerContainer, depth+1);
  780. node.append(innerContainer);
  781. }
  782. node.data("select2-data", result);
  783. container.append(node);
  784. }
  785. liveRegion.text(opts.formatMatches(results.length));
  786. };
  787. populate(results, container, 0);
  788. }
  789. }, $.fn.select2.defaults, opts);
  790. if (typeof(opts.id) !== "function") {
  791. idKey = opts.id;
  792. opts.id = function (e) { return e[idKey]; };
  793. }
  794. if ($.isArray(opts.element.data("select2Tags"))) {
  795. if ("tags" in opts) {
  796. throw "tags specified as both an attribute 'data-select2-tags' and in options of Select2 " + opts.element.attr("id");
  797. }
  798. opts.tags=opts.element.data("select2Tags");
  799. }
  800. if (select) {
  801. opts.query = this.bind(function (query) {
  802. var data = { results: [], more: false },
  803. term = query.term,
  804. children, placeholderOption, process;
  805. process=function(element, collection) {
  806. var group;
  807. if (element.is("option")) {
  808. if (query.matcher(term, element.text(), element)) {
  809. collection.push(self.optionToData(element));
  810. }
  811. } else if (element.is("optgroup")) {
  812. group=self.optionToData(element);
  813. element.children().each2(function(i, elm) { process(elm, group.children); });
  814. if (group.children.length>0) {
  815. collection.push(group);
  816. }
  817. }
  818. };
  819. children=element.children();
  820. // ignore the placeholder option if there is one
  821. if (this.getPlaceholder() !== undefined && children.length > 0) {
  822. placeholderOption = this.getPlaceholderOption();
  823. if (placeholderOption) {
  824. children=children.not(placeholderOption);
  825. }
  826. }
  827. children.each2(function(i, elm) { process(elm, data.results); });
  828. query.callback(data);
  829. });
  830. // this is needed because inside val() we construct choices from options and there id is hardcoded
  831. opts.id=function(e) { return e.id; };
  832. } else {
  833. if (!("query" in opts)) {
  834. if ("ajax" in opts) {
  835. ajaxUrl = opts.element.data("ajax-url");
  836. if (ajaxUrl && ajaxUrl.length > 0) {
  837. opts.ajax.url = ajaxUrl;
  838. }
  839. opts.query = ajax.call(opts.element, opts.ajax);
  840. } else if ("data" in opts) {
  841. opts.query = local(opts.data);
  842. } else if ("tags" in opts) {
  843. opts.query = tags(opts.tags);
  844. if (opts.createSearchChoice === undefined) {
  845. opts.createSearchChoice = function (term) { return {id: $.trim(term), text: $.trim(term)}; };
  846. }
  847. if (opts.initSelection === undefined) {
  848. opts.initSelection = function (element, callback) {
  849. var data = [];
  850. $(splitVal(element.val(), opts.separator)).each(function () {
  851. var obj = { id: this, text: this },
  852. tags = opts.tags;
  853. if ($.isFunction(tags)) tags=tags();
  854. $(tags).each(function() { if (equal(this.id, obj.id)) { obj = this; return false; } });
  855. data.push(obj);
  856. });
  857. callback(data);
  858. };
  859. }
  860. }
  861. }
  862. }
  863. if (typeof(opts.query) !== "function") {
  864. throw "query function not defined for Select2 " + opts.element.attr("id");
  865. }
  866. return opts;
  867. },
  868. /**
  869. * Monitor the original element for changes and update select2 accordingly
  870. */
  871. // abstract
  872. monitorSource: function () {
  873. var el = this.opts.element, sync, observer;
  874. el.on("change.select2", this.bind(function (e) {
  875. if (this.opts.element.data("select2-change-triggered") !== true) {
  876. this.initSelection();
  877. }
  878. }));
  879. sync = this.bind(function () {
  880. // sync enabled state
  881. var disabled = el.prop("disabled");
  882. if (disabled === undefined) disabled = false;
  883. this.enable(!disabled);
  884. var readonly = el.prop("readonly");
  885. if (readonly === undefined) readonly = false;
  886. this.readonly(readonly);
  887. syncCssClasses(this.container, this.opts.element, this.opts.adaptContainerCssClass);
  888. this.container.addClass(evaluate(this.opts.containerCssClass));
  889. syncCssClasses(this.dropdown, this.opts.element, this.opts.adaptDropdownCssClass);
  890. this.dropdown.addClass(evaluate(this.opts.dropdownCssClass));
  891. });
  892. // IE8-10
  893. el.on("propertychange.select2", sync);
  894. // hold onto a reference of the callback to work around a chromium bug
  895. if (this.mutationCallback === undefined) {
  896. this.mutationCallback = function (mutations) {
  897. mutations.forEach(sync);
  898. }
  899. }
  900. // safari, chrome, firefox, IE11
  901. observer = window.MutationObserver || window.WebKitMutationObserver|| window.MozMutationObserver;
  902. if (observer !== undefined) {
  903. if (this.propertyObserver) { delete this.propertyObserver; this.propertyObserver = null; }
  904. this.propertyObserver = new observer(this.mutationCallback);
  905. this.propertyObserver.observe(el.get(0), { attributes:true, subtree:false });
  906. }
  907. },
  908. // abstract
  909. triggerSelect: function(data) {
  910. var evt = $.Event("select2-selecting", { val: this.id(data), object: data });
  911. this.opts.element.trigger(evt);
  912. return !evt.isDefaultPrevented();
  913. },
  914. /**
  915. * Triggers the change event on the source element
  916. */
  917. // abstract
  918. triggerChange: function (details) {
  919. details = details || {};
  920. details= $.extend({}, details, { type: "change", val: this.val() });
  921. // prevents recursive triggering
  922. this.opts.element.data("select2-change-triggered", true);
  923. this.opts.element.trigger(details);
  924. this.opts.element.data("select2-change-triggered", false);
  925. // some validation frameworks ignore the change event and listen instead to keyup, click for selects
  926. // so here we trigger the click event manually
  927. this.opts.element.click();
  928. // ValidationEngine ignores the change event and listens instead to blur
  929. // so here we trigger the blur event manually if so desired
  930. if (this.opts.blurOnChange)
  931. this.opts.element.blur();
  932. },
  933. //abstract
  934. isInterfaceEnabled: function()
  935. {
  936. return this.enabledInterface === true;
  937. },
  938. // abstract
  939. enableInterface: function() {
  940. var enabled = this._enabled && !this._readonly,
  941. disabled = !enabled;
  942. if (enabled === this.enabledInterface) return false;
  943. this.container.toggleClass("select2-container-disabled", disabled);
  944. this.close();
  945. this.enabledInterface = enabled;
  946. return true;
  947. },
  948. // abstract
  949. enable: function(enabled) {
  950. if (enabled === undefined) enabled = true;
  951. if (this._enabled === enabled) return;
  952. this._enabled = enabled;
  953. this.opts.element.prop("disabled", !enabled);
  954. this.enableInterface();
  955. },
  956. // abstract
  957. disable: function() {
  958. this.enable(false);
  959. },
  960. // abstract
  961. readonly: function(enabled) {
  962. if (enabled === undefined) enabled = false;
  963. if (this._readonly === enabled) return false;
  964. this._readonly = enabled;
  965. this.opts.element.prop("readonly", enabled);
  966. this.enableInterface();
  967. return true;
  968. },
  969. // abstract
  970. opened: function () {
  971. return this.container.hasClass("select2-dropdown-open");
  972. },
  973. // abstract
  974. positionDropdown: function() {
  975. var $dropdown = this.dropdown,
  976. offset = this.container.offset(),
  977. height = this.container.outerHeight(false),
  978. width = this.container.outerWidth(false),
  979. dropHeight = $dropdown.outerHeight(false),
  980. $window = $(window),
  981. windowWidth = $window.width(),
  982. windowHeight = $window.height(),
  983. viewPortRight = $window.scrollLeft() + windowWidth,
  984. viewportBottom = $window.scrollTop() + windowHeight,
  985. dropTop = offset.top + height,
  986. dropLeft = offset.left,
  987. enoughRoomBelow = dropTop + dropHeight <= viewportBottom,
  988. enoughRoomAbove = (offset.top - dropHeight) >= this.body().scrollTop(),
  989. dropWidth = $dropdown.outerWidth(false),
  990. enoughRoomOnRight = dropLeft + dropWidth <= viewPortRight,
  991. aboveNow = $dropdown.hasClass("select2-drop-above"),
  992. bodyOffset,
  993. above,
  994. changeDirection,
  995. css,
  996. resultsListNode;
  997. // always prefer the current above/below alignment, unless there is not enough room
  998. if (aboveNow) {
  999. above = true;
  1000. if (!enoughRoomAbove && enoughRoomBelow) {
  1001. changeDirection = true;
  1002. above = false;
  1003. }
  1004. } else {
  1005. above = false;
  1006. if (!enoughRoomBelow && enoughRoomAbove) {
  1007. changeDirection = true;
  1008. above = true;
  1009. }
  1010. }
  1011. //if we are changing direction we need to get positions when dropdown is hidden;
  1012. if (changeDirection) {
  1013. $dropdown.hide();
  1014. offset = this.container.offset();
  1015. height = this.container.outerHeight(false);
  1016. width = this.container.outerWidth(false);
  1017. dropHeight = $dropdown.outerHeight(false);
  1018. viewPortRight = $window.scrollLeft() + windowWidth;
  1019. viewportBottom = $window.scrollTop() + windowHeight;
  1020. dropTop = offset.top + height;
  1021. dropLeft = offset.left;
  1022. dropWidth = $dropdown.outerWidth(false);
  1023. enoughRoomOnRight = dropLeft + dropWidth <= viewPortRight;
  1024. $dropdown.show();
  1025. }
  1026. if (this.opts.dropdownAutoWidth) {
  1027. resultsListNode = $('.select2-results', $dropdown)[0];
  1028. $dropdown.addClass('select2-drop-auto-width');
  1029. $dropdown.css('width', '');
  1030. // Add scrollbar width to dropdown if vertical scrollbar is present
  1031. dropWidth = $dropdown.outerWidth(false) + (resultsListNode.scrollHeight === resultsListNode.clientHeight ? 0 : scrollBarDimensions.width);
  1032. dropWidth > width ? width = dropWidth : dropWidth = width;
  1033. enoughRoomOnRight = dropLeft + dropWidth <= viewPortRight;
  1034. }
  1035. else {
  1036. this.container.removeClass('select2-drop-auto-width');
  1037. }
  1038. //console.log("below/ droptop:", dropTop, "dropHeight", dropHeight, "sum", (dropTop+dropHeight)+" viewport bottom", viewportBottom, "enough?", enoughRoomBelow);
  1039. //console.log("above/ offset.top", offset.top, "dropHeight", dropHeight, "top", (offset.top-dropHeight), "scrollTop", this.body().scrollTop(), "enough?", enoughRoomAbove);
  1040. // fix positioning when body has an offset and is not position: static
  1041. if (this.body().css('position') !== 'static') {
  1042. bodyOffset = this.body().offset();
  1043. dropTop -= bodyOffset.top;
  1044. dropLeft -= bodyOffset.left;
  1045. }
  1046. if (!enoughRoomOnRight) {
  1047. dropLeft = offset.left + this.container.outerWidth(false) - dropWidth;
  1048. }
  1049. css = {
  1050. left: dropLeft,
  1051. width: width
  1052. };
  1053. if (above) {
  1054. css.top = offset.top - dropHeight;
  1055. css.bottom = 'auto';
  1056. this.container.addClass("select2-drop-above");
  1057. $dropdown.addClass("select2-drop-above");
  1058. }
  1059. else {
  1060. css.top = dropTop;
  1061. css.bottom = 'auto';
  1062. this.container.removeClass("select2-drop-above");
  1063. $dropdown.removeClass("select2-drop-above");
  1064. }
  1065. css = $.extend(css, evaluate(this.opts.dropdownCss));
  1066. $dropdown.css(css);
  1067. },
  1068. // abstract
  1069. shouldOpen: function() {
  1070. var event;
  1071. if (this.opened()) return false;
  1072. if (this._enabled === false || this._readonly === true) return false;
  1073. event = $.Event("select2-opening");
  1074. this.opts.element.trigger(event);
  1075. return !event.isDefaultPrevented();
  1076. },
  1077. // abstract
  1078. clearDropdownAlignmentPreference: function() {
  1079. // clear the classes used to figure out the preference of where the dropdown should be opened
  1080. this.container.removeClass("select2-drop-above");
  1081. this.dropdown.removeClass("select2-drop-above");
  1082. },
  1083. /**
  1084. * Opens the dropdown
  1085. *
  1086. * @return {Boolean} whether or not dropdown was opened. This method will return false if, for example,
  1087. * the dropdown is already open, or if the 'open' event listener on the element called preventDefault().
  1088. */
  1089. // abstract
  1090. open: function () {
  1091. if (!this.shouldOpen()) return false;
  1092. this.opening();
  1093. return true;
  1094. },
  1095. /**
  1096. * Performs the opening of the dropdown
  1097. */
  1098. // abstract
  1099. opening: function() {
  1100. var cid = this.containerId,
  1101. scroll = "scroll." + cid,
  1102. resize = "resize."+cid,
  1103. orient = "orientationchange."+cid,
  1104. mask;
  1105. this.container.addClass("select2-dropdown-open").addClass("select2-container-active");
  1106. this.clearDropdownAlignmentPreference();
  1107. if(this.dropdown[0] !== this.body().children().last()[0]) {
  1108. this.dropdown.detach().appendTo(this.body());
  1109. }
  1110. // create the dropdown mask if doesn't already exist
  1111. mask = $("#select2-drop-mask");
  1112. if (mask.length == 0) {
  1113. mask = $(document.createElement("div"));
  1114. mask.attr("id","select2-drop-mask").attr("class","select2-drop-mask");
  1115. mask.hide();
  1116. mask.appendTo(this.body());
  1117. mask.on("mousedown touchstart click", function (e) {
  1118. // Prevent IE from generating a click event on the body
  1119. reinsertElement(mask);
  1120. var dropdown = $("#select2-drop"), self;
  1121. if (dropdown.length > 0) {
  1122. self=dropdown.data("select2");
  1123. if (self.opts.selectOnBlur) {
  1124. self.selectHighlighted({noFocus: true});
  1125. }
  1126. self.close({focus:true});
  1127. e.preventDefault();
  1128. e.stopPropagation();
  1129. }
  1130. });
  1131. }
  1132. // ensure the mask is always right before the dropdown
  1133. if (this.dropdown.prev()[0] !== mask[0]) {
  1134. this.dropdown.before(mask);
  1135. }
  1136. // move the global id to the correct dropdown
  1137. $("#select2-drop").removeAttr("id");
  1138. this.dropdown.attr("id", "select2-drop");
  1139. // show the elements
  1140. mask.show();
  1141. this.positionDropdown();
  1142. this.dropdown.show();
  1143. this.positionDropdown();
  1144. this.dropdown.addClass("select2-drop-active");
  1145. // attach listeners to events that can change the position of the container and thus require
  1146. // the position of the dropdown to be updated as well so it does not come unglued from the container
  1147. var that = this;
  1148. this.container.parents().add(window).each(function () {
  1149. $(this).on(resize+" "+scroll+" "+orient, function (e) {
  1150. that.positionDropdown();
  1151. });
  1152. });
  1153. },
  1154. // abstract
  1155. close: function () {
  1156. if (!this.opened()) return;
  1157. var cid = this.containerId,
  1158. scroll = "scroll." + cid,
  1159. resize = "resize."+cid,
  1160. orient = "orientationchange."+cid;
  1161. // unbind event listeners
  1162. this.container.parents().add(window).each(function () { $(this).off(scroll).off(resize).off(orient); });
  1163. this.clearDropdownAlignmentPreference();
  1164. $("#select2-drop-mask").hide();
  1165. this.dropdown.removeAttr("id"); // only the active dropdown has the select2-drop id
  1166. this.dropdown.hide();
  1167. this.container.removeClass("select2-dropdown-open").removeClass("select2-container-active");
  1168. this.results.empty();
  1169. this.clearSearch();
  1170. this.search.removeClass("select2-active");
  1171. this.opts.element.trigger($.Event("select2-close"));
  1172. },
  1173. /**
  1174. * Opens control, sets input value, and updates results.
  1175. */
  1176. // abstract
  1177. externalSearch: function (term) {
  1178. this.open();
  1179. this.search.val(term);
  1180. this.updateResults(false);
  1181. },
  1182. // abstract
  1183. clearSearch: function () {
  1184. },
  1185. //abstract
  1186. getMaximumSelectionSize: function() {
  1187. return evaluate(this.opts.maximumSelectionSize);
  1188. },
  1189. // abstract
  1190. ensureHighlightVisible: function () {
  1191. var results = this.results, children, index, child, hb, rb, y, more;
  1192. index = this.highlight();
  1193. if (index < 0) return;
  1194. if (index == 0) {
  1195. // if the first element is highlighted scroll all the way to the top,
  1196. // that way any unselectable headers above it will also be scrolled
  1197. // into view
  1198. results.scrollTop(0);
  1199. return;
  1200. }
  1201. children = this.findHighlightableChoices().find('.select2-result-label');
  1202. child = $(children[index]);
  1203. hb = child.offset().top + child.outerHeight(true);
  1204. // if this is the last child lets also make sure select2-more-results is visible
  1205. if (index === children.length - 1) {
  1206. more = results.find("li.select2-more-results");
  1207. if (more.length > 0) {
  1208. hb = more.offset().top + more.outerHeight(true);
  1209. }
  1210. }
  1211. rb = results.offset().top + results.outerHeight(true);
  1212. if (hb > rb) {
  1213. results.scrollTop(results.scrollTop() + (hb - rb));
  1214. }
  1215. y = child.offset().top - results.offset().top;
  1216. // make sure the top of the element is visible
  1217. if (y < 0 && child.css('display') != 'none' ) {
  1218. results.scrollTop(results.scrollTop() + y); // y is negative
  1219. }
  1220. },
  1221. // abstract
  1222. findHighlightableChoices: function() {
  1223. return this.results.find(".select2-result-selectable:not(.select2-disabled):not(.select2-selected)");
  1224. },
  1225. // abstract
  1226. moveHighlight: function (delta) {
  1227. var choices = this.findHighlightableChoices(),
  1228. index = this.highlight();
  1229. while (index > -1 && index < choices.length) {
  1230. index += delta;
  1231. var choice = $(choices[index]);
  1232. if (choice.hasClass("select2-result-selectable") && !choice.hasClass("select2-disabled") && !choice.hasClass("select2-selected")) {
  1233. this.highlight(index);
  1234. break;
  1235. }
  1236. }
  1237. },
  1238. // abstract
  1239. highlight: function (index) {
  1240. var choices = this.findHighlightableChoices(),
  1241. choice,
  1242. data;
  1243. if (arguments.length === 0) {
  1244. return indexOf(choices.filter(".select2-highlighted")[0], choices.get());
  1245. }
  1246. if (index >= choices.length) index = choices.length - 1;
  1247. if (index < 0) index = 0;
  1248. this.removeHighlight();
  1249. choice = $(choices[index]);
  1250. choice.addClass("select2-highlighted");
  1251. // ensure assistive technology can determine the active choice
  1252. this.search.attr("aria-activedescendant", choice.find(".select2-result-label").attr("id"));
  1253. this.ensureHighlightVisible();
  1254. this.liveRegion.text(choice.text());
  1255. data = choice.data("select2-data");
  1256. if (data) {
  1257. this.opts.element.trigger({ type: "select2-highlight", val: this.id(data), choice: data });
  1258. }
  1259. },
  1260. removeHighlight: function() {
  1261. this.results.find(".select2-highlighted").removeClass("select2-highlighted");
  1262. },
  1263. // abstract
  1264. countSelectableResults: function() {
  1265. return this.findHighlightableChoices().length;
  1266. },
  1267. // abstract
  1268. highlightUnderEvent: function (event) {
  1269. var el = $(event.target).closest(".select2-result-selectable");
  1270. if (el.length > 0 && !el.is(".select2-highlighted")) {
  1271. var choices = this.findHighlightableChoices();
  1272. this.highlight(choices.index(el));
  1273. } else if (el.length == 0) {
  1274. // if we are over an unselectable item remove all highlights
  1275. this.removeHighlight();
  1276. }
  1277. },
  1278. // abstract
  1279. loadMoreIfNeeded: function () {
  1280. var results = this.results,
  1281. more = results.find("li.select2-more-results"),
  1282. below, // pixels the element is below the scroll fold, below==0 is when the element is starting to be visible
  1283. page = this.resultsPage + 1,
  1284. self=this,
  1285. term=this.search.val(),
  1286. context=this.context;
  1287. if (more.length === 0) return;
  1288. below = more.offset().top - results.offset().top - results.height();
  1289. if (below <= this.opts.loadMorePadding) {
  1290. more.addClass("select2-active");
  1291. this.opts.query({
  1292. element: this.opts.element,
  1293. term: term,
  1294. page: page,
  1295. context: context,
  1296. matcher: this.opts.matcher,
  1297. callback: this.bind(function (data) {
  1298. // ignore a response if the select2 has been closed before it was received
  1299. if (!self.opened()) return;
  1300. self.opts.populateResults.call(this, results, data.results, {term: term, page: page, context:context});
  1301. self.postprocessResults(data, false, false);
  1302. if (data.more===true) {
  1303. more.detach().appendTo(results).text(self.opts.formatLoadMore(page+1));
  1304. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  1305. } else {
  1306. more.remove();
  1307. }
  1308. self.positionDropdown();
  1309. self.resultsPage = page;
  1310. self.context = data.context;
  1311. this.opts.element.trigger({ type: "select2-loaded", items: data });
  1312. })});
  1313. }
  1314. },
  1315. /**
  1316. * Default tokenizer function which does nothing
  1317. */
  1318. tokenize: function() {
  1319. },
  1320. /**
  1321. * @param initial whether or not this is the call to this method right after the dropdown has been opened
  1322. */
  1323. // abstract
  1324. updateResults: function (initial) {
  1325. var search = this.search,
  1326. results = this.results,
  1327. opts = this.opts,
  1328. data,
  1329. self = this,
  1330. input,
  1331. term = search.val(),
  1332. lastTerm = $.data(this.container, "select2-last-term"),
  1333. // sequence number used to drop out-of-order responses
  1334. queryNumber;
  1335. // prevent duplicate queries against the same term
  1336. if (initial !== true && lastTerm && equal(term, lastTerm)) return;
  1337. $.data(this.container, "select2-last-term", term);
  1338. // if the search is currently hidden we do not alter the results
  1339. if (initial !== true && (this.showSearchInput === false || !this.opened())) {
  1340. return;
  1341. }
  1342. function postRender() {
  1343. search.removeClass("select2-active");
  1344. self.positionDropdown();
  1345. if (results.find('.select2-no-results,.select2-selection-limit,.select2-searching').length) {
  1346. self.liveRegion.text(results.text());
  1347. }
  1348. else {
  1349. self.liveRegion.text(self.opts.formatMatches(results.find('.select2-result-selectable').length));
  1350. }
  1351. }
  1352. function render(html) {
  1353. results.html(html);
  1354. postRender();
  1355. }
  1356. queryNumber = ++this.queryCount;
  1357. var maxSelSize = this.getMaximumSelectionSize();
  1358. if (maxSelSize >=1) {
  1359. data = this.data();
  1360. if ($.isArray(data) && data.length >= maxSelSize && checkFormatter(opts.formatSelectionTooBig, "formatSelectionTooBig")) {
  1361. render("<li class='select2-selection-limit'>" + opts.formatSelectionTooBig(maxSelSize) + "</li>");
  1362. return;
  1363. }
  1364. }
  1365. if (search.val().length < opts.minimumInputLength) {
  1366. if (checkFormatter(opts.formatInputTooShort, "formatInputTooShort")) {
  1367. render("<li class='select2-no-results'>" + opts.formatInputTooShort(search.val(), opts.minimumInputLength) + "</li>");
  1368. } else {
  1369. render("");
  1370. }
  1371. if (initial && this.showSearch) this.showSearch(true);
  1372. return;
  1373. }
  1374. if (opts.maximumInputLength && search.val().length > opts.maximumInputLength) {
  1375. if (checkFormatter(opts.formatInputTooLong, "formatInputTooLong")) {
  1376. render("<li class='select2-no-results'>" + opts.formatInputTooLong(search.val(), opts.maximumInputLength) + "</li>");
  1377. } else {
  1378. render("");
  1379. }
  1380. return;
  1381. }
  1382. if (opts.formatSearching && this.findHighlightableChoices().length === 0) {
  1383. render("<li class='select2-searching'>" + opts.formatSearching() + "</li>");
  1384. }
  1385. search.addClass("select2-active");
  1386. this.removeHighlight();
  1387. // give the tokenizer a chance to pre-process the input
  1388. input = this.tokenize();
  1389. if (input != undefined && input != null) {
  1390. search.val(input);
  1391. }
  1392. this.resultsPage = 1;
  1393. opts.query({
  1394. element: opts.element,
  1395. term: search.val(),
  1396. page: this.resultsPage,
  1397. context: null,
  1398. matcher: opts.matcher,
  1399. callback: this.bind(function (data) {
  1400. var def; // default choice
  1401. // ignore old responses
  1402. if (queryNumber != this.queryCount) {
  1403. return;
  1404. }
  1405. // ignore a response if the select2 has been closed before it was received
  1406. if (!this.opened()) {
  1407. this.search.removeClass("select2-active");
  1408. return;
  1409. }
  1410. // save context, if any
  1411. this.context = (data.context===undefined) ? null : data.context;
  1412. // create a default choice and prepend it to the list
  1413. if (this.opts.createSearchChoice && search.val() !== "") {
  1414. def = this.opts.createSearchChoice.call(self, search.val(), data.results);
  1415. if (def !== undefined && def !== null && self.id(def) !== undefined && self.id(def) !== null) {
  1416. if ($(data.results).filter(
  1417. function () {
  1418. return equal(self.id(this), self.id(def));
  1419. }).length === 0) {
  1420. data.results.unshift(def);
  1421. }
  1422. }
  1423. }
  1424. if (data.results.length === 0 && checkFormatter(opts.formatNoMatches, "formatNoMatches")) {
  1425. render("<li class='select2-no-results'>" + opts.formatNoMatches(search.val()) + "</li>");
  1426. return;
  1427. }
  1428. results.empty();
  1429. self.opts.populateResults.call(this, results, data.results, {term: search.val(), page: this.resultsPage, context:null});
  1430. if (data.more === true && checkFormatter(opts.formatLoadMore, "formatLoadMore")) {
  1431. results.append("<li class='select2-more-results'>" + self.opts.escapeMarkup(opts.formatLoadMore(this.resultsPage)) + "</li>");
  1432. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  1433. }
  1434. this.postprocessResults(data, initial);
  1435. postRender();
  1436. this.opts.element.trigger({ type: "select2-loaded", items: data });
  1437. })});
  1438. },
  1439. // abstract
  1440. cancel: function () {
  1441. this.close();
  1442. },
  1443. // abstract
  1444. blur: function () {
  1445. // if selectOnBlur == true, select the currently highlighted option
  1446. if (this.opts.selectOnBlur)
  1447. this.selectHighlighted({noFocus: true});
  1448. this.close();
  1449. this.container.removeClass("select2-container-active");
  1450. // synonymous to .is(':focus'), which is available in jquery >= 1.6
  1451. if (this.search[0] === document.activeElement) { this.search.blur(); }
  1452. this.clearSearch();
  1453. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1454. },
  1455. // abstract
  1456. focusSearch: function () {
  1457. focus(this.search);
  1458. },
  1459. // abstract
  1460. selectHighlighted: function (options) {
  1461. var index=this.highlight(),
  1462. highlighted=this.results.find(".select2-highlighted"),
  1463. data = highlighted.closest('.select2-result').data("select2-data");
  1464. if (data) {
  1465. this.highlight(index);
  1466. this.onSelect(data, options);
  1467. } else if (options && options.noFocus) {
  1468. this.close();
  1469. }
  1470. },
  1471. // abstract
  1472. getPlaceholder: function () {
  1473. var placeholderOption;
  1474. return this.opts.element.attr("placeholder") ||
  1475. this.opts.element.attr("data-placeholder") || // jquery 1.4 compat
  1476. this.opts.element.data("placeholder") ||
  1477. this.opts.placeholder ||
  1478. ((placeholderOption = this.getPlaceholderOption()) !== undefined ? placeholderOption.text() : undefined);
  1479. },
  1480. // abstract
  1481. getPlaceholderOption: function() {
  1482. if (this.select) {
  1483. var firstOption = this.select.children('option').first();
  1484. if (this.opts.placeholderOption !== undefined ) {
  1485. //Determine the placeholder option based on the specified placeholderOption setting
  1486. return (this.opts.placeholderOption === "first" && firstOption) ||
  1487. (typeof this.opts.placeholderOption === "function" && this.opts.placeholderOption(this.select));
  1488. } else if (firstOption.text() === "" && firstOption.val() === "") {
  1489. //No explicit placeholder option specified, use the first if it's blank
  1490. return firstOption;
  1491. }
  1492. }
  1493. },
  1494. /**
  1495. * Get the desired width for the container element. This is
  1496. * derived first from option `width` passed to select2, then
  1497. * the inline 'style' on the original element, and finally
  1498. * falls back to the jQuery calculated element width.
  1499. */
  1500. // abstract
  1501. initContainerWidth: function () {
  1502. function resolveContainerWidth() {
  1503. var style, attrs, matches, i, l, attr;
  1504. if (this.opts.width === "off") {
  1505. return null;
  1506. } else if (this.opts.width === "element"){
  1507. return this.opts.element.outerWidth(false) === 0 ? 'auto' : this.opts.element.outerWidth(false) + 'px';
  1508. } else if (this.opts.width === "copy" || this.opts.width === "resolve") {
  1509. // check if there is inline style on the element that contains width
  1510. style = this.opts.element.attr('style');
  1511. if (style !== undefined) {
  1512. attrs = style.split(';');
  1513. for (i = 0, l = attrs.length; i < l; i = i + 1) {
  1514. attr = attrs[i].replace(/\s/g, '');
  1515. matches = attr.match(/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i);
  1516. if (matches !== null && matches.length >= 1)
  1517. return matches[1];
  1518. }
  1519. }
  1520. if (this.opts.width === "resolve") {
  1521. // next check if css('width') can resolve a width that is percent based, this is sometimes possible
  1522. // when attached to input type=hidden or elements hidden via css
  1523. style = this.opts.element.css('width');
  1524. if (style.indexOf("%") > 0) return style;
  1525. // finally, fallback on the calculated width of the element
  1526. return (this.opts.element.outerWidth(false) === 0 ? 'auto' : this.opts.element.outerWidth(false) + 'px');
  1527. }
  1528. return null;
  1529. } else if ($.isFunction(this.opts.width)) {
  1530. return this.opts.width();
  1531. } else {
  1532. return this.opts.width;
  1533. }
  1534. };
  1535. var width = resolveContainerWidth.call(this);
  1536. if (width !== null) {
  1537. this.container.css("width", width);
  1538. }
  1539. }
  1540. });
  1541. SingleSelect2 = clazz(AbstractSelect2, {
  1542. // single
  1543. createContainer: function () {
  1544. var container = $(document.createElement("div")).attr({
  1545. "class": "select2-container"
  1546. }).html([
  1547. "<a href='javascript:void(0)' onclick='return false;' class='select2-choice' tabindex='-1'>",
  1548. " <span class='select2-chosen'>&nbsp;</span><abbr class='select2-search-choice-close'></abbr>",
  1549. " <span class='select2-arrow' role='presentation'><b role='presentation'></b></span>",
  1550. "</a>",
  1551. "<label for='' class='select2-offscreen'></label>",
  1552. "<input class='select2-focusser select2-offscreen' type='text' aria-haspopup='true' role='button' />",
  1553. "<div class='select2-drop select2-display-none'>",
  1554. " <div class='select2-search'>",
  1555. " <label for='' class='select2-offscreen'></label>",
  1556. " <input type='text' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' class='select2-input' role='combobox' aria-expanded='true'",
  1557. " aria-autocomplete='list' />",
  1558. " </div>",
  1559. " <ul class='select2-results' role='listbox'>",
  1560. " </ul>",
  1561. "</div>"].join(""));
  1562. return container;
  1563. },
  1564. // single
  1565. enableInterface: function() {
  1566. if (this.parent.enableInterface.apply(this, arguments)) {
  1567. this.focusser.prop("disabled", !this.isInterfaceEnabled());
  1568. }
  1569. },
  1570. // single
  1571. opening: function () {
  1572. var el, range, len;
  1573. if (this.opts.minimumResultsForSearch >= 0) {
  1574. this.showSearch(true);
  1575. }
  1576. this.parent.opening.apply(this, arguments);
  1577. if (this.showSearchInput !== false) {
  1578. // IE appends focusser.val() at the end of field :/ so we manually insert it at the beginning using a range
  1579. // all other browsers handle this just fine
  1580. this.search.val(this.focusser.val());
  1581. }
  1582. this.search.focus();
  1583. // move the cursor to the end after focussing, otherwise it will be at the beginning and
  1584. // new text will appear *before* focusser.val()
  1585. el = this.search.get(0);
  1586. if (el.createTextRange) {
  1587. range = el.createTextRange();
  1588. range.collapse(false);
  1589. range.select();
  1590. } else if (el.setSelectionRange) {
  1591. len = this.search.val().length;
  1592. el.setSelectionRange(len, len);
  1593. }
  1594. // initializes search's value with nextSearchTerm (if defined by user)
  1595. // ignore nextSearchTerm if the dropdown is opened by the user pressing a letter
  1596. if(this.search.val() === "") {
  1597. if(this.nextSearchTerm != undefined){
  1598. this.search.val(this.nextSearchTerm);
  1599. this.search.select();
  1600. }
  1601. }
  1602. this.focusser.prop("disabled", true).val("");
  1603. this.updateResults(true);
  1604. this.opts.element.trigger($.Event("select2-open"));
  1605. },
  1606. // single
  1607. close: function (params) {
  1608. if (!this.opened()) return;
  1609. this.parent.close.apply(this, arguments);
  1610. params = params || {focus: true};
  1611. this.focusser.prop("disabled", false);
  1612. if (params.focus) {
  1613. this.focusser.focus();
  1614. }
  1615. },
  1616. // single
  1617. focus: function () {
  1618. if (this.opened()) {
  1619. this.close();
  1620. } else {
  1621. this.focusser.prop("disabled", false);
  1622. this.focusser.focus();
  1623. }
  1624. },
  1625. // single
  1626. isFocused: function () {
  1627. return this.container.hasClass("select2-container-active");
  1628. },
  1629. // single
  1630. cancel: function () {
  1631. this.parent.cancel.apply(this, arguments);
  1632. this.focusser.prop("disabled", false);
  1633. this.focusser.focus();
  1634. },
  1635. // single
  1636. destroy: function() {
  1637. $("label[for='" + this.focusser.attr('id') + "']")
  1638. .attr('for', this.opts.element.attr("id"));
  1639. this.parent.destroy.apply(this, arguments);
  1640. },
  1641. // single
  1642. initContainer: function () {
  1643. var selection,
  1644. container = this.container,
  1645. dropdown = this.dropdown,
  1646. idSuffix = nextUid(),
  1647. elementLabel;
  1648. if (this.opts.minimumResultsForSearch < 0) {
  1649. this.showSearch(false);
  1650. } else {
  1651. this.showSearch(true);
  1652. }
  1653. this.selection = selection = container.find(".select2-choice");
  1654. this.focusser = container.find(".select2-focusser");
  1655. // add aria associations
  1656. selection.find(".select2-chosen").attr("id", "select2-chosen-"+idSuffix);
  1657. this.focusser.attr("aria-labelledby", "select2-chosen-"+idSuffix);
  1658. this.results.attr("id", "select2-results-"+idSuffix);
  1659. this.search.attr("aria-owns", "select2-results-"+idSuffix);
  1660. // rewrite labels from original element to focusser
  1661. this.focusser.attr("id", "s2id_autogen"+idSuffix);
  1662. elementLabel = $("label[for='" + this.opts.element.attr("id") + "']");
  1663. this.focusser.prev()
  1664. .text(elementLabel.text())
  1665. .attr('for', this.focusser.attr('id'));
  1666. // Ensure the original element retains an accessible name
  1667. var originalTitle = this.opts.element.attr("title");
  1668. this.opts.element.attr("title", (originalTitle || elementLabel.text()));
  1669. this.focusser.attr("tabindex", this.elementTabIndex);
  1670. // write label for search field using the label from the focusser element
  1671. this.search.attr("id", this.focusser.attr('id') + '_search');
  1672. this.search.prev()
  1673. .text($("label[for='" + this.focusser.attr('id') + "']").text())
  1674. .attr('for', this.search.attr('id'));
  1675. this.search.on("keydown", this.bind(function (e) {
  1676. if (!this.isInterfaceEnabled()) return;
  1677. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1678. // prevent the page from scrolling
  1679. killEvent(e);
  1680. return;
  1681. }
  1682. switch (e.which) {
  1683. case KEY.UP:
  1684. case KEY.DOWN:
  1685. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1686. killEvent(e);
  1687. return;
  1688. case KEY.ENTER:
  1689. this.selectHighlighted();
  1690. killEvent(e);
  1691. return;
  1692. case KEY.TAB:
  1693. this.selectHighlighted({noFocus: true});
  1694. return;
  1695. case KEY.ESC:
  1696. this.cancel(e);
  1697. killEvent(e);
  1698. return;
  1699. }
  1700. }));
  1701. this.search.on("blur", this.bind(function(e) {
  1702. // a workaround for chrome to keep the search field focussed when the scroll bar is used to scroll the dropdown.
  1703. // without this the search field loses focus which is annoying
  1704. if (document.activeElement === this.body().get(0)) {
  1705. window.setTimeout(this.bind(function() {
  1706. if (this.opened()) {
  1707. this.search.focus();
  1708. }
  1709. }), 0);
  1710. }
  1711. }));
  1712. this.focusser.on("keydown", this.bind(function (e) {
  1713. if (!this.isInterfaceEnabled()) return;
  1714. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) {
  1715. return;
  1716. }
  1717. if (this.opts.openOnEnter === false && e.which === KEY.ENTER) {
  1718. killEvent(e);
  1719. return;
  1720. }
  1721. if (e.which == KEY.DOWN || e.which == KEY.UP
  1722. || (e.which == KEY.ENTER && this.opts.openOnEnter)) {
  1723. if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) return;
  1724. this.open();
  1725. killEvent(e);
  1726. return;
  1727. }
  1728. if (e.which == KEY.DELETE || e.which == KEY.BACKSPACE) {
  1729. if (this.opts.allowClear) {
  1730. this.clear();
  1731. }
  1732. killEvent(e);
  1733. return;
  1734. }
  1735. }));
  1736. installKeyUpChangeEvent(this.focusser);
  1737. this.focusser.on("keyup-change input", this.bind(function(e) {
  1738. if (this.opts.minimumResultsForSearch >= 0) {
  1739. e.stopPropagation();
  1740. if (this.opened()) return;
  1741. this.open();
  1742. }
  1743. }));
  1744. selection.on("mousedown touchstart", "abbr", this.bind(function (e) {
  1745. if (!this.isInterfaceEnabled()) return;
  1746. this.clear();
  1747. killEventImmediately(e);
  1748. this.close();
  1749. this.selection.focus();
  1750. }));
  1751. selection.on("mousedown touchstart", this.bind(function (e) {
  1752. // Prevent IE from generating a click event on the body
  1753. reinsertElement(selection);
  1754. if (!this.container.hasClass("select2-container-active")) {
  1755. this.opts.element.trigger($.Event("select2-focus"));
  1756. }
  1757. if (this.opened()) {
  1758. this.close();
  1759. } else if (this.isInterfaceEnabled()) {
  1760. this.open();
  1761. }
  1762. killEvent(e);
  1763. }));
  1764. dropdown.on("mousedown touchstart", this.bind(function() { this.search.focus(); }));
  1765. selection.on("focus", this.bind(function(e) {
  1766. killEvent(e);
  1767. }));
  1768. this.focusser.on("focus", this.bind(function(){
  1769. if (!this.container.hasClass("select2-container-active")) {
  1770. this.opts.element.trigger($.Event("select2-focus"));
  1771. }
  1772. this.container.addClass("select2-container-active");
  1773. })).on("blur", this.bind(function() {
  1774. if (!this.opened()) {
  1775. this.container.removeClass("select2-container-active");
  1776. this.opts.element.trigger($.Event("select2-blur"));
  1777. }
  1778. }));
  1779. this.search.on("focus", this.bind(function(){
  1780. if (!this.container.hasClass("select2-container-active")) {
  1781. this.opts.element.trigger($.Event("select2-focus"));
  1782. }
  1783. this.container.addClass("select2-container-active");
  1784. }));
  1785. this.initContainerWidth();
  1786. this.opts.element.addClass("select2-offscreen");
  1787. this.setPlaceholder();
  1788. },
  1789. // single
  1790. clear: function(triggerChange) {
  1791. var data=this.selection.data("select2-data");
  1792. if (data) { // guard against queued quick consecutive clicks
  1793. var evt = $.Event("select2-clearing");
  1794. this.opts.element.trigger(evt);
  1795. if (evt.isDefaultPrevented()) {
  1796. return;
  1797. }
  1798. var placeholderOption = this.getPlaceholderOption();
  1799. this.opts.element.val(placeholderOption ? placeholderOption.val() : "");
  1800. this.selection.find(".select2-chosen").empty();
  1801. this.selection.removeData("select2-data");
  1802. this.setPlaceholder();
  1803. if (triggerChange !== false){
  1804. this.opts.element.trigger({ type: "select2-removed", val: this.id(data), choice: data });
  1805. this.triggerChange({removed:data});
  1806. }
  1807. }
  1808. },
  1809. /**
  1810. * Sets selection based on source element's value
  1811. */
  1812. // single
  1813. initSelection: function () {
  1814. var selected;
  1815. if (this.isPlaceholderOptionSelected()) {
  1816. this.updateSelection(null);
  1817. this.close();
  1818. this.setPlaceholder();
  1819. } else {
  1820. var self = this;
  1821. this.opts.initSelection.call(null, this.opts.element, function(selected){
  1822. if (selected !== undefined && selected !== null) {
  1823. self.updateSelection(selected);
  1824. self.close();
  1825. self.setPlaceholder();
  1826. self.nextSearchTerm = self.opts.nextSearchTerm(selected, self.search.val());
  1827. }
  1828. });
  1829. }
  1830. },
  1831. isPlaceholderOptionSelected: function() {
  1832. var placeholderOption;
  1833. if (!this.getPlaceholder()) return false; // no placeholder specified so no option should be considered
  1834. return ((placeholderOption = this.getPlaceholderOption()) !== undefined && placeholderOption.prop("selected"))
  1835. || (this.opts.element.val() === "")
  1836. || (this.opts.element.val() === undefined)
  1837. || (this.opts.element.val() === null);
  1838. },
  1839. // single
  1840. prepareOpts: function () {
  1841. var opts = this.parent.prepareOpts.apply(this, arguments),
  1842. self=this;
  1843. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1844. // install the selection initializer
  1845. opts.initSelection = function (element, callback) {
  1846. var selected = element.find("option").filter(function() { return this.selected });
  1847. // a single select box always has a value, no need to null check 'selected'
  1848. callback(self.optionToData(selected));
  1849. };
  1850. } else if ("data" in opts) {
  1851. // install default initSelection when applied to hidden input and data is local
  1852. opts.initSelection = opts.initSelection || function (element, callback) {
  1853. var id = element.val();
  1854. //search in data by id, storing the actual matching item
  1855. var match = null;
  1856. opts.query({
  1857. matcher: function(term, text, el){
  1858. var is_match = equal(id, opts.id(el));
  1859. if (is_match) {
  1860. match = el;
  1861. }
  1862. return is_match;
  1863. },
  1864. callback: !$.isFunction(callback) ? $.noop : function() {
  1865. callback(match);
  1866. }
  1867. });
  1868. };
  1869. }
  1870. return opts;
  1871. },
  1872. // single
  1873. getPlaceholder: function() {
  1874. // if a placeholder is specified on a single select without a valid placeholder option ignore it
  1875. if (this.select) {
  1876. if (this.getPlaceholderOption() === undefined) {
  1877. return undefined;
  1878. }
  1879. }
  1880. return this.parent.getPlaceholder.apply(this, arguments);
  1881. },
  1882. // single
  1883. setPlaceholder: function () {
  1884. var placeholder = this.getPlaceholder();
  1885. if (this.isPlaceholderOptionSelected() && placeholder !== undefined) {
  1886. // check for a placeholder option if attached to a select
  1887. if (this.select && this.getPlaceholderOption() === undefined) return;
  1888. this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(placeholder));
  1889. this.selection.addClass("select2-default");
  1890. this.container.removeClass("select2-allowclear");
  1891. }
  1892. },
  1893. // single
  1894. postprocessResults: function (data, initial, noHighlightUpdate) {
  1895. var selected = 0, selectedElm = null, self = this, showSearchInput = true;
  1896. // find the selected element in the result list
  1897. this.findHighlightableChoices().each2(function (i, elm) {
  1898. if (equal(self.id(elm.data("select2-data")), self.opts.element.val())) {
  1899. selected = i;
  1900. selectedElm = elm;
  1901. return false;
  1902. }
  1903. });
  1904. // and highlight it
  1905. if (noHighlightUpdate !== false) {
  1906. if (initial === true && selected >= 0) {
  1907. // By default, the selected item is displayed inside the result list from a single select
  1908. // User can provide an implementation for 'hideSelectionFromResult' and hide it
  1909. if(this.opts.hideSelectionFromResult !== undefined && selectedElm !== null) {
  1910. if(this.opts.hideSelectionFromResult(selectedElm))
  1911. selectedElm.addClass("select2-selected");
  1912. }
  1913. else
  1914. this.highlight(selected);
  1915. } else {
  1916. this.highlight(0);
  1917. }
  1918. }
  1919. // hide the search box if this is the first we got the results and there are enough of them for search
  1920. if (initial === true) {
  1921. var min = this.opts.minimumResultsForSearch;
  1922. if (min >= 0) {
  1923. this.showSearch(countResults(data.results) >= min);
  1924. }
  1925. }
  1926. },
  1927. // single
  1928. showSearch: function(showSearchInput) {
  1929. if (this.showSearchInput === showSearchInput) return;
  1930. this.showSearchInput = showSearchInput;
  1931. this.dropdown.find(".select2-search").toggleClass("select2-search-hidden", !showSearchInput);
  1932. this.dropdown.find(".select2-search").toggleClass("select2-offscreen", !showSearchInput);
  1933. //add "select2-with-searchbox" to the container if search box is shown
  1934. $(this.dropdown, this.container).toggleClass("select2-with-searchbox", showSearchInput);
  1935. },
  1936. // single
  1937. onSelect: function (data, options) {
  1938. if (!this.triggerSelect(data)) { return; }
  1939. var old = this.opts.element.val(),
  1940. oldData = this.data();
  1941. this.opts.element.val(this.id(data));
  1942. this.updateSelection(data);
  1943. this.opts.element.trigger({ type: "select2-selected", val: this.id(data), choice: data });
  1944. this.nextSearchTerm = this.opts.nextSearchTerm(data, this.search.val());
  1945. this.close();
  1946. if (!options || !options.noFocus)
  1947. this.focusser.focus();
  1948. if (!equal(old, this.id(data))) { this.triggerChange({added:data,removed:oldData}); }
  1949. },
  1950. // single
  1951. updateSelection: function (data) {
  1952. var container=this.selection.find(".select2-chosen"), formatted, cssClass;
  1953. this.selection.data("select2-data", data);
  1954. container.empty();
  1955. if (data !== null) {
  1956. formatted=this.opts.formatSelection(data, container, this.opts.escapeMarkup);
  1957. }
  1958. if (formatted !== undefined) {
  1959. container.append(formatted);
  1960. }
  1961. cssClass=this.opts.formatSelectionCssClass(data, container);
  1962. if (cssClass !== undefined) {
  1963. container.addClass(cssClass);
  1964. }
  1965. this.selection.removeClass("select2-default");
  1966. if (this.opts.allowClear && this.getPlaceholder() !== undefined) {
  1967. this.container.addClass("select2-allowclear");
  1968. }
  1969. },
  1970. // single
  1971. val: function () {
  1972. var val,
  1973. triggerChange = false,
  1974. data = null,
  1975. self = this,
  1976. oldData = this.data();
  1977. if (arguments.length === 0) {
  1978. return this.opts.element.val();
  1979. }
  1980. val = arguments[0];
  1981. if (arguments.length > 1) {
  1982. triggerChange = arguments[1];
  1983. }
  1984. if (this.select) {
  1985. this.select
  1986. .val(val)
  1987. .find("option").filter(function() { return this.selected }).each2(function (i, elm) {
  1988. data = self.optionToData(elm);
  1989. return false;
  1990. });
  1991. this.updateSelection(data);
  1992. this.setPlaceholder();
  1993. if (triggerChange) {
  1994. this.triggerChange({added: data, removed:oldData});
  1995. }
  1996. } else {
  1997. // val is an id. !val is true for [undefined,null,'',0] - 0 is legal
  1998. if (!val && val !== 0) {
  1999. this.clear(triggerChange);
  2000. return;
  2001. }
  2002. if (this.opts.initSelection === undefined) {
  2003. throw new Error("cannot call val() if initSelection() is not defined");
  2004. }
  2005. this.opts.element.val(val);
  2006. this.opts.initSelection(this.opts.element, function(data){
  2007. self.opts.element.val(!data ? "" : self.id(data));
  2008. self.updateSelection(data);
  2009. self.setPlaceholder();
  2010. if (triggerChange) {
  2011. self.triggerChange({added: data, removed:oldData});
  2012. }
  2013. });
  2014. }
  2015. },
  2016. // single
  2017. clearSearch: function () {
  2018. this.search.val("");
  2019. this.focusser.val("");
  2020. },
  2021. // single
  2022. data: function(value) {
  2023. var data,
  2024. triggerChange = false;
  2025. if (arguments.length === 0) {
  2026. data = this.selection.data("select2-data");
  2027. if (data == undefined) data = null;
  2028. return data;
  2029. } else {
  2030. if (arguments.length > 1) {
  2031. triggerChange = arguments[1];
  2032. }
  2033. if (!value) {
  2034. this.clear(triggerChange);
  2035. } else {
  2036. data = this.data();
  2037. this.opts.element.val(!value ? "" : this.id(value));
  2038. this.updateSelection(value);
  2039. if (triggerChange) {
  2040. this.triggerChange({added: value, removed:data});
  2041. }
  2042. }
  2043. }
  2044. }
  2045. });
  2046. MultiSelect2 = clazz(AbstractSelect2, {
  2047. // multi
  2048. createContainer: function () {
  2049. var container = $(document.createElement("div")).attr({
  2050. "class": "select2-container select2-container-multi"
  2051. }).html([
  2052. "<ul class='select2-choices'>",
  2053. " <li class='select2-search-field'>",
  2054. " <label for='' class='select2-offscreen'></label>",
  2055. " <input type='text' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' class='select2-input'>",
  2056. " </li>",
  2057. "</ul>",
  2058. "<div class='select2-drop select2-drop-multi select2-display-none'>",
  2059. " <ul class='select2-results'>",
  2060. " </ul>",
  2061. "</div>"].join(""));
  2062. return container;
  2063. },
  2064. // multi
  2065. prepareOpts: function () {
  2066. var opts = this.parent.prepareOpts.apply(this, arguments),
  2067. self=this;
  2068. // TODO validate placeholder is a string if specified
  2069. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  2070. // install the selection initializer
  2071. opts.initSelection = function (element, callback) {
  2072. var data = [];
  2073. element.find("option").filter(function() { return this.selected }).each2(function (i, elm) {
  2074. data.push(self.optionToData(elm));
  2075. });
  2076. callback(data);
  2077. };
  2078. } else if ("data" in opts) {
  2079. // install default initSelection when applied to hidden input and data is local
  2080. opts.initSelection = opts.initSelection || function (element, callback) {
  2081. var ids = splitVal(element.val(), opts.separator);
  2082. //search in data by array of ids, storing matching items in a list
  2083. var matches = [];
  2084. opts.query({
  2085. matcher: function(term, text, el){
  2086. var is_match = $.grep(ids, function(id) {
  2087. return equal(id, opts.id(el));
  2088. }).length;
  2089. if (is_match) {
  2090. matches.push(el);
  2091. }
  2092. return is_match;
  2093. },
  2094. callback: !$.isFunction(callback) ? $.noop : function() {
  2095. // reorder matches based on the order they appear in the ids array because right now
  2096. // they are in the order in which they appear in data array
  2097. var ordered = [];
  2098. for (var i = 0; i < ids.length; i++) {
  2099. var id = ids[i];
  2100. for (var j = 0; j < matches.length; j++) {
  2101. var match = matches[j];
  2102. if (equal(id, opts.id(match))) {
  2103. ordered.push(match);
  2104. matches.splice(j, 1);
  2105. break;
  2106. }
  2107. }
  2108. }
  2109. callback(ordered);
  2110. }
  2111. });
  2112. };
  2113. }
  2114. return opts;
  2115. },
  2116. // multi
  2117. selectChoice: function (choice) {
  2118. var selected = this.container.find(".select2-search-choice-focus");
  2119. if (selected.length && choice && choice[0] == selected[0]) {
  2120. } else {
  2121. if (selected.length) {
  2122. this.opts.element.trigger("choice-deselected", selected);
  2123. }
  2124. selected.removeClass("select2-search-choice-focus");
  2125. if (choice && choice.length) {
  2126. this.close();
  2127. choice.addClass("select2-search-choice-focus");
  2128. this.opts.element.trigger("choice-selected", choice);
  2129. }
  2130. }
  2131. },
  2132. // multi
  2133. destroy: function() {
  2134. $("label[for='" + this.search.attr('id') + "']")
  2135. .attr('for', this.opts.element.attr("id"));
  2136. this.parent.destroy.apply(this, arguments);
  2137. },
  2138. // multi
  2139. initContainer: function () {
  2140. var selector = ".select2-choices", selection;
  2141. this.searchContainer = this.container.find(".select2-search-field");
  2142. this.selection = selection = this.container.find(selector);
  2143. var _this = this;
  2144. this.selection.on("click", ".select2-search-choice:not(.select2-locked)", function (e) {
  2145. //killEvent(e);
  2146. _this.search[0].focus();
  2147. _this.selectChoice($(this));
  2148. });
  2149. // rewrite labels from original element to focusser
  2150. this.search.attr("id", "s2id_autogen"+nextUid());
  2151. this.search.prev()
  2152. .text($("label[for='" + this.opts.element.attr("id") + "']").text())
  2153. .attr('for', this.search.attr('id'));
  2154. this.search.on("input paste", this.bind(function() {
  2155. if (!this.isInterfaceEnabled()) return;
  2156. if (!this.opened()) {
  2157. this.open();
  2158. }
  2159. }));
  2160. this.search.attr("tabindex", this.elementTabIndex);
  2161. this.keydowns = 0;
  2162. this.search.on("keydown", this.bind(function (e) {
  2163. if (!this.isInterfaceEnabled()) return;
  2164. ++this.keydowns;
  2165. var selected = selection.find(".select2-search-choice-focus");
  2166. var prev = selected.prev(".select2-search-choice:not(.select2-locked)");
  2167. var next = selected.next(".select2-search-choice:not(.select2-locked)");
  2168. var pos = getCursorInfo(this.search);
  2169. if (selected.length &&
  2170. (e.which == KEY.LEFT || e.which == KEY.RIGHT || e.which == KEY.BACKSPACE || e.which == KEY.DELETE || e.which == KEY.ENTER)) {
  2171. var selectedChoice = selected;
  2172. if (e.which == KEY.LEFT && prev.length) {
  2173. selectedChoice = prev;
  2174. }
  2175. else if (e.which == KEY.RIGHT) {
  2176. selectedChoice = next.length ? next : null;
  2177. }
  2178. else if (e.which === KEY.BACKSPACE) {
  2179. this.unselect(selected.first());
  2180. this.search.width(10);
  2181. selectedChoice = prev.length ? prev : next;
  2182. } else if (e.which == KEY.DELETE) {
  2183. this.unselect(selected.first());
  2184. this.search.width(10);
  2185. selectedChoice = next.length ? next : null;
  2186. } else if (e.which == KEY.ENTER) {
  2187. selectedChoice = null;
  2188. }
  2189. this.selectChoice(selectedChoice);
  2190. killEvent(e);
  2191. if (!selectedChoice || !selectedChoice.length) {
  2192. this.open();
  2193. }
  2194. return;
  2195. } else if (((e.which === KEY.BACKSPACE && this.keydowns == 1)
  2196. || e.which == KEY.LEFT) && (pos.offset == 0 && !pos.length)) {
  2197. this.selectChoice(selection.find(".select2-search-choice:not(.select2-locked)").last());
  2198. killEvent(e);
  2199. return;
  2200. } else {
  2201. this.selectChoice(null);
  2202. }
  2203. if (this.opened()) {
  2204. switch (e.which) {
  2205. case KEY.UP:
  2206. case KEY.DOWN:
  2207. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  2208. killEvent(e);
  2209. return;
  2210. case KEY.ENTER:
  2211. this.selectHighlighted();
  2212. killEvent(e);
  2213. return;
  2214. case KEY.TAB:
  2215. this.selectHighlighted({noFocus:true});
  2216. this.close();
  2217. return;
  2218. case KEY.ESC:
  2219. this.cancel(e);
  2220. killEvent(e);
  2221. return;
  2222. }
  2223. }
  2224. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e)
  2225. || e.which === KEY.BACKSPACE || e.which === KEY.ESC) {
  2226. return;
  2227. }
  2228. if (e.which === KEY.ENTER) {
  2229. if (this.opts.openOnEnter === false) {
  2230. return;
  2231. } else if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) {
  2232. return;
  2233. }
  2234. }
  2235. this.open();
  2236. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  2237. // prevent the page from scrolling
  2238. killEvent(e);
  2239. }
  2240. if (e.which === KEY.ENTER) {
  2241. // prevent form from being submitted
  2242. killEvent(e);
  2243. }
  2244. }));
  2245. this.search.on("keyup", this.bind(function (e) {
  2246. this.keydowns = 0;
  2247. this.resizeSearch();
  2248. })
  2249. );
  2250. this.search.on("blur", this.bind(function(e) {
  2251. this.container.removeClass("select2-container-active");
  2252. this.search.removeClass("select2-focused");
  2253. this.selectChoice(null);
  2254. if (!this.opened()) this.clearSearch();
  2255. e.stopImmediatePropagation();
  2256. this.opts.element.trigger($.Event("select2-blur"));
  2257. }));
  2258. this.container.on("click", selector, this.bind(function (e) {
  2259. if (!this.isInterfaceEnabled()) return;
  2260. if ($(e.target).closest(".select2-search-choice").length > 0) {
  2261. // clicked inside a select2 search choice, do not open
  2262. return;
  2263. }
  2264. this.selectChoice(null);
  2265. this.clearPlaceholder();
  2266. if (!this.container.hasClass("select2-container-active")) {
  2267. this.opts.element.trigger($.Event("select2-focus"));
  2268. }
  2269. this.open();
  2270. this.focusSearch();
  2271. e.preventDefault();
  2272. }));
  2273. this.container.on("focus", selector, this.bind(function () {
  2274. if (!this.isInterfaceEnabled()) return;
  2275. if (!this.container.hasClass("select2-container-active")) {
  2276. this.opts.element.trigger($.Event("select2-focus"));
  2277. }
  2278. this.container.addClass("select2-container-active");
  2279. this.dropdown.addClass("select2-drop-active");
  2280. this.clearPlaceholder();
  2281. }));
  2282. this.initContainerWidth();
  2283. this.opts.element.addClass("select2-offscreen");
  2284. // set the placeholder if necessary
  2285. this.clearSearch();
  2286. },
  2287. // multi
  2288. enableInterface: function() {
  2289. if (this.parent.enableInterface.apply(this, arguments)) {
  2290. this.search.prop("disabled", !this.isInterfaceEnabled());
  2291. }
  2292. },
  2293. // multi
  2294. initSelection: function () {
  2295. var data;
  2296. if (this.opts.element.val() === "" && this.opts.element.text() === "") {
  2297. this.updateSelection([]);
  2298. this.close();
  2299. // set the placeholder if necessary
  2300. this.clearSearch();
  2301. }
  2302. if (this.select || this.opts.element.val() !== "") {
  2303. var self = this;
  2304. this.opts.initSelection.call(null, this.opts.element, function(data){
  2305. if (data !== undefined && data !== null) {
  2306. self.updateSelection(data);
  2307. self.close();
  2308. // set the placeholder if necessary
  2309. self.clearSearch();
  2310. }
  2311. });
  2312. }
  2313. },
  2314. // multi
  2315. clearSearch: function () {
  2316. var placeholder = this.getPlaceholder(),
  2317. maxWidth = this.getMaxSearchWidth();
  2318. if (placeholder !== undefined && this.getVal().length === 0 && this.search.hasClass("select2-focused") === false) {
  2319. this.search.val(placeholder).addClass("select2-default");
  2320. // stretch the search box to full width of the container so as much of the placeholder is visible as possible
  2321. // we could call this.resizeSearch(), but we do not because that requires a sizer and we do not want to create one so early because of a firefox bug, see #944
  2322. this.search.width(maxWidth > 0 ? maxWidth : this.container.css("width"));
  2323. } else {
  2324. this.search.val("").width(10);
  2325. }
  2326. },
  2327. // multi
  2328. clearPlaceholder: function () {
  2329. if (this.search.hasClass("select2-default")) {
  2330. this.search.val("").removeClass("select2-default");
  2331. }
  2332. },
  2333. // multi
  2334. opening: function () {
  2335. this.clearPlaceholder(); // should be done before super so placeholder is not used to search
  2336. this.resizeSearch();
  2337. this.parent.opening.apply(this, arguments);
  2338. this.focusSearch();
  2339. // initializes search's value with nextSearchTerm (if defined by user)
  2340. // ignore nextSearchTerm if the dropdown is opened by the user pressing a letter
  2341. if(this.search.val() === "") {
  2342. if(this.nextSearchTerm != undefined){
  2343. this.search.val(this.nextSearchTerm);
  2344. this.search.select();
  2345. }
  2346. }
  2347. this.updateResults(true);
  2348. this.search.focus();
  2349. this.opts.element.trigger($.Event("select2-open"));
  2350. },
  2351. // multi
  2352. close: function () {
  2353. if (!this.opened()) return;
  2354. this.parent.close.apply(this, arguments);
  2355. },
  2356. // multi
  2357. focus: function () {
  2358. this.close();
  2359. this.search.focus();
  2360. },
  2361. // multi
  2362. isFocused: function () {
  2363. return this.search.hasClass("select2-focused");
  2364. },
  2365. // multi
  2366. updateSelection: function (data) {
  2367. var ids = [], filtered = [], self = this;
  2368. // filter out duplicates
  2369. $(data).each(function () {
  2370. if (indexOf(self.id(this), ids) < 0) {
  2371. ids.push(self.id(this));
  2372. filtered.push(this);
  2373. }
  2374. });
  2375. data = filtered;
  2376. this.selection.find(".select2-search-choice").remove();
  2377. $(data).each(function () {
  2378. self.addSelectedChoice(this);
  2379. });
  2380. self.postprocessResults();
  2381. },
  2382. // multi
  2383. tokenize: function() {
  2384. var input = this.search.val();
  2385. input = this.opts.tokenizer.call(this, input, this.data(), this.bind(this.onSelect), this.opts);
  2386. if (input != null && input != undefined) {
  2387. this.search.val(input);
  2388. if (input.length > 0) {
  2389. this.open();
  2390. }
  2391. }
  2392. },
  2393. // multi
  2394. onSelect: function (data, options) {
  2395. if (!this.triggerSelect(data)) { return; }
  2396. this.addSelectedChoice(data);
  2397. this.opts.element.trigger({ type: "selected", val: this.id(data), choice: data });
  2398. // keep track of the search's value before it gets cleared
  2399. this.nextSearchTerm = this.opts.nextSearchTerm(data, this.search.val());
  2400. this.clearSearch();
  2401. this.updateResults();
  2402. if (this.select || !this.opts.closeOnSelect) this.postprocessResults(data, false, this.opts.closeOnSelect===true);
  2403. if (this.opts.closeOnSelect) {
  2404. this.close();
  2405. this.search.width(10);
  2406. } else {
  2407. if (this.countSelectableResults()>0) {
  2408. this.search.width(10);
  2409. this.resizeSearch();
  2410. if (this.getMaximumSelectionSize() > 0 && this.val().length >= this.getMaximumSelectionSize()) {
  2411. // if we reached max selection size repaint the results so choices
  2412. // are replaced with the max selection reached message
  2413. this.updateResults(true);
  2414. } else {
  2415. // initializes search's value with nextSearchTerm and update search result
  2416. if(this.nextSearchTerm != undefined){
  2417. this.search.val(this.nextSearchTerm);
  2418. this.updateResults();
  2419. this.search.select();
  2420. }
  2421. }
  2422. this.positionDropdown();
  2423. } else {
  2424. // if nothing left to select close
  2425. this.close();
  2426. this.search.width(10);
  2427. }
  2428. }
  2429. // since its not possible to select an element that has already been
  2430. // added we do not need to check if this is a new element before firing change
  2431. this.triggerChange({ added: data });
  2432. if (!options || !options.noFocus)
  2433. this.focusSearch();
  2434. },
  2435. // multi
  2436. cancel: function () {
  2437. this.close();
  2438. this.focusSearch();
  2439. },
  2440. addSelectedChoice: function (data) {
  2441. var enableChoice = !data.locked,
  2442. enabledItem = $(
  2443. "<li class='select2-search-choice'>" +
  2444. " <div></div>" +
  2445. " <a href='#' onclick='return false;' class='select2-search-choice-close' tabindex='-1'></a>" +
  2446. "</li>"),
  2447. disabledItem = $(
  2448. "<li class='select2-search-choice select2-locked'>" +
  2449. "<div></div>" +
  2450. "</li>");
  2451. var choice = enableChoice ? enabledItem : disabledItem,
  2452. id = this.id(data),
  2453. val = this.getVal(),
  2454. formatted,
  2455. cssClass;
  2456. formatted=this.opts.formatSelection(data, choice.find("div"), this.opts.escapeMarkup);
  2457. if (formatted != undefined) {
  2458. choice.find("div").replaceWith("<div>"+formatted+"</div>");
  2459. }
  2460. cssClass=this.opts.formatSelectionCssClass(data, choice.find("div"));
  2461. if (cssClass != undefined) {
  2462. choice.addClass(cssClass);
  2463. }
  2464. if(enableChoice){
  2465. choice.find(".select2-search-choice-close")
  2466. .on("mousedown", killEvent)
  2467. .on("click dblclick", this.bind(function (e) {
  2468. if (!this.isInterfaceEnabled()) return;
  2469. $(e.target).closest(".select2-search-choice").fadeOut('fast', this.bind(function(){
  2470. this.unselect($(e.target));
  2471. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  2472. this.close();
  2473. this.focusSearch();
  2474. })).dequeue();
  2475. killEvent(e);
  2476. })).on("focus", this.bind(function () {
  2477. if (!this.isInterfaceEnabled()) return;
  2478. this.container.addClass("select2-container-active");
  2479. this.dropdown.addClass("select2-drop-active");
  2480. }));
  2481. }
  2482. choice.data("select2-data", data);
  2483. choice.insertBefore(this.searchContainer);
  2484. val.push(id);
  2485. this.setVal(val);
  2486. },
  2487. // multi
  2488. unselect: function (selected) {
  2489. var val = this.getVal(),
  2490. data,
  2491. index;
  2492. selected = selected.closest(".select2-search-choice");
  2493. if (selected.length === 0) {
  2494. throw "Invalid argument: " + selected + ". Must be .select2-search-choice";
  2495. }
  2496. data = selected.data("select2-data");
  2497. if (!data) {
  2498. // prevent a race condition when the 'x' is clicked really fast repeatedly the event can be queued
  2499. // and invoked on an element already removed
  2500. return;
  2501. }
  2502. while((index = indexOf(this.id(data), val)) >= 0) {
  2503. val.splice(index, 1);
  2504. this.setVal(val);
  2505. if (this.select) this.postprocessResults();
  2506. }
  2507. var evt = $.Event("select2-removing");
  2508. evt.val = this.id(data);
  2509. evt.choice = data;
  2510. this.opts.element.trigger(evt);
  2511. if (evt.isDefaultPrevented()) {
  2512. return;
  2513. }
  2514. selected.remove();
  2515. this.opts.element.trigger({ type: "select2-removed", val: this.id(data), choice: data });
  2516. this.triggerChange({ removed: data });
  2517. },
  2518. // multi
  2519. postprocessResults: function (data, initial, noHighlightUpdate) {
  2520. var val = this.getVal(),
  2521. choices = this.results.find(".select2-result"),
  2522. compound = this.results.find(".select2-result-with-children"),
  2523. self = this;
  2524. choices.each2(function (i, choice) {
  2525. var id = self.id(choice.data("select2-data"));
  2526. if (indexOf(id, val) >= 0) {
  2527. // By default, the selected item is hidden from the result list inside a multi select
  2528. // User can provide an implementation for 'hideSelectionFromResult' and allow the same
  2529. // element to be selected multiple times.
  2530. if(self.opts.hideSelectionFromResult === undefined || self.opts.hideSelectionFromResult(choice)) {
  2531. choice.addClass("select2-selected");
  2532. // mark all children of the selected parent as selected
  2533. choice.find(".select2-result-selectable").addClass("select2-selected");
  2534. }
  2535. }
  2536. });
  2537. compound.each2(function(i, choice) {
  2538. // hide an optgroup if it doesn't have any selectable children
  2539. if (!choice.is('.select2-result-selectable')
  2540. && choice.find(".select2-result-selectable:not(.select2-selected)").length === 0) {
  2541. choice.addClass("select2-selected");
  2542. }
  2543. });
  2544. if (this.highlight() == -1 && noHighlightUpdate !== false){
  2545. self.highlight(0);
  2546. }
  2547. //If all results are chosen render formatNoMatches
  2548. if(!this.opts.createSearchChoice && !choices.filter('.select2-result:not(.select2-selected)').length > 0){
  2549. if(!data || data && !data.more && this.results.find(".select2-no-results").length === 0) {
  2550. if (checkFormatter(self.opts.formatNoMatches, "formatNoMatches")) {
  2551. this.results.append("<li class='select2-no-results'>" + self.opts.formatNoMatches(self.search.val()) + "</li>");
  2552. }
  2553. }
  2554. }
  2555. },
  2556. // multi
  2557. getMaxSearchWidth: function() {
  2558. return this.selection.width() - getSideBorderPadding(this.search);
  2559. },
  2560. // multi
  2561. resizeSearch: function () {
  2562. var minimumWidth, left, maxWidth, containerLeft, searchWidth,
  2563. sideBorderPadding = getSideBorderPadding(this.search);
  2564. minimumWidth = measureTextWidth(this.search) + 10;
  2565. left = this.search.offset().left;
  2566. maxWidth = this.selection.width();
  2567. containerLeft = this.selection.offset().left;
  2568. searchWidth = maxWidth - (left - containerLeft) - sideBorderPadding;
  2569. if (searchWidth < minimumWidth) {
  2570. searchWidth = maxWidth - sideBorderPadding;
  2571. }
  2572. if (searchWidth < 40) {
  2573. searchWidth = maxWidth - sideBorderPadding;
  2574. }
  2575. if (searchWidth <= 0) {
  2576. searchWidth = minimumWidth;
  2577. }
  2578. this.search.width(Math.floor(searchWidth));
  2579. },
  2580. // multi
  2581. getVal: function () {
  2582. var val;
  2583. if (this.select) {
  2584. val = this.select.val();
  2585. return val === null ? [] : val;
  2586. } else {
  2587. val = this.opts.element.val();
  2588. return splitVal(val, this.opts.separator);
  2589. }
  2590. },
  2591. // multi
  2592. setVal: function (val) {
  2593. var unique;
  2594. if (this.select) {
  2595. this.select.val(val);
  2596. } else {
  2597. unique = [];
  2598. // filter out duplicates
  2599. $(val).each(function () {
  2600. if (indexOf(this, unique) < 0) unique.push(this);
  2601. });
  2602. this.opts.element.val(unique.length === 0 ? "" : unique.join(this.opts.separator));
  2603. }
  2604. },
  2605. // multi
  2606. buildChangeDetails: function (old, current) {
  2607. var current = current.slice(0),
  2608. old = old.slice(0);
  2609. // remove intersection from each array
  2610. for (var i = 0; i < current.length; i++) {
  2611. for (var j = 0; j < old.length; j++) {
  2612. if (equal(this.opts.id(current[i]), this.opts.id(old[j]))) {
  2613. current.splice(i, 1);
  2614. if(i>0){
  2615. i--;
  2616. }
  2617. old.splice(j, 1);
  2618. j--;
  2619. }
  2620. }
  2621. }
  2622. return {added: current, removed: old};
  2623. },
  2624. // multi
  2625. val: function (val, triggerChange) {
  2626. var oldData, self=this;
  2627. if (arguments.length === 0) {
  2628. return this.getVal();
  2629. }
  2630. oldData=this.data();
  2631. if (!oldData.length) oldData=[];
  2632. // val is an id. !val is true for [undefined,null,'',0] - 0 is legal
  2633. if (!val && val !== 0) {
  2634. this.opts.element.val("");
  2635. this.updateSelection([]);
  2636. this.clearSearch();
  2637. if (triggerChange) {
  2638. this.triggerChange({added: this.data(), removed: oldData});
  2639. }
  2640. return;
  2641. }
  2642. // val is a list of ids
  2643. this.setVal(val);
  2644. if (this.select) {
  2645. this.opts.initSelection(this.select, this.bind(this.updateSelection));
  2646. if (triggerChange) {
  2647. this.triggerChange(this.buildChangeDetails(oldData, this.data()));
  2648. }
  2649. } else {
  2650. if (this.opts.initSelection === undefined) {
  2651. throw new Error("val() cannot be called if initSelection() is not defined");
  2652. }
  2653. this.opts.initSelection(this.opts.element, function(data){
  2654. var ids=$.map(data, self.id);
  2655. self.setVal(ids);
  2656. self.updateSelection(data);
  2657. self.clearSearch();
  2658. if (triggerChange) {
  2659. self.triggerChange(self.buildChangeDetails(oldData, self.data()));
  2660. }
  2661. });
  2662. }
  2663. this.clearSearch();
  2664. },
  2665. // multi
  2666. onSortStart: function() {
  2667. if (this.select) {
  2668. throw new Error("Sorting of elements is not supported when attached to <select>. Attach to <input type='hidden'/> instead.");
  2669. }
  2670. // collapse search field into 0 width so its container can be collapsed as well
  2671. this.search.width(0);
  2672. // hide the container
  2673. this.searchContainer.hide();
  2674. },
  2675. // multi
  2676. onSortEnd:function() {
  2677. var val=[], self=this;
  2678. // show search and move it to the end of the list
  2679. this.searchContainer.show();
  2680. // make sure the search container is the last item in the list
  2681. this.searchContainer.appendTo(this.searchContainer.parent());
  2682. // since we collapsed the width in dragStarted, we resize it here
  2683. this.resizeSearch();
  2684. // update selection
  2685. this.selection.find(".select2-search-choice").each(function() {
  2686. val.push(self.opts.id($(this).data("select2-data")));
  2687. });
  2688. this.setVal(val);
  2689. this.triggerChange();
  2690. },
  2691. // multi
  2692. data: function(values, triggerChange) {
  2693. var self=this, ids, old;
  2694. if (arguments.length === 0) {
  2695. return this.selection
  2696. .children(".select2-search-choice")
  2697. .map(function() { return $(this).data("select2-data"); })
  2698. .get();
  2699. } else {
  2700. old = this.data();
  2701. if (!values) { values = []; }
  2702. ids = $.map(values, function(e) { return self.opts.id(e); });
  2703. this.setVal(ids);
  2704. this.updateSelection(values);
  2705. this.clearSearch();
  2706. if (triggerChange) {
  2707. this.triggerChange(this.buildChangeDetails(old, this.data()));
  2708. }
  2709. }
  2710. }
  2711. });
  2712. $.fn.select2 = function () {
  2713. var args = Array.prototype.slice.call(arguments, 0),
  2714. opts,
  2715. select2,
  2716. method, value, multiple,
  2717. allowedMethods = ["val", "destroy", "opened", "open", "close", "focus", "isFocused", "container", "dropdown", "onSortStart", "onSortEnd", "enable", "disable", "readonly", "positionDropdown", "data", "search"],
  2718. valueMethods = ["opened", "isFocused", "container", "dropdown"],
  2719. propertyMethods = ["val", "data"],
  2720. methodsMap = { search: "externalSearch" };
  2721. this.each(function () {
  2722. if (args.length === 0 || typeof(args[0]) === "object") {
  2723. opts = args.length === 0 ? {} : $.extend({}, args[0]);
  2724. opts.element = $(this);
  2725. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  2726. multiple = opts.element.prop("multiple");
  2727. } else {
  2728. multiple = opts.multiple || false;
  2729. if ("tags" in opts) {opts.multiple = multiple = true;}
  2730. }
  2731. select2 = multiple ? new window.Select2["class"].multi() : new window.Select2["class"].single();
  2732. select2.init(opts);
  2733. } else if (typeof(args[0]) === "string") {
  2734. if (indexOf(args[0], allowedMethods) < 0) {
  2735. throw "Unknown method: " + args[0];
  2736. }
  2737. value = undefined;
  2738. select2 = $(this).data("select2");
  2739. if (select2 === undefined) return;
  2740. method=args[0];
  2741. if (method === "container") {
  2742. value = select2.container;
  2743. } else if (method === "dropdown") {
  2744. value = select2.dropdown;
  2745. } else {
  2746. if (methodsMap[method]) method = methodsMap[method];
  2747. value = select2[method].apply(select2, args.slice(1));
  2748. }
  2749. if (indexOf(args[0], valueMethods) >= 0
  2750. || (indexOf(args[0], propertyMethods) && args.length == 1)) {
  2751. return false; // abort the iteration, ready to return first matched value
  2752. }
  2753. } else {
  2754. throw "Invalid arguments to select2 plugin: " + args;
  2755. }
  2756. });
  2757. return (value === undefined) ? this : value;
  2758. };
  2759. // plugin defaults, accessible to users
  2760. $.fn.select2.defaults = {
  2761. width: "copy",
  2762. loadMorePadding: 0,
  2763. closeOnSelect: true,
  2764. openOnEnter: true,
  2765. containerCss: {},
  2766. dropdownCss: {},
  2767. containerCssClass: "",
  2768. dropdownCssClass: "",
  2769. formatResult: function(result, container, query, escapeMarkup) {
  2770. var markup=[];
  2771. markMatch(result.text, query.term, markup, escapeMarkup);
  2772. return markup.join("");
  2773. },
  2774. formatSelection: function (data, container, escapeMarkup) {
  2775. return data ? escapeMarkup(data.text) : undefined;
  2776. },
  2777. sortResults: function (results, container, query) {
  2778. return results;
  2779. },
  2780. formatResultCssClass: function(data) {return data.css;},
  2781. formatSelectionCssClass: function(data, container) {return undefined;},
  2782. formatMatches: function (matches) { return matches + " results are available, use up and down arrow keys to navigate."; },
  2783. formatNoMatches: function () { return "No matches found"; },
  2784. formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " or more character" + (n == 1? "" : "s"); },
  2785. formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1? "" : "s"); },
  2786. formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); },
  2787. formatLoadMore: function (pageNumber) { return "Loading more results…"; },
  2788. formatSearching: function () { return "Searching…"; },
  2789. minimumResultsForSearch: 0,
  2790. minimumInputLength: 0,
  2791. maximumInputLength: null,
  2792. maximumSelectionSize: 0,
  2793. id: function (e) { return e == undefined ? null : e.id; },
  2794. matcher: function(term, text) {
  2795. return stripDiacritics(''+text).toUpperCase().indexOf(stripDiacritics(''+term).toUpperCase()) >= 0;
  2796. },
  2797. separator: ",",
  2798. tokenSeparators: [],
  2799. tokenizer: defaultTokenizer,
  2800. escapeMarkup: defaultEscapeMarkup,
  2801. blurOnChange: false,
  2802. selectOnBlur: false,
  2803. adaptContainerCssClass: function(c) { return c; },
  2804. adaptDropdownCssClass: function(c) { return null; },
  2805. nextSearchTerm: function(selectedObject, currentSearchTerm) { return undefined; },
  2806. <<<<<<< HEAD
  2807. searchInputPlaceholder: ''
  2808. =======
  2809. hideSelectionFromResult: function(selectedObject) { return undefined; }
  2810. >>>>>>> master
  2811. };
  2812. $.fn.select2.ajaxDefaults = {
  2813. transport: $.ajax,
  2814. params: {
  2815. type: "GET",
  2816. cache: false,
  2817. dataType: "json"
  2818. }
  2819. };
  2820. // exports
  2821. window.Select2 = {
  2822. query: {
  2823. ajax: ajax,
  2824. local: local,
  2825. tags: tags
  2826. }, util: {
  2827. debounce: debounce,
  2828. markMatch: markMatch,
  2829. escapeMarkup: defaultEscapeMarkup,
  2830. stripDiacritics: stripDiacritics
  2831. }, "class": {
  2832. "abstract": AbstractSelect2,
  2833. "single": SingleSelect2,
  2834. "multi": MultiSelect2
  2835. }
  2836. };
  2837. }(jQuery));