select2.js 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  1. /*
  2. Copyright 2012 Igor Vaynberg
  3. Version: @@ver@@ Timestamp: @@timestamp@@
  4. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in
  5. compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software distributed under the License is
  8. distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and limitations under the License.
  10. */
  11. (function ($) {
  12. if(typeof $.fn.each2 == "undefined"){
  13. $.fn.extend({
  14. /*
  15. * 4-10 times faster .each replacement
  16. * use it carefully, as it overrides jQuery context of element on each iteration
  17. */
  18. each2 : function (c) {
  19. var j = $([0]), i = -1, l = this.length;
  20. while (
  21. ++i < l
  22. && (j.context = j[0] = this[i])
  23. && c.call(j[0], i, j) !== false //"this"=DOM, i=index, j=jQuery object
  24. );
  25. return this;
  26. }
  27. });
  28. }
  29. })(jQuery);
  30. (function ($, undefined) {
  31. "use strict";
  32. /*global document, window, jQuery, console */
  33. if (window.Select2 !== undefined) {
  34. return;
  35. }
  36. var KEY, AbstractSelect2, SingleSelect2, MultiSelect2, nextUid, sizer;
  37. KEY = {
  38. TAB: 9,
  39. ENTER: 13,
  40. ESC: 27,
  41. SPACE: 32,
  42. LEFT: 37,
  43. UP: 38,
  44. RIGHT: 39,
  45. DOWN: 40,
  46. SHIFT: 16,
  47. CTRL: 17,
  48. ALT: 18,
  49. PAGE_UP: 33,
  50. PAGE_DOWN: 34,
  51. HOME: 36,
  52. END: 35,
  53. BACKSPACE: 8,
  54. DELETE: 46,
  55. isArrow: function (k) {
  56. k = k.which ? k.which : k;
  57. switch (k) {
  58. case KEY.LEFT:
  59. case KEY.RIGHT:
  60. case KEY.UP:
  61. case KEY.DOWN:
  62. return true;
  63. }
  64. return false;
  65. },
  66. isControl: function (k) {
  67. k = k.which ? k.which : k;
  68. switch (k) {
  69. case KEY.SHIFT:
  70. case KEY.CTRL:
  71. case KEY.ALT:
  72. return true;
  73. }
  74. if (k.metaKey) return true;
  75. return false;
  76. },
  77. isFunctionKey: function (k) {
  78. k = k.which ? k.which : k;
  79. return k >= 112 && k <= 123;
  80. }
  81. };
  82. nextUid=(function() { var counter=1; return function() { return counter++; }; }());
  83. function indexOf(value, array) {
  84. var i = 0, l = array.length, v;
  85. if (typeof value === "undefined") {
  86. return -1;
  87. }
  88. if (value.constructor === String) {
  89. for (; i < l; i = i + 1) if (value.localeCompare(array[i]) === 0) return i;
  90. } else {
  91. for (; i < l; i = i + 1) {
  92. v = array[i];
  93. if (v.constructor === String) {
  94. if (v.localeCompare(value) === 0) return i;
  95. } else {
  96. if (v === value) return i;
  97. }
  98. }
  99. }
  100. return -1;
  101. }
  102. /**
  103. * Compares equality of a and b taking into account that a and b may be strings, in which case localeCompare is used
  104. * @param a
  105. * @param b
  106. */
  107. function equal(a, b) {
  108. if (a === b) return true;
  109. if (a === undefined || b === undefined) return false;
  110. if (a === null || b === null) return false;
  111. if (a.constructor === String) return a.localeCompare(b) === 0;
  112. if (b.constructor === String) return b.localeCompare(a) === 0;
  113. return false;
  114. }
  115. /**
  116. * Splits the string into an array of values, trimming each value. An empty array is returned for nulls or empty
  117. * strings
  118. * @param string
  119. * @param separator
  120. */
  121. function splitVal(string, separator) {
  122. var val, i, l;
  123. if (string === null || string.length < 1) return [];
  124. val = string.split(separator);
  125. for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]);
  126. return val;
  127. }
  128. function getSideBorderPadding(element) {
  129. return element.outerWidth() - element.width();
  130. }
  131. function installKeyUpChangeEvent(element) {
  132. var key="keyup-change-value";
  133. element.bind("keydown", function () {
  134. if ($.data(element, key) === undefined) {
  135. $.data(element, key, element.val());
  136. }
  137. });
  138. element.bind("keyup", function () {
  139. var val= $.data(element, key);
  140. if (val !== undefined && element.val() !== val) {
  141. $.removeData(element, key);
  142. element.trigger("keyup-change");
  143. }
  144. });
  145. }
  146. $(document).delegate("*", "mousemove", function (e) {
  147. $(document).data("select2-lastpos", {x: e.pageX, y: e.pageY});
  148. });
  149. /**
  150. * filters mouse events so an event is fired only if the mouse moved.
  151. *
  152. * filters out mouse events that occur when mouse is stationary but
  153. * the elements under the pointer are scrolled.
  154. */
  155. function installFilteredMouseMove(element) {
  156. element.bind("mousemove", function (e) {
  157. var lastpos = $(document).data("select2-lastpos");
  158. if (lastpos === undefined || lastpos.x !== e.pageX || lastpos.y !== e.pageY) {
  159. $(e.target).trigger("mousemove-filtered", e);
  160. }
  161. });
  162. }
  163. /**
  164. * Debounces a function. Returns a function that calls the original fn function only if no invocations have been made
  165. * within the last quietMillis milliseconds.
  166. *
  167. * @param quietMillis number of milliseconds to wait before invoking fn
  168. * @param fn function to be debounced
  169. * @return debounced version of fn
  170. */
  171. function debounce(quietMillis, fn) {
  172. var timeout;
  173. return function () {
  174. window.clearTimeout(timeout);
  175. timeout = window.setTimeout(fn, quietMillis);
  176. };
  177. }
  178. function installDebouncedScroll(threshold, element) {
  179. var notify = debounce(threshold, function (e) { element.trigger("scroll-debounced", e);});
  180. element.bind("scroll", function (e) {
  181. if (indexOf(e.target, element.get()) >= 0) notify(e);
  182. });
  183. }
  184. function killEvent(event) {
  185. event.preventDefault();
  186. event.stopPropagation();
  187. }
  188. function measureTextWidth(e) {
  189. if (!sizer){
  190. var style = e[0].currentStyle || window.getComputedStyle(e[0], null);
  191. sizer = $("<div></div>").css({
  192. position: "absolute",
  193. left: "-1000px",
  194. top: "-1000px",
  195. display: "none",
  196. fontSize: style.fontSize,
  197. fontFamily: style.fontFamily,
  198. fontStyle: style.fontStyle,
  199. fontWeight: style.fontWeight,
  200. letterSpacing: style.letterSpacing,
  201. textTransform: style.textTransform,
  202. whiteSpace: "nowrap"
  203. });
  204. $("body").append(sizer);
  205. }
  206. sizer.text(e.val());
  207. return sizer.width();
  208. }
  209. function markMatch(text, term, markup) {
  210. var match=text.toUpperCase().indexOf(term.toUpperCase()),
  211. tl=term.length;
  212. if (match<0) {
  213. markup.push(text);
  214. return;
  215. }
  216. markup.push(text.substring(0, match));
  217. markup.push("<span class='select2-match'>");
  218. markup.push(text.substring(match, match + tl));
  219. markup.push("</span>");
  220. markup.push(text.substring(match + tl, text.length));
  221. }
  222. /**
  223. * Produces an ajax-based query function
  224. *
  225. * @param options object containing configuration paramters
  226. * @param options.transport function that will be used to execute the ajax request. must be compatible with parameters supported by $.ajax
  227. * @param options.url url for the data
  228. * @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url.
  229. * @param options.dataType request data type: ajax, jsonp, other datatatypes supported by jQuery's $.ajax function or the transport function if specified
  230. * @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often
  231. * @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2.
  232. * The expected format is an object containing the following keys:
  233. * results array of objects that will be used as choices
  234. * more (optional) boolean indicating whether there are more results available
  235. * Example: {results:[{id:1, text:'Red'},{id:2, text:'Blue'}], more:true}
  236. */
  237. function ajax(options) {
  238. var timeout, // current scheduled but not yet executed request
  239. requestSequence = 0, // sequence used to drop out-of-order responses
  240. handler = null,
  241. quietMillis = options.quietMillis || 100;
  242. return function (query) {
  243. window.clearTimeout(timeout);
  244. timeout = window.setTimeout(function () {
  245. requestSequence += 1; // increment the sequence
  246. var requestNumber = requestSequence, // this request's sequence number
  247. data = options.data, // ajax data function
  248. transport = options.transport || $.ajax,
  249. type = options.type || 'GET'; // set type of request (GET or POST)
  250. data = data.call(this, query.term, query.page, query.context);
  251. if( null !== handler) { handler.abort(); }
  252. handler = transport.call(null, {
  253. url: options.url,
  254. dataType: options.dataType,
  255. data: data,
  256. type: type,
  257. success: function (data) {
  258. if (requestNumber < requestSequence) {
  259. return;
  260. }
  261. // TODO 3.0 - replace query.page with query so users have access to term, page, etc.
  262. var results = options.results(data, query.page);
  263. query.callback(results);
  264. }
  265. });
  266. }, quietMillis);
  267. };
  268. }
  269. /**
  270. * Produces a query function that works with a local array
  271. *
  272. * @param options object containing configuration parameters. The options parameter can either be an array or an
  273. * object.
  274. *
  275. * If the array form is used it is assumed that it contains objects with 'id' and 'text' keys.
  276. *
  277. * If the object form is used ti is assumed that it contains 'data' and 'text' keys. The 'data' key should contain
  278. * an array of objects that will be used as choices. These objects must contain at least an 'id' key. The 'text'
  279. * key can either be a String in which case it is expected that each element in the 'data' array has a key with the
  280. * value of 'text' which will be used to match choices. Alternatively, text can be a function(item) that can extract
  281. * the text.
  282. */
  283. function local(options) {
  284. var data = options, // data elements
  285. dataText,
  286. text = function (item) { return ""+item.text; }; // function used to retrieve the text portion of a data item that is matched against the search
  287. if (!$.isArray(data)) {
  288. text = data.text;
  289. // if text is not a function we assume it to be a key name
  290. if (!$.isFunction(text)) {
  291. 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
  292. text = function (item) { return item[dataText]; };
  293. }
  294. data = data.results;
  295. }
  296. return function (query) {
  297. var t = query.term, filtered = {};
  298. if (t === "") {
  299. query.callback({results: data});
  300. return;
  301. }
  302. filtered.results = $(data)
  303. .filter(function () {return query.matcher(t, text(this));})
  304. .get();
  305. query.callback(filtered);
  306. };
  307. }
  308. // TODO javadoc
  309. function tags(data) {
  310. // TODO even for a function we should probably return a wrapper that does the same object/string check as
  311. // the function for arrays. otherwise only functions that return objects are supported.
  312. if ($.isFunction(data)) {
  313. return data;
  314. }
  315. // if not a function we assume it to be an array
  316. return function (query) {
  317. var t = query.term, filtered = {results: []};
  318. $(data).each(function () {
  319. var isObject = this.text !== undefined,
  320. text = isObject ? this.text : this;
  321. if (t === "" || query.matcher(t, text)) {
  322. filtered.results.push(isObject ? this : {id: this, text: this});
  323. }
  324. });
  325. query.callback(filtered);
  326. };
  327. }
  328. /**
  329. * blurs any Select2 container that has focus when an element outside them was clicked or received focus
  330. */
  331. $(document).ready(function () {
  332. $(document).delegate("*", "mousedown focusin touchend", function (e) {
  333. var target = $(e.target).closest("div.select2-container").get(0);
  334. if (target) {
  335. $(document).find("div.select2-container-active").each(function () {
  336. if (this !== target) $(this).data("select2").blur();
  337. });
  338. } else {
  339. target = $(e.target).closest("div.select2-drop").get(0);
  340. $(document).find("div.select2-drop-active").each(function () {
  341. if (this !== target) $(this).data("select2").blur();
  342. });
  343. }
  344. });
  345. });
  346. function evaluate(val) {
  347. return $.isFunction(val) ? val() : val;
  348. }
  349. /**
  350. * Creates a new class
  351. *
  352. * @param superClass
  353. * @param methods
  354. */
  355. function clazz(SuperClass, methods) {
  356. var constructor = function () {};
  357. constructor.prototype = new SuperClass;
  358. constructor.prototype.constructor = constructor;
  359. constructor.prototype.parent = SuperClass.prototype;
  360. constructor.prototype = $.extend(constructor.prototype, methods);
  361. return constructor;
  362. }
  363. AbstractSelect2 = clazz(Object, {
  364. // abstract
  365. bind: function (func) {
  366. var self = this;
  367. return function () {
  368. func.apply(self, arguments);
  369. };
  370. },
  371. // abstract
  372. init: function (opts) {
  373. var results, search, resultsSelector = ".select2-results";
  374. // prepare options
  375. this.opts = opts = this.prepareOpts(opts);
  376. this.id=opts.id;
  377. // destroy if called on an existing component
  378. if (opts.element.data("select2") !== undefined &&
  379. opts.element.data("select2") !== null) {
  380. this.destroy();
  381. }
  382. this.enabled=true;
  383. this.container = this.createContainer();
  384. this.body = opts.element.closest("body"); // cache for future access
  385. if (opts.element.attr("class") !== undefined) {
  386. this.container.addClass(opts.element.attr("class"));
  387. }
  388. this.container.css(evaluate(opts.containerCss));
  389. this.container.addClass(evaluate(opts.containerCssClass));
  390. // swap container for the element
  391. this.opts.element
  392. .data("select2", this)
  393. .hide()
  394. .after(this.container);
  395. this.container.data("select2", this);
  396. this.dropdown = this.container.find(".select2-drop");
  397. this.dropdown.css(evaluate(opts.dropdownCss));
  398. this.dropdown.addClass(evaluate(opts.dropdownCssClass));
  399. this.dropdown.data("select2", this);
  400. this.results = results = this.container.find(resultsSelector);
  401. this.search = search = this.container.find("input.select2-input");
  402. this.resultsPage = 0;
  403. this.context = null;
  404. // initialize the container
  405. this.initContainer();
  406. installFilteredMouseMove(this.results);
  407. this.dropdown.delegate(resultsSelector, "mousemove-filtered", this.bind(this.highlightUnderEvent));
  408. installDebouncedScroll(80, this.results);
  409. this.dropdown.delegate(resultsSelector, "scroll-debounced", this.bind(this.loadMoreIfNeeded));
  410. // if jquery.mousewheel plugin is installed we can prevent out-of-bounds scrolling of results via mousewheel
  411. if ($.fn.mousewheel) {
  412. results.mousewheel(function (e, delta, deltaX, deltaY) {
  413. var top = results.scrollTop(), height;
  414. if (deltaY > 0 && top - deltaY <= 0) {
  415. results.scrollTop(0);
  416. killEvent(e);
  417. } else if (deltaY < 0 && results.get(0).scrollHeight - results.scrollTop() + deltaY <= results.height()) {
  418. results.scrollTop(results.get(0).scrollHeight - results.height());
  419. killEvent(e);
  420. }
  421. });
  422. }
  423. installKeyUpChangeEvent(search);
  424. search.bind("keyup-change", this.bind(this.updateResults));
  425. search.bind("focus", function () { search.addClass("select2-focused"); if (search.val() === " ") search.val(""); });
  426. search.bind("blur", function () { search.removeClass("select2-focused");});
  427. this.dropdown.delegate(resultsSelector, "click", this.bind(function (e) {
  428. if ($(e.target).closest(".select2-result-selectable:not(.select2-disabled)").length > 0) {
  429. this.highlightUnderEvent(e);
  430. this.selectHighlighted(e);
  431. } else {
  432. this.focusSearch();
  433. }
  434. killEvent(e);
  435. }));
  436. // trap all mouse events from leaving the dropdown. sometimes there may be a modal that is listening
  437. // for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's
  438. // dom it will trigger the popup close, which is not what we want
  439. this.dropdown.bind("click mouseup mousedown", function (e) { e.stopPropagation(); });
  440. if ($.isFunction(this.opts.initSelection)) {
  441. // initialize selection based on the current value of the source element
  442. this.initSelection();
  443. // if the user has provided a function that can set selection based on the value of the source element
  444. // we monitor the change event on the element and trigger it, allowing for two way synchronization
  445. this.monitorSource();
  446. }
  447. if (opts.element.is(":disabled")) this.disable();
  448. },
  449. // abstract
  450. destroy: function () {
  451. var select2 = this.opts.element.data("select2");
  452. if (select2 !== undefined) {
  453. select2.container.remove();
  454. select2.dropdown.remove();
  455. select2.opts.element
  456. .removeData("select2")
  457. .unbind(".select2")
  458. .show();
  459. }
  460. },
  461. // abstract
  462. prepareOpts: function (opts) {
  463. var element, select, idKey;
  464. element = opts.element;
  465. if (element.get(0).tagName.toLowerCase() === "select") {
  466. this.select = select = opts.element;
  467. }
  468. if (select) {
  469. // these options are not allowed when attached to a select because they are picked up off the element itself
  470. $.each(["id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags"], function () {
  471. if (this in opts) {
  472. throw new Error("Option '" + this + "' is not allowed for Select2 when attached to a <select> element.");
  473. }
  474. });
  475. }
  476. opts = $.extend({}, {
  477. containerCss: {},
  478. dropdownCss: {},
  479. containerCssClass: "",
  480. dropdownCssClass: "",
  481. populateResults: function(container, results, query) {
  482. var uidToData={}, populate, markup=[], uid, data, result, children, formatted, id=this.opts.id;
  483. populate=function(results, depth) {
  484. var i, l, uid, result, selectable, compound;
  485. for (i = 0, l = results.length; i < l; i = i + 1) {
  486. result=results[i];
  487. selectable=id(result) !== undefined;
  488. compound=("children" in result) && result.children.length > 0;
  489. markup.push("<li class='select2-result-depth-" + depth);
  490. markup.push(" select2-result");
  491. markup.push(selectable ? " select2-result-selectable" : " select2-result-unselectable");
  492. if (compound) { markup.push(" select2-result-with-children"); }
  493. markup.push("'");
  494. uid=nextUid();
  495. markup.push(" id='select2-result-"+uid+"'");
  496. uidToData[uid]=result;
  497. markup.push("><div class='select2-result-label'>");
  498. formatted=opts.formatResult(result, query, markup);
  499. // for backwards compat with <3.0 versions
  500. if (formatted!==undefined) {
  501. markup.push(formatted);
  502. }
  503. markup.push("</div>");
  504. if (compound) {
  505. markup.push("<ul class='select2-result-sub'>");
  506. populate(result.children, depth + 1);
  507. markup.push("</ul>");
  508. }
  509. markup.push("</li>");
  510. }
  511. };
  512. populate(results, 0);
  513. container.append(markup.join(""));
  514. for (uid in uidToData) {
  515. $("#select2-result-"+uid, container).data("select2-data", uidToData[uid]);
  516. }
  517. },
  518. formatResult: function(result, query, markup) {
  519. markMatch(result.text, query.term, markup);
  520. },
  521. formatSelection: function (data) {
  522. return data.fullText || data.text;
  523. },
  524. formatNoMatches: function () { return "No matches found"; },
  525. formatInputTooShort: function (input, min) { return "Please enter " + (min - input.length) + " more characters"; },
  526. formatLoadMore: function (pageNumber) { return "Loading more results..."; },
  527. minimumResultsForSearch: 0,
  528. minimumInputLength: 0,
  529. id: function (e) { return e.id; },
  530. matcher: function(term, text) {
  531. return text.toUpperCase().indexOf(term.toUpperCase()) >= 0;
  532. }
  533. }, opts);
  534. if (typeof(opts.id) !== "function") {
  535. idKey = opts.id;
  536. opts.id = function (e) { return e[idKey]; };
  537. }
  538. if (select) {
  539. opts.query = this.bind(function (query) {
  540. var data = { results: [], more: false },
  541. term = query.term,
  542. children, firstChild, process;
  543. process=function(element, collection) {
  544. var group;
  545. if (element.is("option")) {
  546. if (query.matcher(term, element.text())) {
  547. collection.push({id:element.attr("value"), text:element.text(), element: element.get()});
  548. }
  549. } else if (element.is("optgroup")) {
  550. group={text:element.attr("label"), children:[], element: element.get()};
  551. element.children().each2(function(i, elm) { process(elm, group.children); });
  552. if (group.children.length>0) {
  553. collection.push(group);
  554. }
  555. }
  556. };
  557. children=element.children();
  558. // ignore the placeholder option if there is one
  559. if (this.getPlaceholder() !== undefined && children.length > 0) {
  560. firstChild = children[0];
  561. if ($(firstChild).text() === "") {
  562. children=children.not(firstChild);
  563. }
  564. }
  565. children.each2(function(i, elm) { process(elm, data.results); });
  566. query.callback(data);
  567. });
  568. // this is needed because inside val() we construct choices from options and there id is hardcoded
  569. opts.id=function(e) { return e.id; };
  570. } else {
  571. if (!("query" in opts)) {
  572. if ("ajax" in opts) {
  573. opts.query = ajax(opts.ajax);
  574. } else if ("data" in opts) {
  575. opts.query = local(opts.data);
  576. } else if ("tags" in opts) {
  577. opts.query = tags(opts.tags);
  578. opts.createSearchChoice = function (term) { return {id: term, text: term}; };
  579. opts.initSelection = function (element, callback) {
  580. var data = [];
  581. $(splitVal(element.val(), ",")).each(function () {
  582. data.push({id: this, text: this});
  583. });
  584. callback(data);
  585. };
  586. }
  587. }
  588. }
  589. if (typeof(opts.query) !== "function") {
  590. throw "query function not defined for Select2 " + opts.element.attr("id");
  591. }
  592. return opts;
  593. },
  594. /**
  595. * Monitor the original element for changes and update select2 accordingly
  596. */
  597. // abstract
  598. monitorSource: function () {
  599. this.opts.element.bind("change.select2", this.bind(function (e) {
  600. if (this.opts.element.data("select2-change-triggered") !== true) {
  601. this.initSelection();
  602. }
  603. }));
  604. },
  605. /**
  606. * Triggers the change event on the source element
  607. */
  608. // abstract
  609. triggerChange: function (details) {
  610. details = details || {};
  611. details= $.extend({}, details, { type: "change", val: this.val() });
  612. // prevents recursive triggering
  613. this.opts.element.data("select2-change-triggered", true);
  614. this.opts.element.trigger(details);
  615. this.opts.element.data("select2-change-triggered", false);
  616. },
  617. // abstract
  618. enable: function() {
  619. if (this.enabled) return;
  620. this.enabled=true;
  621. this.container.removeClass("select2-container-disabled");
  622. },
  623. // abstract
  624. disable: function() {
  625. if (!this.enabled) return;
  626. this.close();
  627. this.enabled=false;
  628. this.container.addClass("select2-container-disabled");
  629. },
  630. // abstract
  631. opened: function () {
  632. return this.container.hasClass("select2-dropdown-open");
  633. },
  634. // abstract
  635. positionDropdown: function() {
  636. var offset = this.container.offset(),
  637. height = this.container.outerHeight(),
  638. width = this.container.outerWidth(),
  639. dropHeight = this.dropdown.outerHeight(),
  640. viewportBottom = document.body.scrollTop + document.documentElement.clientHeight,
  641. dropTop = offset.top + height,
  642. enoughRoomBelow = dropTop + dropHeight <= viewportBottom,
  643. enoughRoomAbove = (offset.top - dropHeight) >= document.body.scrollTop,
  644. aboveNow = this.dropdown.hasClass("select2-drop-above"),
  645. above,
  646. css;
  647. // always prefer the current above/below alignment, unless there is not enough room
  648. if (aboveNow) {
  649. above = true;
  650. if (!enoughRoomAbove && enoughRoomBelow) above = false;
  651. } else {
  652. above = false;
  653. if (!enoughRoomBelow && enoughRoomAbove) above = true;
  654. }
  655. if (above) {
  656. dropTop = offset.top - dropHeight;
  657. this.container.addClass("select2-drop-above");
  658. this.dropdown.addClass("select2-drop-above");
  659. }
  660. else {
  661. this.container.removeClass("select2-drop-above");
  662. this.dropdown.removeClass("select2-drop-above");
  663. }
  664. css = {
  665. top:dropTop,
  666. left:offset.left,
  667. width:width
  668. };
  669. this.dropdown.css(css);
  670. },
  671. // abstract
  672. shouldOpen: function() {
  673. var event;
  674. if (this.opened()) return false;
  675. event = jQuery.Event("open");
  676. this.opts.element.trigger(event);
  677. return !event.isDefaultPrevented();
  678. },
  679. // abstract
  680. clearDropdownAlignmentPreference: function() {
  681. // clear the classes used to figure out the preference of where the dropdown should be opened
  682. this.container.removeClass("select2-drop-above");
  683. this.dropdown.removeClass("select2-drop-above");
  684. },
  685. /**
  686. * Opens the dropdown
  687. *
  688. * @return {Boolean} whether or not dropdown was opened. This method will return false if, for example,
  689. * the dropdown is already open, or if the 'open' event listener on the element called preventDefault().
  690. */
  691. // abstract
  692. open: function () {
  693. if (!this.shouldOpen()) return false;
  694. window.setTimeout(this.bind(this.opening), 1);
  695. return true;
  696. },
  697. /**
  698. * Performs the opening of the dropdown
  699. */
  700. // abstract
  701. opening: function() {
  702. this.clearDropdownAlignmentPreference();
  703. if (this.search.val() === " ") { this.search.val(""); }
  704. this.dropdown.addClass("select2-drop-active");
  705. this.positionDropdown();
  706. this.updateResults(true);
  707. if(this.dropdown[0] !== this.body.children().last()[0]) {
  708. this.dropdown.detach().appendTo(this.body);
  709. }
  710. this.dropdown.show();
  711. this.ensureHighlightVisible();
  712. this.focusSearch();
  713. this.container.addClass("select2-dropdown-open").addClass("select2-container-active");
  714. },
  715. // abstract
  716. close: function () {
  717. if (!this.opened()) return;
  718. this.clearDropdownAlignmentPreference();
  719. this.dropdown.hide();
  720. this.container.removeClass("select2-dropdown-open");
  721. this.results.empty();
  722. this.clearSearch();
  723. },
  724. // abstract
  725. clearSearch: function () {
  726. },
  727. // abstract
  728. ensureHighlightVisible: function () {
  729. var results = this.results, children, index, child, hb, rb, y, more;
  730. index = this.highlight();
  731. if (index < 0) return;
  732. if (index == 0) {
  733. // if the first element is highlighted scroll all the way to the top,
  734. // that way any unselectable headers above it will also be scrolled
  735. // into view
  736. results.scrollTop(0);
  737. return;
  738. }
  739. children = results.find(".select2-result-selectable");
  740. child = $(children[index]);
  741. hb = child.offset().top + child.outerHeight();
  742. // if this is the last child lets also make sure select2-more-results is visible
  743. if (index === children.length - 1) {
  744. more = results.find("li.select2-more-results");
  745. if (more.length > 0) {
  746. hb = more.offset().top + more.outerHeight();
  747. }
  748. }
  749. rb = results.offset().top + results.outerHeight();
  750. if (hb > rb) {
  751. results.scrollTop(results.scrollTop() + (hb - rb));
  752. }
  753. y = child.offset().top - results.offset().top;
  754. // make sure the top of the element is visible
  755. if (y < 0) {
  756. results.scrollTop(results.scrollTop() + y); // y is negative
  757. }
  758. },
  759. // abstract
  760. moveHighlight: function (delta) {
  761. var choices = this.results.find(".select2-result-selectable"),
  762. index = this.highlight();
  763. while (index > -1 && index < choices.length) {
  764. index += delta;
  765. var choice = $(choices[index]);
  766. if (choice.hasClass("select2-result-selectable") && !choice.hasClass("select2-disabled")) {
  767. this.highlight(index);
  768. break;
  769. }
  770. }
  771. },
  772. // abstract
  773. highlight: function (index) {
  774. var choices = this.results.find(".select2-result-selectable");
  775. if (arguments.length === 0) {
  776. return indexOf(choices.filter(".select2-highlighted")[0], choices.get());
  777. }
  778. if (index >= choices.length) index = choices.length - 1;
  779. if (index < 0) index = 0;
  780. choices.removeClass("select2-highlighted");
  781. $(choices[index]).addClass("select2-highlighted");
  782. this.ensureHighlightVisible();
  783. //if (this.opened()) this.focusSearch();
  784. },
  785. // abstract
  786. highlightUnderEvent: function (event) {
  787. var el = $(event.target).closest(".select2-result-selectable");
  788. if (el.length > 0 && !el.is(".select2-highlighted")) {
  789. var choices = this.results.find('.select2-result-selectable');
  790. this.highlight(choices.index(el));
  791. } else if (el.length == 0) {
  792. // if we are over an unselectable item remove al highlights
  793. this.results.find(".select2-highlighted").removeClass("select2-highlighted");
  794. }
  795. },
  796. // abstract
  797. loadMoreIfNeeded: function () {
  798. var results = this.results,
  799. more = results.find("li.select2-more-results"),
  800. below, // pixels the element is below the scroll fold, below==0 is when the element is starting to be visible
  801. offset = -1, // index of first element without data
  802. page = this.resultsPage + 1,
  803. self=this,
  804. term=this.search.val(),
  805. context=this.context;
  806. if (more.length === 0) return;
  807. below = more.offset().top - results.offset().top - results.height();
  808. if (below <= 0) {
  809. more.addClass("select2-active");
  810. this.opts.query({
  811. term: term,
  812. page: page,
  813. context: context,
  814. matcher: this.opts.matcher,
  815. callback: this.bind(function (data) {
  816. self.opts.populateResults.call(this, results, data.results, {term: term, page: page, context:context});
  817. if (data.more===true) {
  818. more.detach().appendTo(results.children(":last")).text(self.opts.formatLoadMore(page+1));
  819. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  820. } else {
  821. more.remove();
  822. }
  823. self.positionDropdown();
  824. self.resultsPage = page;
  825. })});
  826. }
  827. },
  828. /**
  829. * @param initial whether or not this is the call to this method right after the dropdown has been opened
  830. */
  831. // abstract
  832. updateResults: function (initial) {
  833. var search = this.search, results = this.results, opts = this.opts, self=this;
  834. // if the search is currently hidden we do not alter the results
  835. if (initial !== true && this.showSearchInput === false) {
  836. return;
  837. }
  838. search.addClass("select2-active");
  839. function postRender() {
  840. results.scrollTop(0);
  841. search.removeClass("select2-active");
  842. self.positionDropdown();
  843. }
  844. function render(html) {
  845. results.html(html);
  846. postRender();
  847. }
  848. if (search.val().length < opts.minimumInputLength) {
  849. render("<li class='select2-no-results'>" + opts.formatInputTooShort(search.val(), opts.minimumInputLength) + "</li>");
  850. return;
  851. }
  852. this.resultsPage = 1;
  853. opts.query({
  854. term: search.val(),
  855. page: this.resultsPage,
  856. context: null,
  857. matcher: opts.matcher,
  858. callback: this.bind(function (data) {
  859. var def; // default choice
  860. // save context, if any
  861. this.context = (data.context===undefined) ? null : data.context;
  862. // create a default choice and prepend it to the list
  863. if (this.opts.createSearchChoice && search.val() !== "") {
  864. def = this.opts.createSearchChoice.call(null, search.val(), data.results);
  865. if (def !== undefined && def !== null && self.id(def) !== undefined && self.id(def) !== null) {
  866. if ($(data.results).filter(
  867. function () {
  868. return equal(self.id(this), self.id(def));
  869. }).length === 0) {
  870. data.results.unshift(def);
  871. }
  872. }
  873. }
  874. if (data.results.length === 0) {
  875. render("<li class='select2-no-results'>" + opts.formatNoMatches(search.val()) + "</li>");
  876. return;
  877. }
  878. results.empty();
  879. self.opts.populateResults.call(this, results, data.results, {term: search.val(), page: this.resultsPage, context:null});
  880. postRender();
  881. if (data.more === true) {
  882. results.children().filter(":last").append("<li class='select2-more-results'>" + opts.formatLoadMore(this.resultsPage) + "</li>");
  883. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  884. }
  885. this.postprocessResults(data, initial);
  886. })});
  887. },
  888. // abstract
  889. cancel: function () {
  890. this.close();
  891. },
  892. // abstract
  893. blur: function () {
  894. this.close();
  895. this.container.removeClass("select2-container-active");
  896. this.dropdown.removeClass("select2-drop-active");
  897. // synonymous to .is(':focus'), which is available in jquery >= 1.6
  898. if (this.search[0] === document.activeElement) { this.search.blur(); }
  899. this.clearSearch();
  900. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  901. },
  902. // abstract
  903. focusSearch: function () {
  904. /* we do this in a timeout so that current event processing can complete before this code is executed.
  905. this makes sure the search field is focussed even if the current event would blur it */
  906. window.setTimeout(this.bind(function () {
  907. this.search.focus();
  908. }), 10);
  909. },
  910. // abstract
  911. selectHighlighted: function () {
  912. var data = this.results.find(".select2-highlighted").not(".select2-disabled").closest('.select2-result-selectable').data("select2-data");
  913. if (data) {
  914. this.onSelect(data);
  915. }
  916. },
  917. // abstract
  918. getPlaceholder: function () {
  919. return this.opts.element.attr("placeholder") ||
  920. this.opts.element.attr("data-placeholder") || // jquery 1.4 compat
  921. this.opts.element.data("placeholder") ||
  922. this.opts.placeholder;
  923. },
  924. /**
  925. * Get the desired width for the container element. This is
  926. * derived first from option `width` passed to select2, then
  927. * the inline 'style' on the original element, and finally
  928. * falls back to the jQuery calculated element width.
  929. *
  930. * @returns The width string (with units) for the container.
  931. */
  932. // abstract
  933. getContainerWidth: function () {
  934. var style, attrs, matches, i, l;
  935. // see if there is width specified in opts
  936. if (this.opts.width !== undefined)
  937. return this.opts.width;
  938. // next check if there is inline style on the element that contains width
  939. style = this.opts.element.attr('style');
  940. if (style !== undefined) {
  941. attrs = style.split(';');
  942. for (i = 0, l = attrs.length; i < l; i = i + 1) {
  943. matches = attrs[i].replace(/\s/g, '')
  944. .match(/width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/);
  945. if (matches !== null && matches.length >= 1)
  946. return matches[1];
  947. }
  948. }
  949. // next check if css('width') can resolve a width that is percent based, this is sometimes possible
  950. // when attached to input type=hidden or elements hidden via css
  951. style = this.opts.element.css('width');
  952. if (style.indexOf("%") > 0) return style;
  953. // finally, fallback on the calculated width of the element
  954. return (this.opts.element.width() === 0 ? 'auto' : this.opts.element.outerWidth() + 'px');
  955. }
  956. });
  957. SingleSelect2 = clazz(AbstractSelect2, {
  958. // single
  959. createContainer: function () {
  960. return $("<div></div>", {
  961. "class": "select2-container",
  962. "style": "width: " + this.getContainerWidth()
  963. }).html([
  964. " <a href='javascript:void(0)' class='select2-choice'>",
  965. " <span></span><abbr class='select2-search-choice-close' style='display:none;'></abbr>",
  966. " <div><b></b></div>" ,
  967. "</a>",
  968. " <div class='select2-drop select2-offscreen'>" ,
  969. " <div class='select2-search'>" ,
  970. " <input type='text' autocomplete='off' class='select2-input'/>" ,
  971. " </div>" ,
  972. " <ul class='select2-results'>" ,
  973. " </ul>" ,
  974. "</div>"].join(""));
  975. },
  976. // single
  977. opening: function () {
  978. this.parent.opening.apply(this, arguments);
  979. this.dropdown.removeClass("select2-offscreen");
  980. },
  981. // single
  982. close: function () {
  983. if (!this.opened()) return;
  984. this.parent.close.apply(this, arguments);
  985. this.dropdown.removeAttr("style").addClass("select2-offscreen").insertAfter(this.selection).show();
  986. },
  987. // single
  988. focus: function () {
  989. this.close();
  990. this.search.focus();
  991. },
  992. // single
  993. isFocused: function () {
  994. return this.selection[0] === document.activeElement;
  995. },
  996. // single
  997. cancel: function () {
  998. this.parent.cancel.apply(this, arguments);
  999. this.search.focus();
  1000. },
  1001. // single
  1002. initContainer: function () {
  1003. var selection,
  1004. container = this.container,
  1005. dropdown = this.dropdown,
  1006. clickingInside = false;
  1007. this.selection = selection = container.find(".select2-choice");
  1008. this.search.bind("keydown", this.bind(function (e) {
  1009. if (!this.enabled) return;
  1010. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN || e.which === KEY.SPACE) {
  1011. // prevent the page from scrolling
  1012. killEvent(e);
  1013. return;
  1014. }
  1015. if (this.opened()) {
  1016. switch (e.which) {
  1017. case KEY.UP:
  1018. case KEY.DOWN:
  1019. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1020. killEvent(e);
  1021. return;
  1022. case KEY.TAB:
  1023. case KEY.ENTER:
  1024. this.selectHighlighted();
  1025. killEvent(e);
  1026. return;
  1027. case KEY.ESC:
  1028. this.cancel(e);
  1029. killEvent(e);
  1030. return;
  1031. }
  1032. } else {
  1033. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) {
  1034. return;
  1035. }
  1036. this.open();
  1037. if (e.which === KEY.ENTER) {
  1038. // do not propagate the event otherwise we open, and propagate enter which closes
  1039. killEvent(e);
  1040. return;
  1041. }
  1042. }
  1043. }));
  1044. selection.bind("click", this.bind(function (e) {
  1045. clickingInside = true;
  1046. if (this.opened()) {
  1047. this.close();
  1048. this.search.focus();
  1049. } else if (this.enabled) {
  1050. this.open();
  1051. }
  1052. killEvent(e);
  1053. clickingInside = false;
  1054. }));
  1055. dropdown.bind("click", this.bind(function() { this.search.focus(); }));
  1056. selection.delegate("abbr", "click", this.bind(function (e) {
  1057. if (!this.enabled) return;
  1058. this.clear();
  1059. killEvent(e);
  1060. this.close();
  1061. this.triggerChange();
  1062. this.search.focus();
  1063. }));
  1064. selection.bind("focus", this.bind(function() { this.search.focus(); }));
  1065. this.setPlaceholder();
  1066. this.search.bind("focus", this.bind(function() {
  1067. this.container.addClass("select2-container-active");
  1068. }));
  1069. },
  1070. clear: function() {
  1071. this.opts.element.val("");
  1072. this.selection.find("span").empty();
  1073. this.selection.removeData("select2-data");
  1074. this.setPlaceholder();
  1075. },
  1076. /**
  1077. * Sets selection based on source element's value
  1078. */
  1079. // single
  1080. initSelection: function () {
  1081. var selected;
  1082. if (this.opts.element.val() === "") {
  1083. this.updateSelection({id: "", text: ""});
  1084. this.close();
  1085. this.setPlaceholder();
  1086. } else {
  1087. var self = this;
  1088. this.opts.initSelection.call(null, this.opts.element, function(selected){
  1089. if (selected !== undefined && selected !== null) {
  1090. self.updateSelection(selected);
  1091. self.close();
  1092. self.setPlaceholder();
  1093. }
  1094. });
  1095. }
  1096. },
  1097. // single
  1098. prepareOpts: function () {
  1099. var opts = this.parent.prepareOpts.apply(this, arguments);
  1100. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1101. // install the selection initializer
  1102. opts.initSelection = function (element, callback) {
  1103. var selected = element.find(":selected");
  1104. // a single select box always has a value, no need to null check 'selected'
  1105. if ($.isFunction(callback))
  1106. callback({id: selected.attr("value"), text: selected.text()});
  1107. };
  1108. }
  1109. return opts;
  1110. },
  1111. // single
  1112. setPlaceholder: function () {
  1113. var placeholder = this.getPlaceholder();
  1114. if (this.opts.element.val() === "" && placeholder !== undefined) {
  1115. // check for a first blank option if attached to a select
  1116. if (this.select && this.select.find("option:first").text() !== "") return;
  1117. if (typeof(placeholder) === "object") {
  1118. this.updateSelection(placeholder);
  1119. } else {
  1120. this.selection.find("span").html(placeholder);
  1121. }
  1122. this.selection.addClass("select2-default");
  1123. this.selection.find("abbr").hide();
  1124. }
  1125. },
  1126. // single
  1127. postprocessResults: function (data, initial) {
  1128. var selected = 0, self = this, showSearchInput = true;
  1129. // find the selected element in the result list
  1130. this.results.find(".select2-result-selectable").each2(function (i, elm) {
  1131. if (equal(self.id(elm.data("select2-data")), self.opts.element.val())) {
  1132. selected = i;
  1133. return false;
  1134. }
  1135. });
  1136. // and highlight it
  1137. this.highlight(selected);
  1138. // hide the search box if this is the first we got the results and there are a few of them
  1139. if (initial === true) {
  1140. // TODO below we use data.results.length, but what we really need is something recursive to calc the length
  1141. // TODO in case there are optgroups
  1142. showSearchInput = this.showSearchInput = data.results.length >= this.opts.minimumResultsForSearch;
  1143. this.dropdown.find(".select2-search")[showSearchInput ? "removeClass" : "addClass"]("select2-search-hidden");
  1144. //add "select2-with-searchbox" to the container if search box is shown
  1145. $(this.dropdown, this.container)[showSearchInput ? "addClass" : "removeClass"]("select2-with-searchbox");
  1146. }
  1147. },
  1148. // single
  1149. onSelect: function (data) {
  1150. var old = this.opts.element.val();
  1151. this.opts.element.val(this.id(data));
  1152. this.updateSelection(data);
  1153. this.close();
  1154. this.search.focus();
  1155. if (!equal(old, this.id(data))) { this.triggerChange(); }
  1156. },
  1157. // single
  1158. updateSelection: function (data) {
  1159. this.selection.data("select2-data", data);
  1160. this.selection
  1161. .find("span")
  1162. .empty().append(this.opts.formatSelection(data));
  1163. this.selection.removeClass("select2-default");
  1164. if (this.opts.allowClear && this.getPlaceholder() !== undefined) {
  1165. this.selection.find("abbr").show();
  1166. }
  1167. },
  1168. // single
  1169. val: function () {
  1170. var val, data = null;
  1171. if (arguments.length === 0) {
  1172. return this.opts.element.val();
  1173. }
  1174. val = arguments[0];
  1175. if (this.select) {
  1176. // val is an id
  1177. this.select
  1178. .val(val)
  1179. .find(":selected").each2(function (i, elm) {
  1180. data = {id: elm.attr("value"), text: elm.text()};
  1181. return false;
  1182. });
  1183. this.updateSelection(data);
  1184. } else {
  1185. // val is an object. !val is true for [undefined,null,'']
  1186. this.opts.element.val(!val ? "" : this.id(val));
  1187. this.updateSelection(val);
  1188. }
  1189. this.setPlaceholder();
  1190. },
  1191. // single
  1192. clearSearch: function () {
  1193. this.search.val("");
  1194. },
  1195. // single
  1196. data: function(value) {
  1197. if (arguments.length === 0) {
  1198. return this.selection.data("select2-data");
  1199. } else {
  1200. if (!value || value === "") {
  1201. this.clear();
  1202. } else {
  1203. this.opts.element.val(!value ? "" : this.id(value));
  1204. this.updateSelection(value);
  1205. }
  1206. }
  1207. }
  1208. });
  1209. MultiSelect2 = clazz(AbstractSelect2, {
  1210. // multi
  1211. createContainer: function () {
  1212. return $("<div></div>", {
  1213. "class": "select2-container select2-container-multi",
  1214. "style": "width: " + this.getContainerWidth()
  1215. }).html([
  1216. " <ul class='select2-choices'>",
  1217. //"<li class='select2-search-choice'><span>California</span><a href="javascript:void(0)" class="select2-search-choice-close"></a></li>" ,
  1218. " <li class='select2-search-field'>" ,
  1219. " <input type='text' autocomplete='off' style='width: 25px;' class='select2-input'>" ,
  1220. " </li>" ,
  1221. "</ul>" ,
  1222. "<div class='select2-drop select2-drop-multi' style='display:none;'>" ,
  1223. " <ul class='select2-results'>" ,
  1224. " </ul>" ,
  1225. "</div>"].join(""));
  1226. },
  1227. // multi
  1228. prepareOpts: function () {
  1229. var opts = this.parent.prepareOpts.apply(this, arguments);
  1230. opts = $.extend({}, {
  1231. closeOnSelect: true
  1232. }, opts);
  1233. // TODO validate placeholder is a string if specified
  1234. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1235. // install sthe selection initializer
  1236. opts.initSelection = function (element,callback) {
  1237. var data = [];
  1238. element.find(":selected").each2(function (i, elm) {
  1239. data.push({id: elm.attr("value"), text: elm.text()});
  1240. });
  1241. if ($.isFunction(callback))
  1242. callback(data);
  1243. };
  1244. }
  1245. return opts;
  1246. },
  1247. // multi
  1248. initContainer: function () {
  1249. var selector = ".select2-choices", selection;
  1250. this.searchContainer = this.container.find(".select2-search-field");
  1251. this.selection = selection = this.container.find(selector);
  1252. this.search.bind("keydown", this.bind(function (e) {
  1253. if (!this.enabled) return;
  1254. if (e.which === KEY.BACKSPACE && this.search.val() === "") {
  1255. this.close();
  1256. var choices,
  1257. selected = selection.find(".select2-search-choice-focus");
  1258. if (selected.length > 0) {
  1259. this.unselect(selected.first());
  1260. this.search.width(10);
  1261. killEvent(e);
  1262. return;
  1263. }
  1264. choices = selection.find(".select2-search-choice");
  1265. if (choices.length > 0) {
  1266. choices.last().addClass("select2-search-choice-focus");
  1267. }
  1268. } else {
  1269. selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1270. }
  1271. if (this.opened()) {
  1272. switch (e.which) {
  1273. case KEY.UP:
  1274. case KEY.DOWN:
  1275. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1276. killEvent(e);
  1277. return;
  1278. case KEY.ENTER:
  1279. case KEY.TAB:
  1280. this.selectHighlighted();
  1281. killEvent(e);
  1282. return;
  1283. case KEY.ESC:
  1284. this.cancel(e);
  1285. killEvent(e);
  1286. return;
  1287. }
  1288. }
  1289. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.BACKSPACE || e.which === KEY.ESC) {
  1290. return;
  1291. }
  1292. this.open();
  1293. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1294. // prevent the page from scrolling
  1295. killEvent(e);
  1296. }
  1297. }));
  1298. this.search.bind("keyup", this.bind(this.resizeSearch));
  1299. this.container.delegate(selector, "click", this.bind(function (e) {
  1300. if (!this.enabled) return;
  1301. this.clearPlaceholder();
  1302. this.open();
  1303. this.focusSearch();
  1304. e.preventDefault();
  1305. }));
  1306. this.container.delegate(selector, "focus", this.bind(function () {
  1307. if (!this.enabled) return;
  1308. this.container.addClass("select2-container-active");
  1309. this.dropdown.addClass("select2-drop-active");
  1310. this.clearPlaceholder();
  1311. }));
  1312. // set the placeholder if necessary
  1313. this.clearSearch();
  1314. },
  1315. // multi
  1316. enable: function() {
  1317. if (this.enabled) return;
  1318. this.parent.enable.apply(this, arguments);
  1319. this.search.show();
  1320. },
  1321. // multi
  1322. disable: function() {
  1323. if (!this.enabled) return;
  1324. this.parent.disable.apply(this, arguments);
  1325. this.search.hide();
  1326. },
  1327. // multi
  1328. initSelection: function () {
  1329. var data;
  1330. if (this.opts.element.val() === "") {
  1331. this.updateSelection([]);
  1332. this.close();
  1333. // set the placeholder if necessary
  1334. this.clearSearch();
  1335. }
  1336. if (this.select || this.opts.element.val() !== "") {
  1337. var self = this;
  1338. this.opts.initSelection.call(null, this.opts.element, function(data){
  1339. if (data !== undefined && data !== null) {
  1340. self.updateSelection(data);
  1341. self.close();
  1342. // set the placeholder if necessary
  1343. self.clearSearch();
  1344. }
  1345. });
  1346. }
  1347. },
  1348. // multi
  1349. clearSearch: function () {
  1350. var placeholder = this.getPlaceholder();
  1351. if (placeholder !== undefined && this.getVal().length === 0 && this.search.hasClass("select2-focused") === false) {
  1352. this.search.val(placeholder).addClass("select2-default");
  1353. // stretch the search box to full width of the container so as much of the placeholder is visible as possible
  1354. this.resizeSearch();
  1355. } else {
  1356. // we set this to " " instead of "" and later clear it on focus() because there is a firefox bug
  1357. // that does not properly render the caret when the field starts out blank
  1358. this.search.val(" ").width(10);
  1359. }
  1360. },
  1361. // multi
  1362. clearPlaceholder: function () {
  1363. if (this.search.hasClass("select2-default")) {
  1364. this.search.val("").removeClass("select2-default");
  1365. } else {
  1366. // work around for the space character we set to avoid firefox caret bug
  1367. if (this.search.val() === " ") this.search.val("");
  1368. }
  1369. },
  1370. // multi
  1371. opening: function () {
  1372. this.parent.opening.apply(this, arguments);
  1373. this.clearPlaceholder();
  1374. this.resizeSearch();
  1375. this.focusSearch();
  1376. },
  1377. // multi
  1378. close: function () {
  1379. if (!this.opened()) return;
  1380. this.parent.close.apply(this, arguments);
  1381. },
  1382. // multi
  1383. focus: function () {
  1384. this.close();
  1385. this.search.focus();
  1386. },
  1387. // multi
  1388. isFocused: function () {
  1389. return this.search.hasClass("select2-focused");
  1390. },
  1391. // multi
  1392. updateSelection: function (data) {
  1393. var ids = [], filtered = [], self = this;
  1394. // filter out duplicates
  1395. $(data).each(function () {
  1396. if (indexOf(self.id(this), ids) < 0) {
  1397. ids.push(self.id(this));
  1398. filtered.push(this);
  1399. }
  1400. });
  1401. data = filtered;
  1402. this.selection.find(".select2-search-choice").remove();
  1403. $(data).each(function () {
  1404. self.addSelectedChoice(this);
  1405. });
  1406. self.postprocessResults();
  1407. },
  1408. // multi
  1409. onSelect: function (data) {
  1410. this.addSelectedChoice(data);
  1411. if (this.select) { this.postprocessResults(); }
  1412. if (this.opts.closeOnSelect) {
  1413. this.close();
  1414. this.search.width(10);
  1415. } else {
  1416. this.search.width(10);
  1417. this.resizeSearch();
  1418. }
  1419. // since its not possible to select an element that has already been
  1420. // added we do not need to check if this is a new element before firing change
  1421. this.triggerChange({ added: data });
  1422. this.focusSearch();
  1423. },
  1424. // multi
  1425. cancel: function () {
  1426. this.close();
  1427. this.focusSearch();
  1428. },
  1429. // multi
  1430. addSelectedChoice: function (data) {
  1431. var choice,
  1432. id = this.id(data),
  1433. parts = ["<li class='select2-search-choice'>",
  1434. "<span class='select2-tmp'></span>",
  1435. "<a href='javascript:void(0)' class='select2-search-choice-close' tabindex='-1'></a>",
  1436. "</li>"
  1437. ],
  1438. val = this.getVal();
  1439. choice = $(parts.join(""));
  1440. choice.find('.select2-tmp').replaceWith(this.opts.formatSelection(data));
  1441. choice.find(".select2-search-choice-close")
  1442. .bind("click dblclick", this.bind(function (e) {
  1443. if (!this.enabled) return;
  1444. this.unselect($(e.target));
  1445. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1446. killEvent(e);
  1447. this.close();
  1448. this.focusSearch();
  1449. })).bind("focus", this.bind(function () {
  1450. if (!this.enabled) return;
  1451. this.container.addClass("select2-container-active");
  1452. this.dropdown.addClass("select2-drop-active");
  1453. }));
  1454. choice.data("select2-data", data);
  1455. choice.insertBefore(this.searchContainer);
  1456. val.push(id);
  1457. this.setVal(val);
  1458. },
  1459. // multi
  1460. unselect: function (selected) {
  1461. var val = this.getVal(),
  1462. data,
  1463. index;
  1464. selected = selected.closest(".select2-search-choice");
  1465. if (selected.length === 0) {
  1466. throw "Invalid argument: " + selected + ". Must be .select2-search-choice";
  1467. }
  1468. data = selected.data("select2-data");
  1469. index = indexOf(this.id(data), val);
  1470. if (index >= 0) {
  1471. val.splice(index, 1);
  1472. this.setVal(val);
  1473. if (this.select) this.postprocessResults();
  1474. }
  1475. selected.remove();
  1476. this.triggerChange({ removed: data });
  1477. },
  1478. // multi
  1479. postprocessResults: function () {
  1480. var val = this.getVal(),
  1481. choices = this.results.find(".select2-result-selectable"),
  1482. self = this;
  1483. choices.each2(function (i, choice) {
  1484. var id = self.id(choice.data("select2-data"));
  1485. if (indexOf(id, val) >= 0) {
  1486. choice.addClass("select2-disabled");
  1487. } else {
  1488. choice.removeClass("select2-disabled");
  1489. }
  1490. });
  1491. choices.each2(function (i, choice) {
  1492. if (!choice.hasClass("select2-disabled")) {
  1493. self.highlight(i);
  1494. return false;
  1495. }
  1496. });
  1497. },
  1498. // multi
  1499. resizeSearch: function () {
  1500. var minimumWidth, left, maxWidth, containerLeft, searchWidth,
  1501. sideBorderPadding = getSideBorderPadding(this.search);
  1502. minimumWidth = measureTextWidth(this.search) + 10;
  1503. left = this.search.offset().left;
  1504. maxWidth = this.selection.width();
  1505. containerLeft = this.selection.offset().left;
  1506. searchWidth = maxWidth - (left - containerLeft) - sideBorderPadding;
  1507. if (searchWidth < minimumWidth) {
  1508. searchWidth = maxWidth - sideBorderPadding;
  1509. }
  1510. if (searchWidth < 40) {
  1511. searchWidth = maxWidth - sideBorderPadding;
  1512. }
  1513. this.search.width(searchWidth);
  1514. },
  1515. // multi
  1516. getVal: function () {
  1517. var val;
  1518. if (this.select) {
  1519. val = this.select.val();
  1520. return val === null ? [] : val;
  1521. } else {
  1522. val = this.opts.element.val();
  1523. return splitVal(val, ",");
  1524. }
  1525. },
  1526. // multi
  1527. setVal: function (val) {
  1528. var unique;
  1529. if (this.select) {
  1530. this.select.val(val);
  1531. } else {
  1532. unique = [];
  1533. // filter out duplicates
  1534. $(val).each(function () {
  1535. if (indexOf(this, unique) < 0) unique.push(this);
  1536. });
  1537. this.opts.element.val(unique.length === 0 ? "" : unique.join(","));
  1538. }
  1539. },
  1540. // multi
  1541. val: function () {
  1542. var val, data = [], self=this;
  1543. if (arguments.length === 0) {
  1544. return this.getVal();
  1545. }
  1546. val = arguments[0];
  1547. if (this.select) {
  1548. // val is a list of ids
  1549. this.setVal(val);
  1550. this.select.find(":selected").each(function () {
  1551. data.push({id: $(this).attr("value"), text: $(this).text()});
  1552. });
  1553. this.updateSelection(data);
  1554. } else {
  1555. val = (val === null) ? [] : val;
  1556. // val is a list of objects
  1557. $(val).each(function () { data.push(self.id(this)); });
  1558. this.setVal(data);
  1559. this.updateSelection(val);
  1560. }
  1561. this.clearSearch();
  1562. },
  1563. // multi
  1564. onSortStart: function() {
  1565. if (this.select) {
  1566. throw new Error("Sorting of elements is not supported when attached to <select>. Attach to <input type='hidden'/> instead.");
  1567. }
  1568. // collapse search field into 0 width so its container can be collapsed as well
  1569. this.search.width(0);
  1570. // hide the container
  1571. this.searchContainer.hide();
  1572. },
  1573. // multi
  1574. onSortEnd:function() {
  1575. var val=[], self=this;
  1576. // show search and move it to the end of the list
  1577. this.searchContainer.show();
  1578. // make sure the search container is the last item in the list
  1579. this.searchContainer.appendTo(this.searchContainer.parent());
  1580. // since we collapsed the width in dragStarted, we resize it here
  1581. this.resizeSearch();
  1582. // update selection
  1583. this.selection.find(".select2-search-choice").each(function() {
  1584. val.push(self.opts.id($(this).data("select2-data")));
  1585. });
  1586. this.setVal(val);
  1587. this.triggerChange();
  1588. },
  1589. // multi
  1590. data: function(values) {
  1591. var self=this, ids;
  1592. if (arguments.length === 0) {
  1593. return this.selection
  1594. .find(".select2-search-choice")
  1595. .map(function() { return $(this).data("select2-data"); })
  1596. .get();
  1597. } else {
  1598. ids = $.map(values, function(e) { return self.opts.id(e)});
  1599. this.setVal(ids);
  1600. this.updateSelection(values);
  1601. this.clearSearch();
  1602. }
  1603. }
  1604. });
  1605. $.fn.select2 = function () {
  1606. var args = Array.prototype.slice.call(arguments, 0),
  1607. opts,
  1608. select2,
  1609. value, multiple, allowedMethods = ["val", "destroy", "open", "close", "focus", "isFocused", "container", "onSortStart", "onSortEnd", "enable", "disable", "positionDropdown", "data"];
  1610. this.each(function () {
  1611. if (args.length === 0 || typeof(args[0]) === "object") {
  1612. opts = args.length === 0 ? {} : $.extend({}, args[0]);
  1613. opts.element = $(this);
  1614. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1615. multiple = opts.element.attr("multiple");
  1616. } else {
  1617. multiple = opts.multiple || false;
  1618. if ("tags" in opts) {opts.multiple = multiple = true;}
  1619. }
  1620. select2 = multiple ? new MultiSelect2() : new SingleSelect2();
  1621. select2.init(opts);
  1622. } else if (typeof(args[0]) === "string") {
  1623. if (indexOf(args[0], allowedMethods) < 0) {
  1624. throw "Unknown method: " + args[0];
  1625. }
  1626. value = undefined;
  1627. select2 = $(this).data("select2");
  1628. if (select2 === undefined) return;
  1629. if (args[0] === "container") {
  1630. value=select2.container;
  1631. } else {
  1632. value = select2[args[0]].apply(select2, args.slice(1));
  1633. }
  1634. if (value !== undefined) {return false;}
  1635. } else {
  1636. throw "Invalid arguments to select2 plugin: " + args;
  1637. }
  1638. });
  1639. return (value === undefined) ? this : value;
  1640. };
  1641. // exports
  1642. window.Select2 = {
  1643. query: {
  1644. ajax: ajax,
  1645. local: local,
  1646. tags: tags
  1647. }, util: {
  1648. debounce: debounce,
  1649. markMatch: markMatch
  1650. }, "class": {
  1651. "abstract": AbstractSelect2,
  1652. "single": SingleSelect2,
  1653. "multi": MultiSelect2
  1654. }
  1655. };
  1656. }(jQuery));