select2.js 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  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 Licesnse 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. $.fn.extend({
  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, $document;
  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. $document = $(document);
  89. nextUid=(function() { var counter=1; return function() { return counter++; }; }());
  90. function indexOf(value, array) {
  91. var i = 0, l = array.length;
  92. for (; i < l; i = i + 1) {
  93. if (equal(value, array[i])) return i;
  94. }
  95. return -1;
  96. }
  97. /**
  98. * Compares equality of a and b
  99. * @param a
  100. * @param b
  101. */
  102. function equal(a, b) {
  103. if (a === b) return true;
  104. if (a === undefined || b === undefined) return false;
  105. if (a === null || b === null) return false;
  106. if (a.constructor === String) return a+'' === b+''; // IE requires a+'' instead of just a
  107. if (b.constructor === String) return b+'' === a+''; // IE requires b+'' instead of just b
  108. return false;
  109. }
  110. /**
  111. * Splits the string into an array of values, trimming each value. An empty array is returned for nulls or empty
  112. * strings
  113. * @param string
  114. * @param separator
  115. */
  116. function splitVal(string, separator) {
  117. var val, i, l;
  118. if (string === null || string.length < 1) return [];
  119. val = string.split(separator);
  120. for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]);
  121. return val;
  122. }
  123. function getSideBorderPadding(element) {
  124. return element.outerWidth(false) - element.width();
  125. }
  126. function installKeyUpChangeEvent(element) {
  127. var key="keyup-change-value";
  128. element.bind("keydown", function () {
  129. if ($.data(element, key) === undefined) {
  130. $.data(element, key, element.val());
  131. }
  132. });
  133. element.bind("keyup", function () {
  134. var val= $.data(element, key);
  135. if (val !== undefined && element.val() !== val) {
  136. $.removeData(element, key);
  137. element.trigger("keyup-change");
  138. }
  139. });
  140. }
  141. $document.bind("mousemove", function (e) {
  142. lastMousePosition = {x: e.pageX, y: e.pageY};
  143. });
  144. /**
  145. * filters mouse events so an event is fired only if the mouse moved.
  146. *
  147. * filters out mouse events that occur when mouse is stationary but
  148. * the elements under the pointer are scrolled.
  149. */
  150. function installFilteredMouseMove(element) {
  151. element.bind("mousemove", function (e) {
  152. var lastpos = lastMousePosition;
  153. if (lastpos === undefined || lastpos.x !== e.pageX || lastpos.y !== e.pageY) {
  154. $(e.target).trigger("mousemove-filtered", e);
  155. }
  156. });
  157. }
  158. /**
  159. * Debounces a function. Returns a function that calls the original fn function only if no invocations have been made
  160. * within the last quietMillis milliseconds.
  161. *
  162. * @param quietMillis number of milliseconds to wait before invoking fn
  163. * @param fn function to be debounced
  164. * @param ctx object to be used as this reference within fn
  165. * @return debounced version of fn
  166. */
  167. function debounce(quietMillis, fn, ctx) {
  168. ctx = ctx || undefined;
  169. var timeout;
  170. return function () {
  171. var args = arguments;
  172. window.clearTimeout(timeout);
  173. timeout = window.setTimeout(function() {
  174. fn.apply(ctx, args);
  175. }, quietMillis);
  176. };
  177. }
  178. /**
  179. * A simple implementation of a thunk
  180. * @param formula function used to lazily initialize the thunk
  181. * @return {Function}
  182. */
  183. function thunk(formula) {
  184. var evaluated = false,
  185. value;
  186. return function() {
  187. if (evaluated === false) { value = formula(); evaluated = true; }
  188. return value;
  189. };
  190. };
  191. function installDebouncedScroll(threshold, element) {
  192. var notify = debounce(threshold, function (e) { element.trigger("scroll-debounced", e);});
  193. element.bind("scroll", function (e) {
  194. if (indexOf(e.target, element.get()) >= 0) notify(e);
  195. });
  196. }
  197. function focus($el) {
  198. if ($el[0] === document.activeElement) return;
  199. /* set the focus in a 0 timeout - that way the focus is set after the processing
  200. of the current event has finished - which seems like the only reliable way
  201. to set focus */
  202. window.setTimeout(function() {
  203. var el=$el[0], pos=$el.val().length, range;
  204. $el.focus();
  205. /* after the focus is set move the caret to the end, necessary when we val()
  206. just before setting focus */
  207. if(el.setSelectionRange)
  208. {
  209. el.setSelectionRange(pos, pos);
  210. }
  211. else if (el.createTextRange) {
  212. range = el.createTextRange();
  213. range.collapse(true);
  214. range.moveEnd('character', pos);
  215. range.moveStart('character', pos);
  216. range.select();
  217. }
  218. }, 0);
  219. }
  220. function killEvent(event) {
  221. event.preventDefault();
  222. event.stopPropagation();
  223. }
  224. function killEventImmediately(event) {
  225. event.preventDefault();
  226. event.stopImmediatePropagation();
  227. }
  228. function measureTextWidth(e) {
  229. if (!sizer){
  230. var style = e[0].currentStyle || window.getComputedStyle(e[0], null);
  231. sizer = $(document.createElement("div")).css({
  232. position: "absolute",
  233. left: "-10000px",
  234. top: "-10000px",
  235. display: "none",
  236. fontSize: style.fontSize,
  237. fontFamily: style.fontFamily,
  238. fontStyle: style.fontStyle,
  239. fontWeight: style.fontWeight,
  240. letterSpacing: style.letterSpacing,
  241. textTransform: style.textTransform,
  242. whiteSpace: "nowrap"
  243. });
  244. sizer.attr("class","select2-sizer");
  245. $("body").append(sizer);
  246. }
  247. sizer.text(e.val());
  248. return sizer.width();
  249. }
  250. function syncCssClasses(dest, src, adapter) {
  251. var classes, replacements = [], adapted;
  252. classes = dest.attr("class");
  253. if (typeof classes === "string") {
  254. $(classes.split(" ")).each2(function() {
  255. if (this.indexOf("select2-") === 0) {
  256. replacements.push(this);
  257. }
  258. });
  259. }
  260. classes = src.attr("class");
  261. if (typeof classes === "string") {
  262. $(classes.split(" ")).each2(function() {
  263. if (this.indexOf("select2-") !== 0) {
  264. adapted = adapter(this);
  265. if (typeof adapted === "string" && adapted.length > 0) {
  266. replacements.push(this);
  267. }
  268. }
  269. });
  270. }
  271. dest.attr("class", replacements.join(" "));
  272. }
  273. function markMatch(text, term, markup, escapeMarkup) {
  274. var match=text.toUpperCase().indexOf(term.toUpperCase()),
  275. tl=term.length;
  276. if (match<0) {
  277. markup.push(escapeMarkup(text));
  278. return;
  279. }
  280. markup.push(escapeMarkup(text.substring(0, match)));
  281. markup.push("<span class='select2-match'>");
  282. markup.push(escapeMarkup(text.substring(match, match + tl)));
  283. markup.push("</span>");
  284. markup.push(escapeMarkup(text.substring(match + tl, text.length)));
  285. }
  286. /**
  287. * Produces an ajax-based query function
  288. *
  289. * @param options object containing configuration paramters
  290. * @param options.transport function that will be used to execute the ajax request. must be compatible with parameters supported by $.ajax
  291. * @param options.url url for the data
  292. * @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url.
  293. * @param options.dataType request data type: ajax, jsonp, other datatatypes supported by jQuery's $.ajax function or the transport function if specified
  294. * @param options.traditional a boolean flag that should be true if you wish to use the traditional style of param serialization for the ajax request
  295. * @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often
  296. * @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2.
  297. * The expected format is an object containing the following keys:
  298. * results array of objects that will be used as choices
  299. * more (optional) boolean indicating whether there are more results available
  300. * Example: {results:[{id:1, text:'Red'},{id:2, text:'Blue'}], more:true}
  301. */
  302. function ajax(options) {
  303. var timeout, // current scheduled but not yet executed request
  304. requestSequence = 0, // sequence used to drop out-of-order responses
  305. handler = null,
  306. quietMillis = options.quietMillis || 100,
  307. ajaxUrl = options.url,
  308. self = this;
  309. return function (query) {
  310. window.clearTimeout(timeout);
  311. timeout = window.setTimeout(function () {
  312. requestSequence += 1; // increment the sequence
  313. var requestNumber = requestSequence, // this request's sequence number
  314. data = options.data, // ajax data function
  315. url = ajaxUrl, // ajax url string or function
  316. transport = options.transport || $.ajax,
  317. type = options.type || 'GET', // set type of request (GET or POST)
  318. params = {};
  319. data = data ? data.call(self, query.term, query.page, query.context) : null;
  320. url = (typeof url === 'function') ? url.call(self, query.term, query.page, query.context) : url;
  321. if( null !== handler) { handler.abort(); }
  322. if (options.params) {
  323. if ($.isFunction(options.params)) {
  324. $.extend(params, options.params.call(self));
  325. } else {
  326. $.extend(params, options.params);
  327. }
  328. }
  329. $.extend(params, {
  330. url: url,
  331. dataType: options.dataType,
  332. data: data,
  333. type: type,
  334. cache: false,
  335. success: function (data) {
  336. if (requestNumber < requestSequence) {
  337. return;
  338. }
  339. // TODO - replace query.page with query so users have access to term, page, etc.
  340. var results = options.results(data, query.page);
  341. query.callback(results);
  342. }
  343. });
  344. handler = transport.call(self, params);
  345. }, quietMillis);
  346. };
  347. }
  348. /**
  349. * Produces a query function that works with a local array
  350. *
  351. * @param options object containing configuration parameters. The options parameter can either be an array or an
  352. * object.
  353. *
  354. * If the array form is used it is assumed that it contains objects with 'id' and 'text' keys.
  355. *
  356. * If the object form is used ti is assumed that it contains 'data' and 'text' keys. The 'data' key should contain
  357. * an array of objects that will be used as choices. These objects must contain at least an 'id' key. The 'text'
  358. * key can either be a String in which case it is expected that each element in the 'data' array has a key with the
  359. * value of 'text' which will be used to match choices. Alternatively, text can be a function(item) that can extract
  360. * the text.
  361. */
  362. function local(options) {
  363. var data = options, // data elements
  364. dataText,
  365. tmp,
  366. text = function (item) { return ""+item.text; }; // function used to retrieve the text portion of a data item that is matched against the search
  367. if ($.isArray(data)) {
  368. tmp = data;
  369. data = { results: tmp };
  370. }
  371. if ($.isFunction(data) === false) {
  372. tmp = data;
  373. data = function() { return tmp; };
  374. }
  375. var dataItem = data();
  376. if (dataItem.text) {
  377. text = dataItem.text;
  378. // if text is not a function we assume it to be a key name
  379. if (!$.isFunction(text)) {
  380. dataText = data.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
  381. text = function (item) { return item[dataText]; };
  382. }
  383. }
  384. return function (query) {
  385. var t = query.term, filtered = { results: [] }, process;
  386. if (t === "") {
  387. query.callback(data());
  388. return;
  389. }
  390. process = function(datum, collection) {
  391. var group, attr;
  392. datum = datum[0];
  393. if (datum.children) {
  394. group = {};
  395. for (attr in datum) {
  396. if (datum.hasOwnProperty(attr)) group[attr]=datum[attr];
  397. }
  398. group.children=[];
  399. $(datum.children).each2(function(i, childDatum) { process(childDatum, group.children); });
  400. if (group.children.length || query.matcher(t, text(group), datum)) {
  401. collection.push(group);
  402. }
  403. } else {
  404. if (query.matcher(t, text(datum), datum)) {
  405. collection.push(datum);
  406. }
  407. }
  408. };
  409. $(data().results).each2(function(i, datum) { process(datum, filtered.results); });
  410. query.callback(filtered);
  411. };
  412. }
  413. // TODO javadoc
  414. function tags(data) {
  415. var isFunc = $.isFunction(data);
  416. return function (query) {
  417. var t = query.term, filtered = {results: []};
  418. $(isFunc ? data() : data).each(function () {
  419. var isObject = this.text !== undefined,
  420. text = isObject ? this.text : this;
  421. if (t === "" || query.matcher(t, text)) {
  422. filtered.results.push(isObject ? this : {id: this, text: this});
  423. }
  424. });
  425. query.callback(filtered);
  426. };
  427. }
  428. /**
  429. * Checks if the formatter function should be used.
  430. *
  431. * Throws an error if it is not a function. Returns true if it should be used,
  432. * false if no formatting should be performed.
  433. *
  434. * @param formatter
  435. */
  436. function checkFormatter(formatter, formatterName) {
  437. if ($.isFunction(formatter)) return true;
  438. if (!formatter) return false;
  439. throw new Error("formatterName must be a function or a falsy value");
  440. }
  441. function evaluate(val) {
  442. return $.isFunction(val) ? val() : val;
  443. }
  444. function countResults(results) {
  445. var count = 0;
  446. $.each(results, function(i, item) {
  447. if (item.children) {
  448. count += countResults(item.children);
  449. } else {
  450. count++;
  451. }
  452. });
  453. return count;
  454. }
  455. /**
  456. * Default tokenizer. This function uses breaks the input on substring match of any string from the
  457. * opts.tokenSeparators array and uses opts.createSearchChoice to create the choice object. Both of those
  458. * two options have to be defined in order for the tokenizer to work.
  459. *
  460. * @param input text user has typed so far or pasted into the search field
  461. * @param selection currently selected choices
  462. * @param selectCallback function(choice) callback tho add the choice to selection
  463. * @param opts select2's opts
  464. * @return undefined/null to leave the current input unchanged, or a string to change the input to the returned value
  465. */
  466. function defaultTokenizer(input, selection, selectCallback, opts) {
  467. var original = input, // store the original so we can compare and know if we need to tell the search to update its text
  468. dupe = false, // check for whether a token we extracted represents a duplicate selected choice
  469. token, // token
  470. index, // position at which the separator was found
  471. i, l, // looping variables
  472. separator; // the matched separator
  473. if (!opts.createSearchChoice || !opts.tokenSeparators || opts.tokenSeparators.length < 1) return undefined;
  474. while (true) {
  475. index = -1;
  476. for (i = 0, l = opts.tokenSeparators.length; i < l; i++) {
  477. separator = opts.tokenSeparators[i];
  478. index = input.indexOf(separator);
  479. if (index >= 0) break;
  480. }
  481. if (index < 0) break; // did not find any token separator in the input string, bail
  482. token = input.substring(0, index);
  483. input = input.substring(index + separator.length);
  484. if (token.length > 0) {
  485. token = opts.createSearchChoice(token, selection);
  486. if (token !== undefined && token !== null && opts.id(token) !== undefined && opts.id(token) !== null) {
  487. dupe = false;
  488. for (i = 0, l = selection.length; i < l; i++) {
  489. if (equal(opts.id(token), opts.id(selection[i]))) {
  490. dupe = true; break;
  491. }
  492. }
  493. if (!dupe) selectCallback(token);
  494. }
  495. }
  496. }
  497. if (original!==input) return input;
  498. }
  499. /**
  500. * Creates a new class
  501. *
  502. * @param superClass
  503. * @param methods
  504. */
  505. function clazz(SuperClass, methods) {
  506. var constructor = function () {};
  507. constructor.prototype = new SuperClass;
  508. constructor.prototype.constructor = constructor;
  509. constructor.prototype.parent = SuperClass.prototype;
  510. constructor.prototype = $.extend(constructor.prototype, methods);
  511. return constructor;
  512. }
  513. AbstractSelect2 = clazz(Object, {
  514. // abstract
  515. bind: function (func) {
  516. var self = this;
  517. return function () {
  518. func.apply(self, arguments);
  519. };
  520. },
  521. // abstract
  522. init: function (opts) {
  523. var results, search, resultsSelector = ".select2-results", mask;
  524. // prepare options
  525. this.opts = opts = this.prepareOpts(opts);
  526. this.id=opts.id;
  527. // destroy if called on an existing component
  528. if (opts.element.data("select2") !== undefined &&
  529. opts.element.data("select2") !== null) {
  530. this.destroy();
  531. }
  532. this.enabled=true;
  533. this.container = this.createContainer();
  534. this.containerId="s2id_"+(opts.element.attr("id") || "autogen"+nextUid());
  535. this.containerSelector="#"+this.containerId.replace(/([;&,\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g, '\\$1');
  536. this.container.attr("id", this.containerId);
  537. // cache the body so future lookups are cheap
  538. this.body = thunk(function() { return opts.element.closest("body"); });
  539. syncCssClasses(this.container, this.opts.element, this.opts.adaptContainerCssClass);
  540. this.container.css(evaluate(opts.containerCss));
  541. this.container.addClass(evaluate(opts.containerCssClass));
  542. this.elementTabIndex = this.opts.element.attr("tabIndex");
  543. // swap container for the element
  544. this.opts.element
  545. .data("select2", this)
  546. .addClass("select2-offscreen")
  547. .bind("focus.select2", function() { $(this).select2("focus"); })
  548. .attr("tabIndex", "-1")
  549. .before(this.container);
  550. this.container.data("select2", this);
  551. this.dropdown = this.container.find(".select2-drop");
  552. this.dropdown.addClass(evaluate(opts.dropdownCssClass));
  553. this.dropdown.data("select2", this);
  554. this.results = results = this.container.find(resultsSelector);
  555. this.search = search = this.container.find("input.select2-input");
  556. search.attr("tabIndex", this.elementTabIndex);
  557. this.resultsPage = 0;
  558. this.context = null;
  559. // initialize the container
  560. this.initContainer();
  561. installFilteredMouseMove(this.results);
  562. this.dropdown.delegate(resultsSelector, "mousemove-filtered touchstart touchmove touchend", this.bind(this.highlightUnderEvent));
  563. installDebouncedScroll(80, this.results);
  564. this.dropdown.delegate(resultsSelector, "scroll-debounced", this.bind(this.loadMoreIfNeeded));
  565. // if jquery.mousewheel plugin is installed we can prevent out-of-bounds scrolling of results via mousewheel
  566. if ($.fn.mousewheel) {
  567. results.mousewheel(function (e, delta, deltaX, deltaY) {
  568. var top = results.scrollTop(), height;
  569. if (deltaY > 0 && top - deltaY <= 0) {
  570. results.scrollTop(0);
  571. killEvent(e);
  572. } else if (deltaY < 0 && results.get(0).scrollHeight - results.scrollTop() + deltaY <= results.height()) {
  573. results.scrollTop(results.get(0).scrollHeight - results.height());
  574. killEvent(e);
  575. }
  576. });
  577. }
  578. installKeyUpChangeEvent(search);
  579. search.bind("keyup-change input paste", this.bind(this.updateResults));
  580. search.bind("focus", function () { search.addClass("select2-focused"); });
  581. search.bind("blur", function () { search.removeClass("select2-focused");});
  582. this.dropdown.delegate(resultsSelector, "mouseup", this.bind(function (e) {
  583. if ($(e.target).closest(".select2-result-selectable").length > 0) {
  584. this.highlightUnderEvent(e);
  585. this.selectHighlighted(e);
  586. }
  587. }));
  588. // trap all mouse events from leaving the dropdown. sometimes there may be a modal that is listening
  589. // for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's
  590. // dom it will trigger the popup close, which is not what we want
  591. this.dropdown.bind("click mouseup mousedown", function (e) { e.stopPropagation(); });
  592. if ($.isFunction(this.opts.initSelection)) {
  593. // initialize selection based on the current value of the source element
  594. this.initSelection();
  595. // if the user has provided a function that can set selection based on the value of the source element
  596. // we monitor the change event on the element and trigger it, allowing for two way synchronization
  597. this.monitorSource();
  598. }
  599. if (opts.element.is(":disabled") || opts.element.is("[readonly='readonly']")) this.disable();
  600. },
  601. // abstract
  602. destroy: function () {
  603. var select2 = this.opts.element.data("select2");
  604. if (this.propertyObserver) { delete this.propertyObserver; this.propertyObserver = null; }
  605. if (select2 !== undefined) {
  606. select2.container.remove();
  607. select2.dropdown.remove();
  608. select2.opts.element
  609. .removeClass("select2-offscreen")
  610. .removeData("select2")
  611. .unbind(".select2")
  612. .attr({"tabIndex": this.elementTabIndex})
  613. .show();
  614. }
  615. },
  616. // abstract
  617. prepareOpts: function (opts) {
  618. var element, select, idKey, ajaxUrl;
  619. element = opts.element;
  620. if (element.get(0).tagName.toLowerCase() === "select") {
  621. this.select = select = opts.element;
  622. }
  623. if (select) {
  624. // these options are not allowed when attached to a select because they are picked up off the element itself
  625. $.each(["id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags"], function () {
  626. if (this in opts) {
  627. throw new Error("Option '" + this + "' is not allowed for Select2 when attached to a <select> element.");
  628. }
  629. });
  630. }
  631. opts = $.extend({}, {
  632. populateResults: function(container, results, query) {
  633. var populate, data, result, children, id=this.opts.id, self=this;
  634. populate=function(results, container, depth) {
  635. var i, l, result, selectable, disabled, compound, node, label, innerContainer, formatted;
  636. results = opts.sortResults(results, container, query);
  637. for (i = 0, l = results.length; i < l; i = i + 1) {
  638. result=results[i];
  639. disabled = (result.disabled === true);
  640. selectable = (!disabled) && (id(result) !== undefined);
  641. compound=result.children && result.children.length > 0;
  642. node=$("<li></li>");
  643. node.addClass("select2-results-dept-"+depth);
  644. node.addClass("select2-result");
  645. node.addClass(selectable ? "select2-result-selectable" : "select2-result-unselectable");
  646. if (disabled) { node.addClass("select2-disabled"); }
  647. if (compound) { node.addClass("select2-result-with-children"); }
  648. node.addClass(self.opts.formatResultCssClass(result));
  649. label=$(document.createElement("div"));
  650. label.addClass("select2-result-label");
  651. formatted=opts.formatResult(result, label, query, self.opts.escapeMarkup);
  652. if (formatted!==undefined) {
  653. label.html(formatted);
  654. }
  655. node.append(label);
  656. if (compound) {
  657. innerContainer=$("<ul></ul>");
  658. innerContainer.addClass("select2-result-sub");
  659. populate(result.children, innerContainer, depth+1);
  660. node.append(innerContainer);
  661. }
  662. node.data("select2-data", result);
  663. container.append(node);
  664. }
  665. };
  666. populate(results, container, 0);
  667. }
  668. }, $.fn.select2.defaults, opts);
  669. if (typeof(opts.id) !== "function") {
  670. idKey = opts.id;
  671. opts.id = function (e) { return e[idKey]; };
  672. }
  673. if ($.isArray(opts.element.data("select2Tags"))) {
  674. if ("tags" in opts) {
  675. throw "tags specified as both an attribute 'data-select2-tags' and in options of Select2 " + opts.element.attr("id");
  676. }
  677. opts.tags=opts.element.attr("data-select2-tags");
  678. }
  679. if (select) {
  680. opts.query = this.bind(function (query) {
  681. var data = { results: [], more: false },
  682. term = query.term,
  683. children, firstChild, process;
  684. process=function(element, collection) {
  685. var group;
  686. if (element.is("option")) {
  687. if (query.matcher(term, element.text(), element)) {
  688. collection.push({id:element.attr("value"), text:element.text(), element: element.get(), css: element.attr("class"), disabled: equal(element.attr("disabled"), "disabled") });
  689. }
  690. } else if (element.is("optgroup")) {
  691. group={text:element.attr("label"), children:[], element: element.get(), css: element.attr("class")};
  692. element.children().each2(function(i, elm) { process(elm, group.children); });
  693. if (group.children.length>0) {
  694. collection.push(group);
  695. }
  696. }
  697. };
  698. children=element.children();
  699. // ignore the placeholder option if there is one
  700. if (this.getPlaceholder() !== undefined && children.length > 0) {
  701. firstChild = children[0];
  702. if ($(firstChild).text() === "") {
  703. children=children.not(firstChild);
  704. }
  705. }
  706. children.each2(function(i, elm) { process(elm, data.results); });
  707. query.callback(data);
  708. });
  709. // this is needed because inside val() we construct choices from options and there id is hardcoded
  710. opts.id=function(e) { return e.id; };
  711. opts.formatResultCssClass = function(data) { return data.css; };
  712. } else {
  713. if (!("query" in opts)) {
  714. if ("ajax" in opts) {
  715. ajaxUrl = opts.element.data("ajax-url");
  716. if (ajaxUrl && ajaxUrl.length > 0) {
  717. opts.ajax.url = ajaxUrl;
  718. }
  719. opts.query = ajax.call(opts.element, opts.ajax);
  720. } else if ("data" in opts) {
  721. opts.query = local(opts.data);
  722. } else if ("tags" in opts) {
  723. opts.query = tags(opts.tags);
  724. if (opts.createSearchChoice === undefined) {
  725. opts.createSearchChoice = function (term) { return {id: term, text: term}; };
  726. }
  727. if (opts.initSelection === undefined) {
  728. opts.initSelection = function (element, callback) {
  729. var data = [];
  730. $(splitVal(element.val(), opts.separator)).each(function () {
  731. var id = this, text = this, tags=opts.tags;
  732. if ($.isFunction(tags)) tags=tags();
  733. $(tags).each(function() { if (equal(this.id, id)) { text = this.text; return false; } });
  734. data.push({id: id, text: text});
  735. });
  736. callback(data);
  737. };
  738. }
  739. }
  740. }
  741. }
  742. if (typeof(opts.query) !== "function") {
  743. throw "query function not defined for Select2 " + opts.element.attr("id");
  744. }
  745. return opts;
  746. },
  747. /**
  748. * Monitor the original element for changes and update select2 accordingly
  749. */
  750. // abstract
  751. monitorSource: function () {
  752. var el = this.opts.element, sync;
  753. el.bind("change.select2", this.bind(function (e) {
  754. if (this.opts.element.data("select2-change-triggered") !== true) {
  755. this.initSelection();
  756. }
  757. }));
  758. sync = this.bind(function () {
  759. var enabled, readonly, self = this;
  760. // sync enabled state
  761. enabled = this.opts.element.attr("disabled") !== "disabled";
  762. readonly = this.opts.element.attr("readonly") === "readonly";
  763. enabled = enabled && !readonly;
  764. if (this.enabled !== enabled) {
  765. if (enabled) {
  766. this.enable();
  767. } else {
  768. this.disable();
  769. }
  770. }
  771. syncCssClasses(this.container, this.opts.element, this.opts.adaptContainerCssClass);
  772. this.container.addClass(evaluate(this.opts.containerCssClass));
  773. syncCssClasses(this.dropdown, this.opts.element, this.opts.adaptDropdownCssClass);
  774. this.dropdown.addClass(evaluate(this.opts.dropdownCssClass));
  775. });
  776. // mozilla and IE
  777. el.bind("propertychange.select2 DOMAttrModified.select2", sync);
  778. // safari and chrome
  779. if (typeof WebKitMutationObserver !== "undefined") {
  780. if (this.propertyObserver) { delete this.propertyObserver; this.propertyObserver = null; }
  781. this.propertyObserver = new WebKitMutationObserver(function (mutations) {
  782. mutations.forEach(sync);
  783. });
  784. this.propertyObserver.observe(el.get(0), { attributes:true, subtree:false });
  785. }
  786. },
  787. /**
  788. * Triggers the change event on the source element
  789. */
  790. // abstract
  791. triggerChange: function (details) {
  792. details = details || {};
  793. details= $.extend({}, details, { type: "change", val: this.val() });
  794. // prevents recursive triggering
  795. this.opts.element.data("select2-change-triggered", true);
  796. this.opts.element.trigger(details);
  797. this.opts.element.data("select2-change-triggered", false);
  798. // some validation frameworks ignore the change event and listen instead to keyup, click for selects
  799. // so here we trigger the click event manually
  800. this.opts.element.click();
  801. // ValidationEngine ignorea the change event and listens instead to blur
  802. // so here we trigger the blur event manually if so desired
  803. if (this.opts.blurOnChange)
  804. this.opts.element.blur();
  805. },
  806. // abstract
  807. enable: function() {
  808. if (this.enabled) return;
  809. this.enabled=true;
  810. this.container.removeClass("select2-container-disabled");
  811. this.opts.element.removeAttr("disabled");
  812. },
  813. // abstract
  814. disable: function() {
  815. if (!this.enabled) return;
  816. this.close();
  817. this.enabled=false;
  818. this.container.addClass("select2-container-disabled");
  819. this.opts.element.attr("disabled", "disabled");
  820. },
  821. // abstract
  822. opened: function () {
  823. return this.container.hasClass("select2-dropdown-open");
  824. },
  825. // abstract
  826. positionDropdown: function() {
  827. var offset = this.container.offset(),
  828. height = this.container.outerHeight(false),
  829. width = this.container.outerWidth(false),
  830. dropHeight = this.dropdown.outerHeight(false),
  831. viewPortRight = $(window).scrollLeft() + $(window).width(),
  832. viewportBottom = $(window).scrollTop() + $(window).height(),
  833. dropTop = offset.top + height,
  834. dropLeft = offset.left,
  835. enoughRoomBelow = dropTop + dropHeight <= viewportBottom,
  836. enoughRoomAbove = (offset.top - dropHeight) >= this.body().scrollTop(),
  837. dropWidth = this.dropdown.outerWidth(false),
  838. enoughRoomOnRight = dropLeft + dropWidth <= viewPortRight,
  839. aboveNow = this.dropdown.hasClass("select2-drop-above"),
  840. bodyOffset,
  841. above,
  842. css;
  843. //console.log("below/ droptop:", dropTop, "dropHeight", dropHeight, "sum", (dropTop+dropHeight)+" viewport bottom", viewportBottom, "enough?", enoughRoomBelow);
  844. //console.log("above/ offset.top", offset.top, "dropHeight", dropHeight, "top", (offset.top-dropHeight), "scrollTop", this.body().scrollTop(), "enough?", enoughRoomAbove);
  845. // fix positioning when body has an offset and is not position: static
  846. if (this.body().css('position') !== 'static') {
  847. bodyOffset = this.body().offset();
  848. dropTop -= bodyOffset.top;
  849. dropLeft -= bodyOffset.left;
  850. }
  851. // always prefer the current above/below alignment, unless there is not enough room
  852. if (aboveNow) {
  853. above = true;
  854. if (!enoughRoomAbove && enoughRoomBelow) above = false;
  855. } else {
  856. above = false;
  857. if (!enoughRoomBelow && enoughRoomAbove) above = true;
  858. }
  859. if (!enoughRoomOnRight) {
  860. dropLeft = offset.left + width - dropWidth;
  861. }
  862. if (above) {
  863. dropTop = offset.top - dropHeight;
  864. this.container.addClass("select2-drop-above");
  865. this.dropdown.addClass("select2-drop-above");
  866. }
  867. else {
  868. this.container.removeClass("select2-drop-above");
  869. this.dropdown.removeClass("select2-drop-above");
  870. }
  871. css = $.extend({
  872. top: dropTop,
  873. left: dropLeft,
  874. width: width
  875. }, evaluate(this.opts.dropdownCss));
  876. this.dropdown.css(css);
  877. },
  878. // abstract
  879. shouldOpen: function() {
  880. var event;
  881. if (this.opened()) return false;
  882. event = $.Event("opening");
  883. this.opts.element.trigger(event);
  884. return !event.isDefaultPrevented();
  885. },
  886. // abstract
  887. clearDropdownAlignmentPreference: function() {
  888. // clear the classes used to figure out the preference of where the dropdown should be opened
  889. this.container.removeClass("select2-drop-above");
  890. this.dropdown.removeClass("select2-drop-above");
  891. },
  892. /**
  893. * Opens the dropdown
  894. *
  895. * @return {Boolean} whether or not dropdown was opened. This method will return false if, for example,
  896. * the dropdown is already open, or if the 'open' event listener on the element called preventDefault().
  897. */
  898. // abstract
  899. open: function () {
  900. if (!this.shouldOpen()) return false;
  901. window.setTimeout(this.bind(this.opening), 1);
  902. return true;
  903. },
  904. /**
  905. * Performs the opening of the dropdown
  906. */
  907. // abstract
  908. opening: function() {
  909. var cid = this.containerId,
  910. scroll = "scroll." + cid,
  911. resize = "resize."+cid,
  912. orient = "orientationchange."+cid,
  913. mask;
  914. this.clearDropdownAlignmentPreference();
  915. this.container.addClass("select2-dropdown-open").addClass("select2-container-active");
  916. if(this.dropdown[0] !== this.body().children().last()[0]) {
  917. this.dropdown.detach().appendTo(this.body());
  918. }
  919. this.updateResults(true);
  920. // create the dropdown mask if doesnt already exist
  921. mask = $("#select2-drop-mask");
  922. if (mask.length == 0) {
  923. mask = $(document.createElement("div"));
  924. mask.attr("id","select2-drop-mask").attr("class","select2-drop-mask");
  925. mask.hide();
  926. mask.appendTo(this.body());
  927. mask.bind("mousedown touchstart", function (e) {
  928. var dropdown = $("#select2-drop"), self;
  929. if (dropdown.length > 0) {
  930. self=dropdown.data("select2");
  931. if (self.opts.selectOnBlur) {
  932. self.selectHighlighted({noFocus: true});
  933. }
  934. self.close();
  935. }
  936. });
  937. }
  938. // ensure the mask is always right before the dropdown
  939. if (this.dropdown.prev()[0] !== mask[0]) {
  940. this.dropdown.before(mask);
  941. }
  942. // move the global id to the correct dropdown
  943. $("#select2-drop").removeAttr("id");
  944. this.dropdown.attr("id", "select2-drop");
  945. // show the elements
  946. mask.css({
  947. width: document.documentElement.scrollWidth,
  948. height: document.documentElement.scrollHeight});
  949. mask.show();
  950. this.dropdown.show();
  951. this.positionDropdown();
  952. this.dropdown.addClass("select2-drop-active");
  953. this.ensureHighlightVisible();
  954. // attach listeners to events that can change the position of the container and thus require
  955. // the position of the dropdown to be updated as well so it does not come unglued from the container
  956. var that = this;
  957. this.container.parents().add(window).each(function () {
  958. $(this).bind(resize+" "+scroll+" "+orient, function (e) {
  959. $("#select2-drop-mask").css({
  960. width:document.documentElement.scrollWidth,
  961. height:document.documentElement.scrollHeight});
  962. that.positionDropdown();
  963. });
  964. });
  965. this.focusSearch();
  966. },
  967. // abstract
  968. close: function () {
  969. if (!this.opened()) return;
  970. var cid = this.containerId,
  971. scroll = "scroll." + cid,
  972. resize = "resize."+cid,
  973. orient = "orientationchange."+cid;
  974. // unbind event listeners
  975. this.container.parents().add(window).each(function () { $(this).unbind(scroll).unbind(resize).unbind(orient); });
  976. this.clearDropdownAlignmentPreference();
  977. $("#select2-drop-mask").hide();
  978. this.dropdown.removeAttr("id"); // only the active dropdown has the select2-drop id
  979. this.dropdown.hide();
  980. this.container.removeClass("select2-dropdown-open");
  981. this.results.empty();
  982. this.clearSearch();
  983. this.opts.element.trigger($.Event("close"));
  984. },
  985. // abstract
  986. clearSearch: function () {
  987. },
  988. //abstract
  989. getMaximumSelectionSize: function() {
  990. return evaluate(this.opts.maximumSelectionSize);
  991. },
  992. // abstract
  993. ensureHighlightVisible: function () {
  994. var results = this.results, children, index, child, hb, rb, y, more;
  995. index = this.highlight();
  996. if (index < 0) return;
  997. if (index == 0) {
  998. // if the first element is highlighted scroll all the way to the top,
  999. // that way any unselectable headers above it will also be scrolled
  1000. // into view
  1001. results.scrollTop(0);
  1002. return;
  1003. }
  1004. children = this.findHighlightableChoices();
  1005. child = $(children[index]);
  1006. hb = child.offset().top + child.outerHeight(true);
  1007. // if this is the last child lets also make sure select2-more-results is visible
  1008. if (index === children.length - 1) {
  1009. more = results.find("li.select2-more-results");
  1010. if (more.length > 0) {
  1011. hb = more.offset().top + more.outerHeight(true);
  1012. }
  1013. }
  1014. rb = results.offset().top + results.outerHeight(true);
  1015. if (hb > rb) {
  1016. results.scrollTop(results.scrollTop() + (hb - rb));
  1017. }
  1018. y = child.offset().top - results.offset().top;
  1019. // make sure the top of the element is visible
  1020. if (y < 0 && child.css('display') != 'none' ) {
  1021. results.scrollTop(results.scrollTop() + y); // y is negative
  1022. }
  1023. },
  1024. // abstract
  1025. findHighlightableChoices: function() {
  1026. var h=this.results.find(".select2-result-selectable:not(.select2-selected):not(.select2-disabled)");
  1027. return this.results.find(".select2-result-selectable:not(.select2-selected):not(.select2-disabled)");
  1028. },
  1029. // abstract
  1030. moveHighlight: function (delta) {
  1031. var choices = this.findHighlightableChoices(),
  1032. index = this.highlight();
  1033. while (index > -1 && index < choices.length) {
  1034. index += delta;
  1035. var choice = $(choices[index]);
  1036. if (choice.hasClass("select2-result-selectable") && !choice.hasClass("select2-disabled") && !choice.hasClass("select2-selected")) {
  1037. this.highlight(index);
  1038. break;
  1039. }
  1040. }
  1041. },
  1042. // abstract
  1043. highlight: function (index) {
  1044. var choices = this.findHighlightableChoices(),
  1045. choice,
  1046. data;
  1047. if (arguments.length === 0) {
  1048. return indexOf(choices.filter(".select2-highlighted")[0], choices.get());
  1049. }
  1050. if (index >= choices.length) index = choices.length - 1;
  1051. if (index < 0) index = 0;
  1052. this.results.find(".select2-highlighted").removeClass("select2-highlighted");
  1053. choice = $(choices[index]);
  1054. choice.addClass("select2-highlighted");
  1055. this.ensureHighlightVisible();
  1056. data = choice.data("select2-data");
  1057. if (data) {
  1058. this.opts.element.trigger({ type: "highlight", val: this.id(data), choice: data });
  1059. }
  1060. },
  1061. // abstract
  1062. countSelectableResults: function() {
  1063. return this.findHighlightableChoices().length;
  1064. },
  1065. // abstract
  1066. highlightUnderEvent: function (event) {
  1067. var el = $(event.target).closest(".select2-result-selectable");
  1068. if (el.length > 0 && !el.is(".select2-highlighted")) {
  1069. var choices = this.findHighlightableChoices();
  1070. this.highlight(choices.index(el));
  1071. } else if (el.length == 0) {
  1072. // if we are over an unselectable item remove al highlights
  1073. this.results.find(".select2-highlighted").removeClass("select2-highlighted");
  1074. }
  1075. },
  1076. // abstract
  1077. loadMoreIfNeeded: function () {
  1078. var results = this.results,
  1079. more = results.find("li.select2-more-results"),
  1080. below, // pixels the element is below the scroll fold, below==0 is when the element is starting to be visible
  1081. offset = -1, // index of first element without data
  1082. page = this.resultsPage + 1,
  1083. self=this,
  1084. term=this.search.val(),
  1085. context=this.context;
  1086. if (more.length === 0) return;
  1087. below = more.offset().top - results.offset().top - results.height();
  1088. if (below <= this.opts.loadMorePadding) {
  1089. more.addClass("select2-active");
  1090. this.opts.query({
  1091. element: this.opts.element,
  1092. term: term,
  1093. page: page,
  1094. context: context,
  1095. matcher: this.opts.matcher,
  1096. callback: this.bind(function (data) {
  1097. // ignore a response if the select2 has been closed before it was received
  1098. if (!self.opened()) return;
  1099. self.opts.populateResults.call(this, results, data.results, {term: term, page: page, context:context});
  1100. if (data.more===true) {
  1101. more.detach().appendTo(results).text(self.opts.formatLoadMore(page+1));
  1102. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  1103. } else {
  1104. more.remove();
  1105. }
  1106. self.positionDropdown();
  1107. self.resultsPage = page;
  1108. self.context = data.context;
  1109. })});
  1110. }
  1111. },
  1112. /**
  1113. * Default tokenizer function which does nothing
  1114. */
  1115. tokenize: function() {
  1116. },
  1117. /**
  1118. * @param initial whether or not this is the call to this method right after the dropdown has been opened
  1119. */
  1120. // abstract
  1121. updateResults: function (initial) {
  1122. var search = this.search, results = this.results, opts = this.opts, data, self=this, input;
  1123. // if the search is currently hidden we do not alter the results
  1124. if (initial !== true && (this.showSearchInput === false || !this.opened())) {
  1125. return;
  1126. }
  1127. search.addClass("select2-active");
  1128. function postRender() {
  1129. results.scrollTop(0);
  1130. search.removeClass("select2-active");
  1131. self.positionDropdown();
  1132. }
  1133. function render(html) {
  1134. results.html(html);
  1135. postRender();
  1136. }
  1137. var maxSelSize = this.getMaximumSelectionSize();
  1138. if (maxSelSize >=1) {
  1139. data = this.data();
  1140. if ($.isArray(data) && data.length >= maxSelSize && checkFormatter(opts.formatSelectionTooBig, "formatSelectionTooBig")) {
  1141. render("<li class='select2-selection-limit'>" + opts.formatSelectionTooBig(maxSelSize) + "</li>");
  1142. return;
  1143. }
  1144. }
  1145. if (search.val().length < opts.minimumInputLength) {
  1146. if (checkFormatter(opts.formatInputTooShort, "formatInputTooShort")) {
  1147. render("<li class='select2-no-results'>" + opts.formatInputTooShort(search.val(), opts.minimumInputLength) + "</li>");
  1148. } else {
  1149. render("");
  1150. }
  1151. return;
  1152. }
  1153. else if (opts.formatSearching() && initial===true) {
  1154. render("<li class='select2-searching'>" + opts.formatSearching() + "</li>");
  1155. }
  1156. if (opts.maximumInputLength && search.val().length > opts.maximumInputLength) {
  1157. if (checkFormatter(opts.formatInputTooLong, "formatInputTooLong")) {
  1158. render("<li class='select2-no-results'>" + opts.formatInputTooLong(search.val(), opts.maximumInputLength) + "</li>");
  1159. } else {
  1160. render("");
  1161. }
  1162. return;
  1163. }
  1164. // give the tokenizer a chance to pre-process the input
  1165. input = this.tokenize();
  1166. if (input != undefined && input != null) {
  1167. search.val(input);
  1168. }
  1169. this.resultsPage = 1;
  1170. opts.query({
  1171. element: opts.element,
  1172. term: search.val(),
  1173. page: this.resultsPage,
  1174. context: null,
  1175. matcher: opts.matcher,
  1176. callback: this.bind(function (data) {
  1177. var def; // default choice
  1178. // ignore a response if the select2 has been closed before it was received
  1179. if (!this.opened()) return;
  1180. // save context, if any
  1181. this.context = (data.context===undefined) ? null : data.context;
  1182. // create a default choice and prepend it to the list
  1183. if (this.opts.createSearchChoice && search.val() !== "") {
  1184. def = this.opts.createSearchChoice.call(null, search.val(), data.results);
  1185. if (def !== undefined && def !== null && self.id(def) !== undefined && self.id(def) !== null) {
  1186. if ($(data.results).filter(
  1187. function () {
  1188. return equal(self.id(this), self.id(def));
  1189. }).length === 0) {
  1190. data.results.unshift(def);
  1191. }
  1192. }
  1193. }
  1194. if (data.results.length === 0 && checkFormatter(opts.formatNoMatches, "formatNoMatches")) {
  1195. render("<li class='select2-no-results'>" + opts.formatNoMatches(search.val()) + "</li>");
  1196. return;
  1197. }
  1198. results.empty();
  1199. self.opts.populateResults.call(this, results, data.results, {term: search.val(), page: this.resultsPage, context:null});
  1200. if (data.more === true && checkFormatter(opts.formatLoadMore, "formatLoadMore")) {
  1201. results.append("<li class='select2-more-results'>" + self.opts.escapeMarkup(opts.formatLoadMore(this.resultsPage)) + "</li>");
  1202. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  1203. }
  1204. this.postprocessResults(data, initial);
  1205. postRender();
  1206. })});
  1207. },
  1208. // abstract
  1209. cancel: function () {
  1210. this.close();
  1211. },
  1212. // abstract
  1213. blur: function () {
  1214. // if selectOnBlur == true, select the currently highlighted option
  1215. if (this.opts.selectOnBlur)
  1216. this.selectHighlighted({noFocus: true});
  1217. this.close();
  1218. this.container.removeClass("select2-container-active");
  1219. // synonymous to .is(':focus'), which is available in jquery >= 1.6
  1220. if (this.search[0] === document.activeElement) { this.search.blur(); }
  1221. this.clearSearch();
  1222. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1223. },
  1224. // abstract
  1225. focusSearch: function () {
  1226. focus(this.search);
  1227. },
  1228. // abstract
  1229. selectHighlighted: function (options) {
  1230. var index=this.highlight(),
  1231. highlighted=this.results.find(".select2-highlighted"),
  1232. data = highlighted.closest('.select2-result').data("select2-data");
  1233. if (data) {
  1234. this.highlight(index);
  1235. this.onSelect(data, options);
  1236. }
  1237. },
  1238. // abstract
  1239. getPlaceholder: function () {
  1240. return this.opts.element.attr("placeholder") ||
  1241. this.opts.element.attr("data-placeholder") || // jquery 1.4 compat
  1242. this.opts.element.data("placeholder") ||
  1243. this.opts.placeholder;
  1244. },
  1245. /**
  1246. * Get the desired width for the container element. This is
  1247. * derived first from option `width` passed to select2, then
  1248. * the inline 'style' on the original element, and finally
  1249. * falls back to the jQuery calculated element width.
  1250. */
  1251. // abstract
  1252. initContainerWidth: function () {
  1253. function resolveContainerWidth() {
  1254. var style, attrs, matches, i, l;
  1255. if (this.opts.width === "off") {
  1256. return null;
  1257. } else if (this.opts.width === "element"){
  1258. return this.opts.element.outerWidth(false) === 0 ? 'auto' : this.opts.element.outerWidth(false) + 'px';
  1259. } else if (this.opts.width === "copy" || this.opts.width === "resolve") {
  1260. // check if there is inline style on the element that contains width
  1261. style = this.opts.element.attr('style');
  1262. if (style !== undefined) {
  1263. attrs = style.split(';');
  1264. for (i = 0, l = attrs.length; i < l; i = i + 1) {
  1265. matches = attrs[i].replace(/\s/g, '')
  1266. .match(/width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/);
  1267. if (matches !== null && matches.length >= 1)
  1268. return matches[1];
  1269. }
  1270. }
  1271. if (this.opts.width === "resolve") {
  1272. // next check if css('width') can resolve a width that is percent based, this is sometimes possible
  1273. // when attached to input type=hidden or elements hidden via css
  1274. style = this.opts.element.css('width');
  1275. if (style.indexOf("%") > 0) return style;
  1276. // finally, fallback on the calculated width of the element
  1277. return (this.opts.element.outerWidth(false) === 0 ? 'auto' : this.opts.element.outerWidth(false) + 'px');
  1278. }
  1279. return null;
  1280. } else if ($.isFunction(this.opts.width)) {
  1281. return this.opts.width();
  1282. } else {
  1283. return this.opts.width;
  1284. }
  1285. };
  1286. var width = resolveContainerWidth.call(this);
  1287. if (width !== null) {
  1288. this.container.css("width", width);
  1289. }
  1290. }
  1291. });
  1292. SingleSelect2 = clazz(AbstractSelect2, {
  1293. // single
  1294. createContainer: function () {
  1295. var container = $(document.createElement("div")).attr({
  1296. "class": "select2-container"
  1297. }).html([
  1298. "<a href='javascript:void(0)' onclick='return false;' class='select2-choice' tabindex='-1'>",
  1299. " <span></span><abbr class='select2-search-choice-close' style='display:none;'></abbr>",
  1300. " <div><b></b></div>" ,
  1301. "</a>",
  1302. "<input class='select2-focusser select2-offscreen' type='text'/>",
  1303. "<div class='select2-drop' style='display:none'>" ,
  1304. " <div class='select2-search'>" ,
  1305. " <input type='text' autocomplete='off' class='select2-input'/>" ,
  1306. " </div>" ,
  1307. " <ul class='select2-results'>" ,
  1308. " </ul>" ,
  1309. "</div>"].join(""));
  1310. return container;
  1311. },
  1312. // single
  1313. disable: function() {
  1314. if (!this.enabled) return;
  1315. this.parent.disable.apply(this, arguments);
  1316. this.focusser.attr("disabled", "disabled");
  1317. },
  1318. // single
  1319. enable: function() {
  1320. if (this.enabled) return;
  1321. this.parent.enable.apply(this, arguments);
  1322. this.focusser.removeAttr("disabled");
  1323. },
  1324. // single
  1325. opening: function () {
  1326. this.parent.opening.apply(this, arguments);
  1327. this.focusser.attr("disabled", "disabled");
  1328. this.opts.element.trigger($.Event("open"));
  1329. },
  1330. // single
  1331. close: function () {
  1332. if (!this.opened()) return;
  1333. this.parent.close.apply(this, arguments);
  1334. this.focusser.removeAttr("disabled");
  1335. focus(this.focusser);
  1336. },
  1337. // single
  1338. focus: function () {
  1339. if (this.opened()) {
  1340. this.close();
  1341. } else {
  1342. this.focusser.removeAttr("disabled");
  1343. this.focusser.focus();
  1344. }
  1345. },
  1346. // single
  1347. isFocused: function () {
  1348. return this.container.hasClass("select2-container-active");
  1349. },
  1350. // single
  1351. cancel: function () {
  1352. this.parent.cancel.apply(this, arguments);
  1353. this.focusser.removeAttr("disabled");
  1354. this.focusser.focus();
  1355. },
  1356. // single
  1357. initContainer: function () {
  1358. var selection,
  1359. container = this.container,
  1360. dropdown = this.dropdown,
  1361. clickingInside = false;
  1362. this.showSearch(this.opts.minimumResultsForSearch >= 0);
  1363. this.selection = selection = container.find(".select2-choice");
  1364. this.focusser = container.find(".select2-focusser");
  1365. this.search.bind("keydown", this.bind(function (e) {
  1366. if (!this.enabled) return;
  1367. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1368. // prevent the page from scrolling
  1369. killEvent(e);
  1370. return;
  1371. }
  1372. switch (e.which) {
  1373. case KEY.UP:
  1374. case KEY.DOWN:
  1375. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1376. killEvent(e);
  1377. return;
  1378. case KEY.TAB:
  1379. case KEY.ENTER:
  1380. this.selectHighlighted();
  1381. killEvent(e);
  1382. return;
  1383. case KEY.ESC:
  1384. this.cancel(e);
  1385. killEvent(e);
  1386. return;
  1387. }
  1388. }));
  1389. this.focusser.bind("keydown", this.bind(function (e) {
  1390. if (!this.enabled) return;
  1391. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) {
  1392. return;
  1393. }
  1394. if (this.opts.openOnEnter === false && e.which === KEY.ENTER) {
  1395. killEvent(e);
  1396. return;
  1397. }
  1398. if (e.which == KEY.DOWN || e.which == KEY.UP
  1399. || (e.which == KEY.ENTER && this.opts.openOnEnter)) {
  1400. this.open();
  1401. killEvent(e);
  1402. return;
  1403. }
  1404. if (e.which == KEY.DELETE || e.which == KEY.BACKSPACE) {
  1405. if (this.opts.allowClear) {
  1406. this.clear();
  1407. }
  1408. killEvent(e);
  1409. return;
  1410. }
  1411. }));
  1412. installKeyUpChangeEvent(this.focusser);
  1413. this.focusser.bind("keyup-change input", this.bind(function(e) {
  1414. if (this.opened()) return;
  1415. this.open();
  1416. if (this.showSearchInput !== false) {
  1417. this.search.val(this.focusser.val());
  1418. }
  1419. this.focusser.val("");
  1420. killEvent(e);
  1421. }));
  1422. selection.delegate("abbr", "mousedown", this.bind(function (e) {
  1423. if (!this.enabled) return;
  1424. this.clear();
  1425. killEventImmediately(e);
  1426. this.close();
  1427. this.selection.focus();
  1428. }));
  1429. selection.bind("mousedown", this.bind(function (e) {
  1430. clickingInside = true;
  1431. if (this.opened()) {
  1432. this.close();
  1433. } else if (this.enabled) {
  1434. this.open();
  1435. }
  1436. killEvent(e);
  1437. clickingInside = false;
  1438. }));
  1439. dropdown.bind("mousedown", this.bind(function() { this.search.focus(); }));
  1440. selection.bind("focus", this.bind(function(e) {
  1441. killEvent(e);
  1442. }));
  1443. this.focusser.bind("focus", this.bind(function(){
  1444. this.container.addClass("select2-container-active");
  1445. })).bind("blur", this.bind(function() {
  1446. if (!this.opened()) {
  1447. this.container.removeClass("select2-container-active");
  1448. }
  1449. }));
  1450. this.search.bind("focus", this.bind(function(){
  1451. this.container.addClass("select2-container-active");
  1452. }))
  1453. this.initContainerWidth();
  1454. this.setPlaceholder();
  1455. },
  1456. // single
  1457. clear: function(triggerChange) {
  1458. var data=this.selection.data("select2-data");
  1459. if (data) { // guard against queued quick consecutive clicks
  1460. this.opts.element.val("");
  1461. this.selection.find("span").empty();
  1462. this.selection.removeData("select2-data");
  1463. this.setPlaceholder();
  1464. if (triggerChange !== false){
  1465. this.opts.element.trigger({ type: "removed", val: this.id(data), choice: data });
  1466. this.triggerChange({removed:data});
  1467. }
  1468. }
  1469. },
  1470. /**
  1471. * Sets selection based on source element's value
  1472. */
  1473. // single
  1474. initSelection: function () {
  1475. var selected;
  1476. if (this.opts.element.val() === "" && this.opts.element.text() === "") {
  1477. this.close();
  1478. this.setPlaceholder();
  1479. } else {
  1480. var self = this;
  1481. this.opts.initSelection.call(null, this.opts.element, function(selected){
  1482. if (selected !== undefined && selected !== null) {
  1483. self.updateSelection(selected);
  1484. self.close();
  1485. self.setPlaceholder();
  1486. }
  1487. });
  1488. }
  1489. },
  1490. // single
  1491. prepareOpts: function () {
  1492. var opts = this.parent.prepareOpts.apply(this, arguments);
  1493. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1494. // install the selection initializer
  1495. opts.initSelection = function (element, callback) {
  1496. var selected = element.find(":selected");
  1497. // a single select box always has a value, no need to null check 'selected'
  1498. if ($.isFunction(callback))
  1499. callback({id: selected.attr("value"), text: selected.text(), element:selected});
  1500. };
  1501. } else if ("data" in opts) {
  1502. // install default initSelection when applied to hidden input and data is local
  1503. opts.initSelection = opts.initSelection || function (element, callback) {
  1504. var id = element.val();
  1505. //search in data by id
  1506. opts.query({
  1507. matcher: function(term, text, el){
  1508. return equal(id, opts.id(el));
  1509. },
  1510. callback: !$.isFunction(callback) ? $.noop : function(filtered) {
  1511. callback(filtered.results.length ? filtered.results[0] : null);
  1512. }
  1513. });
  1514. };
  1515. }
  1516. return opts;
  1517. },
  1518. // single
  1519. getPlaceholder: function() {
  1520. // if a placeholder is specified on a single select without the first empty option ignore it
  1521. if (this.select) {
  1522. if (this.select.find("option").first().text() !== "") {
  1523. return undefined;
  1524. }
  1525. }
  1526. return this.parent.getPlaceholder.apply(this, arguments);
  1527. },
  1528. // single
  1529. setPlaceholder: function () {
  1530. var placeholder = this.getPlaceholder();
  1531. if (this.opts.element.val() === "" && placeholder !== undefined) {
  1532. // check for a first blank option if attached to a select
  1533. if (this.select && this.select.find("option:first").text() !== "") return;
  1534. this.selection.find("span").html(this.opts.escapeMarkup(placeholder));
  1535. this.selection.addClass("select2-default");
  1536. this.selection.find("abbr").hide();
  1537. }
  1538. },
  1539. // single
  1540. postprocessResults: function (data, initial) {
  1541. var selected = 0, self = this, showSearchInput = true;
  1542. // find the selected element in the result list
  1543. this.findHighlightableChoices().each2(function (i, elm) {
  1544. if (equal(self.id(elm.data("select2-data")), self.opts.element.val())) {
  1545. selected = i;
  1546. return false;
  1547. }
  1548. });
  1549. // and highlight it
  1550. this.highlight(selected);
  1551. // hide the search box if this is the first we got the results and there are a few of them
  1552. if (initial === true) {
  1553. var min=this.opts.minimumResultsForSearch;
  1554. showSearchInput = min < 0 ? false : countResults(data.results) >= min;
  1555. this.showSearch(showSearchInput);
  1556. }
  1557. },
  1558. // single
  1559. showSearch: function(showSearchInput) {
  1560. this.showSearchInput = showSearchInput;
  1561. this.dropdown.find(".select2-search")[showSearchInput ? "removeClass" : "addClass"]("select2-search-hidden");
  1562. //add "select2-with-searchbox" to the container if search box is shown
  1563. $(this.dropdown, this.container)[showSearchInput ? "addClass" : "removeClass"]("select2-with-searchbox");
  1564. },
  1565. // single
  1566. onSelect: function (data, options) {
  1567. var old = this.opts.element.val();
  1568. this.opts.element.val(this.id(data));
  1569. this.updateSelection(data);
  1570. this.opts.element.trigger({ type: "selected", val: this.id(data), choice: data });
  1571. this.close();
  1572. if (!options || !options.noFocus)
  1573. this.selection.focus();
  1574. if (!equal(old, this.id(data))) { this.triggerChange(); }
  1575. },
  1576. // single
  1577. updateSelection: function (data) {
  1578. var container=this.selection.find("span"), formatted;
  1579. this.selection.data("select2-data", data);
  1580. container.empty();
  1581. formatted=this.opts.formatSelection(data, container);
  1582. if (formatted !== undefined) {
  1583. container.append(this.opts.escapeMarkup(formatted));
  1584. }
  1585. this.selection.removeClass("select2-default");
  1586. if (this.opts.allowClear && this.getPlaceholder() !== undefined) {
  1587. this.selection.find("abbr").show();
  1588. }
  1589. },
  1590. // single
  1591. val: function () {
  1592. var val, triggerChange = false, data = null, self = this;
  1593. if (arguments.length === 0) {
  1594. return this.opts.element.val();
  1595. }
  1596. val = arguments[0];
  1597. if (arguments.length > 1) {
  1598. triggerChange = arguments[1];
  1599. }
  1600. if (this.select) {
  1601. this.select
  1602. .val(val)
  1603. .find(":selected").each2(function (i, elm) {
  1604. data = {id: elm.attr("value"), text: elm.text()};
  1605. return false;
  1606. });
  1607. this.updateSelection(data);
  1608. this.setPlaceholder();
  1609. if (triggerChange) {
  1610. this.triggerChange();
  1611. }
  1612. } else {
  1613. if (this.opts.initSelection === undefined) {
  1614. throw new Error("cannot call val() if initSelection() is not defined");
  1615. }
  1616. // val is an id. !val is true for [undefined,null,'',0] - 0 is legal
  1617. if (!val && val !== 0) {
  1618. this.clear(triggerChange);
  1619. if (triggerChange) {
  1620. this.triggerChange();
  1621. }
  1622. return;
  1623. }
  1624. this.opts.element.val(val);
  1625. this.opts.initSelection(this.opts.element, function(data){
  1626. self.opts.element.val(!data ? "" : self.id(data));
  1627. self.updateSelection(data);
  1628. self.setPlaceholder();
  1629. if (triggerChange) {
  1630. self.triggerChange();
  1631. }
  1632. });
  1633. }
  1634. },
  1635. // single
  1636. clearSearch: function () {
  1637. this.search.val("");
  1638. this.focusser.val("");
  1639. },
  1640. // single
  1641. data: function(value) {
  1642. var data;
  1643. if (arguments.length === 0) {
  1644. data = this.selection.data("select2-data");
  1645. if (data == undefined) data = null;
  1646. return data;
  1647. } else {
  1648. if (!value || value === "") {
  1649. this.clear();
  1650. } else {
  1651. this.opts.element.val(!value ? "" : this.id(value));
  1652. this.updateSelection(value);
  1653. }
  1654. }
  1655. }
  1656. });
  1657. MultiSelect2 = clazz(AbstractSelect2, {
  1658. // multi
  1659. createContainer: function () {
  1660. var container = $(document.createElement("div")).attr({
  1661. "class": "select2-container select2-container-multi"
  1662. }).html([
  1663. " <ul class='select2-choices'>",
  1664. //"<li class='select2-search-choice'><span>California</span><a href="javascript:void(0)" class="select2-search-choice-close"></a></li>" ,
  1665. " <li class='select2-search-field'>" ,
  1666. " <input type='text' autocomplete='off' class='select2-input'>" ,
  1667. " </li>" ,
  1668. "</ul>" ,
  1669. "<div class='select2-drop select2-drop-multi' style='display:none;'>" ,
  1670. " <ul class='select2-results'>" ,
  1671. " </ul>" ,
  1672. "</div>"].join(""));
  1673. return container;
  1674. },
  1675. // multi
  1676. prepareOpts: function () {
  1677. var opts = this.parent.prepareOpts.apply(this, arguments);
  1678. // TODO validate placeholder is a string if specified
  1679. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1680. // install sthe selection initializer
  1681. opts.initSelection = function (element, callback) {
  1682. var data = [];
  1683. element.find(":selected").each2(function (i, elm) {
  1684. data.push({id: elm.attr("value"), text: elm.text(), element: elm[0]});
  1685. });
  1686. callback(data);
  1687. };
  1688. } else if ("data" in opts) {
  1689. // install default initSelection when applied to hidden input and data is local
  1690. opts.initSelection = opts.initSelection || function (element, callback) {
  1691. var ids = splitVal(element.val(), opts.separator);
  1692. //search in data by array of ids
  1693. opts.query({
  1694. matcher: function(term, text, el){
  1695. return $.grep(ids, function(id) {
  1696. return equal(id, opts.id(el));
  1697. }).length;
  1698. },
  1699. callback: !$.isFunction(callback) ? $.noop : function(filtered) {
  1700. callback(filtered.results);
  1701. }
  1702. });
  1703. };
  1704. }
  1705. return opts;
  1706. },
  1707. // multi
  1708. initContainer: function () {
  1709. var selector = ".select2-choices", selection;
  1710. this.searchContainer = this.container.find(".select2-search-field");
  1711. this.selection = selection = this.container.find(selector);
  1712. this.search.bind("input paste", this.bind(function() {
  1713. if (!this.enabled) return;
  1714. if (!this.opened()) {
  1715. this.open();
  1716. }
  1717. }));
  1718. this.search.bind("keydown", this.bind(function (e) {
  1719. if (!this.enabled) return;
  1720. if (e.which === KEY.BACKSPACE && this.search.val() === "") {
  1721. this.close();
  1722. var choices,
  1723. selected = selection.find(".select2-search-choice-focus");
  1724. if (selected.length > 0) {
  1725. this.unselect(selected.first());
  1726. this.search.width(10);
  1727. killEvent(e);
  1728. return;
  1729. }
  1730. choices = selection.find(".select2-search-choice:not(.select2-locked)");
  1731. if (choices.length > 0) {
  1732. choices.last().addClass("select2-search-choice-focus");
  1733. }
  1734. } else {
  1735. selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1736. }
  1737. if (this.opened()) {
  1738. switch (e.which) {
  1739. case KEY.UP:
  1740. case KEY.DOWN:
  1741. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1742. killEvent(e);
  1743. return;
  1744. case KEY.ENTER:
  1745. case KEY.TAB:
  1746. this.selectHighlighted();
  1747. killEvent(e);
  1748. return;
  1749. case KEY.ESC:
  1750. this.cancel(e);
  1751. killEvent(e);
  1752. return;
  1753. }
  1754. }
  1755. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e)
  1756. || e.which === KEY.BACKSPACE || e.which === KEY.ESC) {
  1757. return;
  1758. }
  1759. if (e.which === KEY.ENTER) {
  1760. if (this.opts.openOnEnter === false) {
  1761. return;
  1762. } else if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) {
  1763. return;
  1764. }
  1765. }
  1766. this.open();
  1767. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1768. // prevent the page from scrolling
  1769. killEvent(e);
  1770. }
  1771. }));
  1772. this.search.bind("keyup", this.bind(this.resizeSearch));
  1773. this.search.bind("blur", this.bind(function(e) {
  1774. this.container.removeClass("select2-container-active");
  1775. this.search.removeClass("select2-focused");
  1776. if (!this.opened()) this.clearSearch();
  1777. e.stopImmediatePropagation();
  1778. }));
  1779. this.container.delegate(selector, "mousedown", this.bind(function (e) {
  1780. if (!this.enabled) return;
  1781. if ($(e.target).closest(".select2-search-choice").length > 0) {
  1782. // clicked inside a select2 search choice, do not open
  1783. return;
  1784. }
  1785. this.clearPlaceholder();
  1786. this.open();
  1787. this.focusSearch();
  1788. e.preventDefault();
  1789. }));
  1790. this.container.delegate(selector, "focus", this.bind(function () {
  1791. if (!this.enabled) return;
  1792. this.container.addClass("select2-container-active");
  1793. this.dropdown.addClass("select2-drop-active");
  1794. this.clearPlaceholder();
  1795. }));
  1796. this.initContainerWidth();
  1797. // set the placeholder if necessary
  1798. this.clearSearch();
  1799. },
  1800. // multi
  1801. enable: function() {
  1802. if (this.enabled) return;
  1803. this.parent.enable.apply(this, arguments);
  1804. this.search.removeAttr("disabled");
  1805. },
  1806. // multi
  1807. disable: function() {
  1808. if (!this.enabled) return;
  1809. this.parent.disable.apply(this, arguments);
  1810. this.search.attr("disabled", true);
  1811. },
  1812. // multi
  1813. initSelection: function () {
  1814. var data;
  1815. if (this.opts.element.val() === "" && this.opts.element.text() === "") {
  1816. this.updateSelection([]);
  1817. this.close();
  1818. // set the placeholder if necessary
  1819. this.clearSearch();
  1820. }
  1821. if (this.select || this.opts.element.val() !== "") {
  1822. var self = this;
  1823. this.opts.initSelection.call(null, this.opts.element, function(data){
  1824. if (data !== undefined && data !== null) {
  1825. self.updateSelection(data);
  1826. self.close();
  1827. // set the placeholder if necessary
  1828. self.clearSearch();
  1829. }
  1830. });
  1831. }
  1832. },
  1833. // multi
  1834. clearSearch: function () {
  1835. var placeholder = this.getPlaceholder();
  1836. if (placeholder !== undefined && this.getVal().length === 0 && this.search.hasClass("select2-focused") === false) {
  1837. this.search.val(placeholder).addClass("select2-default");
  1838. // stretch the search box to full width of the container so as much of the placeholder is visible as possible
  1839. this.resizeSearch();
  1840. } else {
  1841. this.search.val("").width(10);
  1842. }
  1843. },
  1844. // multi
  1845. clearPlaceholder: function () {
  1846. if (this.search.hasClass("select2-default")) {
  1847. this.search.val("").removeClass("select2-default");
  1848. }
  1849. },
  1850. // multi
  1851. opening: function () {
  1852. this.parent.opening.apply(this, arguments);
  1853. this.clearPlaceholder();
  1854. this.resizeSearch();
  1855. this.focusSearch();
  1856. this.opts.element.trigger($.Event("open"));
  1857. },
  1858. // multi
  1859. close: function () {
  1860. if (!this.opened()) return;
  1861. this.parent.close.apply(this, arguments);
  1862. },
  1863. // multi
  1864. focus: function () {
  1865. this.close();
  1866. this.search.focus();
  1867. this.opts.element.triggerHandler("focus");
  1868. },
  1869. // multi
  1870. isFocused: function () {
  1871. return this.search.hasClass("select2-focused");
  1872. },
  1873. // multi
  1874. updateSelection: function (data) {
  1875. var ids = [], filtered = [], self = this;
  1876. // filter out duplicates
  1877. $(data).each(function () {
  1878. if (indexOf(self.id(this), ids) < 0) {
  1879. ids.push(self.id(this));
  1880. filtered.push(this);
  1881. }
  1882. });
  1883. data = filtered;
  1884. this.selection.find(".select2-search-choice").remove();
  1885. $(data).each(function () {
  1886. self.addSelectedChoice(this);
  1887. });
  1888. self.postprocessResults();
  1889. },
  1890. tokenize: function() {
  1891. var input = this.search.val();
  1892. input = this.opts.tokenizer(input, this.data(), this.bind(this.onSelect), this.opts);
  1893. if (input != null && input != undefined) {
  1894. this.search.val(input);
  1895. if (input.length > 0) {
  1896. this.open();
  1897. }
  1898. }
  1899. },
  1900. // multi
  1901. onSelect: function (data, options) {
  1902. this.addSelectedChoice(data);
  1903. this.opts.element.trigger({ type: "selected", val: this.id(data), choice: data });
  1904. if (this.select || !this.opts.closeOnSelect) this.postprocessResults();
  1905. if (this.opts.closeOnSelect) {
  1906. this.close();
  1907. this.search.width(10);
  1908. } else {
  1909. if (this.countSelectableResults()>0) {
  1910. this.search.width(10);
  1911. this.resizeSearch();
  1912. if (this.val().length >= this.getMaximumSelectionSize()) {
  1913. // if we reached max selection size repaint the results so choices
  1914. // are replaced with the max selection reached message
  1915. this.updateResults(true);
  1916. }
  1917. this.positionDropdown();
  1918. } else {
  1919. // if nothing left to select close
  1920. this.close();
  1921. this.search.width(10);
  1922. }
  1923. }
  1924. // since its not possible to select an element that has already been
  1925. // added we do not need to check if this is a new element before firing change
  1926. this.triggerChange({ added: data });
  1927. if (!options || !options.noFocus)
  1928. this.focusSearch();
  1929. },
  1930. // multi
  1931. cancel: function () {
  1932. this.close();
  1933. this.focusSearch();
  1934. },
  1935. addSelectedChoice: function (data) {
  1936. var enableChoice = !data.locked,
  1937. enabledItem = $(
  1938. "<li class='select2-search-choice'>" +
  1939. " <div></div>" +
  1940. " <a href='#' onclick='return false;' class='select2-search-choice-close' tabindex='-1'></a>" +
  1941. "</li>"),
  1942. disabledItem = $(
  1943. "<li class='select2-search-choice select2-locked'>" +
  1944. "<div></div>" +
  1945. "</li>");
  1946. var choice = enableChoice ? enabledItem : disabledItem,
  1947. id = this.id(data),
  1948. val = this.getVal(),
  1949. formatted;
  1950. formatted=this.opts.formatSelection(data, choice.find("div"));
  1951. if (formatted != undefined) {
  1952. choice.find("div").replaceWith("<div>"+this.opts.escapeMarkup(formatted)+"</div>");
  1953. }
  1954. if(enableChoice){
  1955. choice.find(".select2-search-choice-close")
  1956. .bind("mousedown", killEvent)
  1957. .bind("click dblclick", this.bind(function (e) {
  1958. if (!this.enabled) return;
  1959. $(e.target).closest(".select2-search-choice").fadeOut('fast', this.bind(function(){
  1960. this.unselect($(e.target));
  1961. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1962. this.close();
  1963. this.focusSearch();
  1964. })).dequeue();
  1965. killEvent(e);
  1966. })).bind("focus", this.bind(function () {
  1967. if (!this.enabled) return;
  1968. this.container.addClass("select2-container-active");
  1969. this.dropdown.addClass("select2-drop-active");
  1970. }));
  1971. }
  1972. choice.data("select2-data", data);
  1973. choice.insertBefore(this.searchContainer);
  1974. val.push(id);
  1975. this.setVal(val);
  1976. },
  1977. // multi
  1978. unselect: function (selected) {
  1979. var val = this.getVal(),
  1980. data,
  1981. index;
  1982. selected = selected.closest(".select2-search-choice");
  1983. if (selected.length === 0) {
  1984. throw "Invalid argument: " + selected + ". Must be .select2-search-choice";
  1985. }
  1986. data = selected.data("select2-data");
  1987. if (!data) {
  1988. // prevent a race condition when the 'x' is clicked really fast repeatedly the event can be queued
  1989. // and invoked on an element already removed
  1990. return;
  1991. }
  1992. index = indexOf(this.id(data), val);
  1993. if (index >= 0) {
  1994. val.splice(index, 1);
  1995. this.setVal(val);
  1996. if (this.select) this.postprocessResults();
  1997. }
  1998. selected.remove();
  1999. this.opts.element.trigger({ type: "removed", val: this.id(data), choice: data });
  2000. this.triggerChange({ removed: data });
  2001. },
  2002. // multi
  2003. postprocessResults: function () {
  2004. var val = this.getVal(),
  2005. choices = this.results.find(".select2-result"),
  2006. compound = this.results.find(".select2-result-with-children"),
  2007. self = this;
  2008. choices.each2(function (i, choice) {
  2009. var id = self.id(choice.data("select2-data"));
  2010. if (indexOf(id, val) >= 0) {
  2011. choice.addClass("select2-selected");
  2012. // mark all children of the selected parent as selected
  2013. choice.find(".select2-result-selectable").addClass("select2-selected");
  2014. }
  2015. });
  2016. compound.each2(function(i, choice) {
  2017. // hide an optgroup if it doesnt have any selectable children
  2018. if (!choice.is('.select2-result-selectable')
  2019. && choice.find(".select2-result-selectable:not(.select2-selected)").length === 0) {
  2020. choice.addClass("select2-selected");
  2021. }
  2022. });
  2023. if (this.highlight() == -1){
  2024. self.highlight(0);
  2025. }
  2026. },
  2027. // multi
  2028. resizeSearch: function () {
  2029. var minimumWidth, left, maxWidth, containerLeft, searchWidth,
  2030. sideBorderPadding = getSideBorderPadding(this.search);
  2031. minimumWidth = measureTextWidth(this.search) + 10;
  2032. left = this.search.offset().left;
  2033. maxWidth = this.selection.width();
  2034. containerLeft = this.selection.offset().left;
  2035. searchWidth = maxWidth - (left - containerLeft) - sideBorderPadding;
  2036. if (searchWidth < minimumWidth) {
  2037. searchWidth = maxWidth - sideBorderPadding;
  2038. }
  2039. if (searchWidth < 40) {
  2040. searchWidth = maxWidth - sideBorderPadding;
  2041. }
  2042. if (searchWidth <= 0) {
  2043. searchWidth = minimumWidth;
  2044. }
  2045. this.search.width(searchWidth);
  2046. },
  2047. // multi
  2048. getVal: function () {
  2049. var val;
  2050. if (this.select) {
  2051. val = this.select.val();
  2052. return val === null ? [] : val;
  2053. } else {
  2054. val = this.opts.element.val();
  2055. return splitVal(val, this.opts.separator);
  2056. }
  2057. },
  2058. // multi
  2059. setVal: function (val) {
  2060. var unique;
  2061. if (this.select) {
  2062. this.select.val(val);
  2063. } else {
  2064. unique = [];
  2065. // filter out duplicates
  2066. $(val).each(function () {
  2067. if (indexOf(this, unique) < 0) unique.push(this);
  2068. });
  2069. this.opts.element.val(unique.length === 0 ? "" : unique.join(this.opts.separator));
  2070. }
  2071. },
  2072. // multi
  2073. val: function () {
  2074. var val, triggerChange = false, data = [], self=this;
  2075. if (arguments.length === 0) {
  2076. return this.getVal();
  2077. }
  2078. val = arguments[0];
  2079. if (arguments.length > 1) {
  2080. triggerChange = arguments[1];
  2081. }
  2082. // val is an id. !val is true for [undefined,null,'',0] - 0 is legal
  2083. if (!val && val !== 0) {
  2084. this.opts.element.val("");
  2085. this.updateSelection([]);
  2086. this.clearSearch();
  2087. if (triggerChange) {
  2088. this.triggerChange();
  2089. }
  2090. return;
  2091. }
  2092. // val is a list of ids
  2093. this.setVal(val);
  2094. if (this.select) {
  2095. this.opts.initSelection(this.select, this.bind(this.updateSelection));
  2096. if (triggerChange) {
  2097. this.triggerChange();
  2098. }
  2099. } else {
  2100. if (this.opts.initSelection === undefined) {
  2101. throw new Error("val() cannot be called if initSelection() is not defined");
  2102. }
  2103. this.opts.initSelection(this.opts.element, function(data){
  2104. var ids=$(data).map(self.id);
  2105. self.setVal(ids);
  2106. self.updateSelection(data);
  2107. self.clearSearch();
  2108. if (triggerChange) {
  2109. self.triggerChange();
  2110. }
  2111. });
  2112. }
  2113. this.clearSearch();
  2114. },
  2115. // multi
  2116. onSortStart: function() {
  2117. if (this.select) {
  2118. throw new Error("Sorting of elements is not supported when attached to <select>. Attach to <input type='hidden'/> instead.");
  2119. }
  2120. // collapse search field into 0 width so its container can be collapsed as well
  2121. this.search.width(0);
  2122. // hide the container
  2123. this.searchContainer.hide();
  2124. },
  2125. // multi
  2126. onSortEnd:function() {
  2127. var val=[], self=this;
  2128. // show search and move it to the end of the list
  2129. this.searchContainer.show();
  2130. // make sure the search container is the last item in the list
  2131. this.searchContainer.appendTo(this.searchContainer.parent());
  2132. // since we collapsed the width in dragStarted, we resize it here
  2133. this.resizeSearch();
  2134. // update selection
  2135. this.selection.find(".select2-search-choice").each(function() {
  2136. val.push(self.opts.id($(this).data("select2-data")));
  2137. });
  2138. this.setVal(val);
  2139. this.triggerChange();
  2140. },
  2141. // multi
  2142. data: function(values) {
  2143. var self=this, ids;
  2144. if (arguments.length === 0) {
  2145. return this.selection
  2146. .find(".select2-search-choice")
  2147. .map(function() { return $(this).data("select2-data"); })
  2148. .get();
  2149. } else {
  2150. if (!values) { values = []; }
  2151. ids = $.map(values, function(e) { return self.opts.id(e); });
  2152. this.setVal(ids);
  2153. this.updateSelection(values);
  2154. this.clearSearch();
  2155. }
  2156. }
  2157. });
  2158. $.fn.select2 = function () {
  2159. var args = Array.prototype.slice.call(arguments, 0),
  2160. opts,
  2161. select2,
  2162. value, multiple, allowedMethods = ["val", "destroy", "opened", "open", "close", "focus", "isFocused", "container", "onSortStart", "onSortEnd", "enable", "disable", "positionDropdown", "data"];
  2163. this.each(function () {
  2164. if (args.length === 0 || typeof(args[0]) === "object") {
  2165. opts = args.length === 0 ? {} : $.extend({}, args[0]);
  2166. opts.element = $(this);
  2167. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  2168. multiple = opts.element.attr("multiple");
  2169. } else {
  2170. multiple = opts.multiple || false;
  2171. if ("tags" in opts) {opts.multiple = multiple = true;}
  2172. }
  2173. select2 = multiple ? new MultiSelect2() : new SingleSelect2();
  2174. select2.init(opts);
  2175. } else if (typeof(args[0]) === "string") {
  2176. if (indexOf(args[0], allowedMethods) < 0) {
  2177. throw "Unknown method: " + args[0];
  2178. }
  2179. value = undefined;
  2180. select2 = $(this).data("select2");
  2181. if (select2 === undefined) return;
  2182. if (args[0] === "container") {
  2183. value=select2.container;
  2184. } else {
  2185. value = select2[args[0]].apply(select2, args.slice(1));
  2186. }
  2187. if (value !== undefined) {return false;}
  2188. } else {
  2189. throw "Invalid arguments to select2 plugin: " + args;
  2190. }
  2191. });
  2192. return (value === undefined) ? this : value;
  2193. };
  2194. // plugin defaults, accessible to users
  2195. $.fn.select2.defaults = {
  2196. width: "copy",
  2197. loadMorePadding: 0,
  2198. closeOnSelect: true,
  2199. openOnEnter: true,
  2200. containerCss: {},
  2201. dropdownCss: {},
  2202. containerCssClass: "",
  2203. dropdownCssClass: "",
  2204. formatResult: function(result, container, query, escapeMarkup) {
  2205. var markup=[];
  2206. markMatch(result.text, query.term, markup, escapeMarkup);
  2207. return markup.join("");
  2208. },
  2209. formatSelection: function (data, container) {
  2210. return data ? data.text : undefined;
  2211. },
  2212. sortResults: function (results, container, query) {
  2213. return results;
  2214. },
  2215. formatResultCssClass: function(data) {return undefined;},
  2216. formatNoMatches: function () { return "No matches found"; },
  2217. formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " more character" + (n == 1? "" : "s"); },
  2218. formatInputTooLong: function (input, max) { var n = input.length - max; return "Please enter " + n + " less character" + (n == 1? "" : "s"); },
  2219. formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); },
  2220. formatLoadMore: function (pageNumber) { return "Loading more results..."; },
  2221. formatSearching: function () { return "Searching..."; },
  2222. minimumResultsForSearch: 0,
  2223. minimumInputLength: 0,
  2224. maximumInputLength: null,
  2225. maximumSelectionSize: 0,
  2226. id: function (e) { return e.id; },
  2227. matcher: function(term, text) {
  2228. return text.toUpperCase().indexOf(term.toUpperCase()) >= 0;
  2229. },
  2230. separator: ",",
  2231. tokenSeparators: [],
  2232. tokenizer: defaultTokenizer,
  2233. escapeMarkup: function (markup) {
  2234. var replace_map = {
  2235. '\\': '&#92;',
  2236. '&': '&amp;',
  2237. '<': '&lt;',
  2238. '>': '&gt;',
  2239. '"': '&quot;',
  2240. "'": '&apos;',
  2241. "/": '&#47;'
  2242. };
  2243. return String(markup).replace(/[&<>"'/\\]/g, function (match) {
  2244. return replace_map[match[0]];
  2245. });
  2246. },
  2247. blurOnChange: false,
  2248. selectOnBlur: false,
  2249. adaptContainerCssClass: function(c) { return c; },
  2250. adaptDropdownCssClass: function(c) { return null; }
  2251. };
  2252. // exports
  2253. window.Select2 = {
  2254. query: {
  2255. ajax: ajax,
  2256. local: local,
  2257. tags: tags
  2258. }, util: {
  2259. debounce: debounce,
  2260. markMatch: markMatch
  2261. }, "class": {
  2262. "abstract": AbstractSelect2,
  2263. "single": SingleSelect2,
  2264. "multi": MultiSelect2
  2265. }
  2266. };
  2267. }(jQuery));