select2.js 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  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 = $("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. //Custom tags separator.
  469. opts.separator = opts.separator || ",";
  470. if (select) {
  471. // these options are not allowed when attached to a select because they are picked up off the element itself
  472. $.each(["id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags"], function () {
  473. if (this in opts) {
  474. throw new Error("Option '" + this + "' is not allowed for Select2 when attached to a <select> element.");
  475. }
  476. });
  477. }
  478. opts = $.extend({}, {
  479. containerCss: {},
  480. dropdownCss: {},
  481. containerCssClass: "",
  482. dropdownCssClass: "",
  483. populateResults: function(container, results, query) {
  484. var uidToData={}, populate, markup=[], uid, data, result, children, formatted, id=this.opts.id;
  485. populate=function(results, container, depth) {
  486. var i, l, uid, result, selectable, compound, node, label, innerContainer;
  487. for (i = 0, l = results.length; i < l; i = i + 1) {
  488. result=results[i];
  489. selectable=id(result) !== undefined;
  490. compound=("children" in result) && result.children.length > 0;
  491. node=$("<li></li>");
  492. node.addClass("select2-results-dept-"+depth);
  493. node.addClass("select2-result");
  494. node.addClass(selectable ? "select2-result-selectable" : "select2-result-unselectable");
  495. if (compound) { node.addClass("select2-result-with-children"); }
  496. label=$("<div></div>");
  497. label.addClass("select2-result-label");
  498. var formatted=opts.formatResult(result, label, query);
  499. if (formatted!==undefined) {
  500. label.html(formatted);
  501. }
  502. node.append(label);
  503. if (compound) {
  504. innerContainer=$("<ul></ul>");
  505. innerContainer.addClass("select2-result-sub");
  506. populate(result.children, innerContainer, depth+1);
  507. node.append(innerContainer);
  508. }
  509. node.data("select2-data", result);
  510. container.append(node);
  511. }
  512. };
  513. populate(results, container, 0);
  514. },
  515. formatResult: function(result, container, query) {
  516. var markup=[];
  517. markMatch(result.text, query.term, markup);
  518. return markup.join("");
  519. },
  520. formatSelection: function (data, container) {
  521. return data.text;
  522. },
  523. formatNoMatches: function () { return "No matches found"; },
  524. formatInputTooShort: function (input, min) { return "Please enter " + (min - input.length) + " more characters"; },
  525. formatLoadMore: function (pageNumber) { return "Loading more results..."; },
  526. minimumResultsForSearch: 0,
  527. minimumInputLength: 0,
  528. id: function (e) { return e.id; },
  529. matcher: function(term, text) {
  530. return text.toUpperCase().indexOf(term.toUpperCase()) >= 0;
  531. }
  532. }, opts);
  533. if (typeof(opts.id) !== "function") {
  534. idKey = opts.id;
  535. opts.id = function (e) { return e[idKey]; };
  536. }
  537. if (select) {
  538. opts.query = this.bind(function (query) {
  539. var data = { results: [], more: false },
  540. term = query.term,
  541. children, firstChild, process;
  542. process=function(element, collection) {
  543. var group;
  544. if (element.is("option")) {
  545. if (query.matcher(term, element.text())) {
  546. collection.push({id:element.attr("value"), text:element.text(), element: element.get()});
  547. }
  548. } else if (element.is("optgroup")) {
  549. group={text:element.attr("label"), children:[], element: element.get()};
  550. element.children().each2(function(i, elm) { process(elm, group.children); });
  551. if (group.children.length>0) {
  552. collection.push(group);
  553. }
  554. }
  555. };
  556. children=element.children();
  557. // ignore the placeholder option if there is one
  558. if (this.getPlaceholder() !== undefined && children.length > 0) {
  559. firstChild = children[0];
  560. if ($(firstChild).text() === "") {
  561. children=children.not(firstChild);
  562. }
  563. }
  564. children.each2(function(i, elm) { process(elm, data.results); });
  565. query.callback(data);
  566. });
  567. // this is needed because inside val() we construct choices from options and there id is hardcoded
  568. opts.id=function(e) { return e.id; };
  569. } else {
  570. if (!("query" in opts)) {
  571. if ("ajax" in opts) {
  572. opts.query = ajax(opts.ajax);
  573. } else if ("data" in opts) {
  574. opts.query = local(opts.data);
  575. } else if ("tags" in opts) {
  576. opts.query = tags(opts.tags);
  577. opts.createSearchChoice = function (term) { return {id: term, text: term}; };
  578. opts.initSelection = function (element, callback) {
  579. var data = [];
  580. $(splitVal(element.val(), opts.separator)).each(function () {
  581. data.push({id: this, text: this});
  582. });
  583. callback(data);
  584. };
  585. }
  586. }
  587. }
  588. if (typeof(opts.query) !== "function") {
  589. throw "query function not defined for Select2 " + opts.element.attr("id");
  590. }
  591. return opts;
  592. },
  593. /**
  594. * Monitor the original element for changes and update select2 accordingly
  595. */
  596. // abstract
  597. monitorSource: function () {
  598. this.opts.element.bind("change.select2", this.bind(function (e) {
  599. if (this.opts.element.data("select2-change-triggered") !== true) {
  600. this.initSelection();
  601. }
  602. }));
  603. },
  604. /**
  605. * Triggers the change event on the source element
  606. */
  607. // abstract
  608. triggerChange: function (details) {
  609. details = details || {};
  610. details= $.extend({}, details, { type: "change", val: this.val() });
  611. // prevents recursive triggering
  612. this.opts.element.data("select2-change-triggered", true);
  613. this.opts.element.trigger(details);
  614. this.opts.element.data("select2-change-triggered", false);
  615. },
  616. // abstract
  617. enable: function() {
  618. if (this.enabled) return;
  619. this.enabled=true;
  620. this.container.removeClass("select2-container-disabled");
  621. },
  622. // abstract
  623. disable: function() {
  624. if (!this.enabled) return;
  625. this.close();
  626. this.enabled=false;
  627. this.container.addClass("select2-container-disabled");
  628. },
  629. // abstract
  630. opened: function () {
  631. return this.container.hasClass("select2-dropdown-open");
  632. },
  633. // abstract
  634. positionDropdown: function() {
  635. var offset = this.container.offset(),
  636. height = this.container.outerHeight(),
  637. width = this.container.outerWidth(),
  638. dropHeight = this.dropdown.outerHeight(),
  639. viewportBottom = document.body.scrollTop + document.documentElement.clientHeight,
  640. dropTop = offset.top + height,
  641. enoughRoomBelow = dropTop + dropHeight <= viewportBottom,
  642. enoughRoomAbove = (offset.top - dropHeight) >= document.body.scrollTop,
  643. aboveNow = this.dropdown.hasClass("select2-drop-above"),
  644. above,
  645. css;
  646. // always prefer the current above/below alignment, unless there is not enough room
  647. if (aboveNow) {
  648. above = true;
  649. if (!enoughRoomAbove && enoughRoomBelow) above = false;
  650. } else {
  651. above = false;
  652. if (!enoughRoomBelow && enoughRoomAbove) above = true;
  653. }
  654. if (above) {
  655. dropTop = offset.top - dropHeight;
  656. this.container.addClass("select2-drop-above");
  657. this.dropdown.addClass("select2-drop-above");
  658. }
  659. else {
  660. this.container.removeClass("select2-drop-above");
  661. this.dropdown.removeClass("select2-drop-above");
  662. }
  663. css = {
  664. top:dropTop,
  665. left:offset.left,
  666. width:width
  667. };
  668. this.dropdown.css(css);
  669. },
  670. // abstract
  671. shouldOpen: function() {
  672. var event;
  673. if (this.opened()) return false;
  674. event = jQuery.Event("open");
  675. this.opts.element.trigger(event);
  676. return !event.isDefaultPrevented();
  677. },
  678. // abstract
  679. clearDropdownAlignmentPreference: function() {
  680. // clear the classes used to figure out the preference of where the dropdown should be opened
  681. this.container.removeClass("select2-drop-above");
  682. this.dropdown.removeClass("select2-drop-above");
  683. },
  684. /**
  685. * Opens the dropdown
  686. *
  687. * @return {Boolean} whether or not dropdown was opened. This method will return false if, for example,
  688. * the dropdown is already open, or if the 'open' event listener on the element called preventDefault().
  689. */
  690. // abstract
  691. open: function () {
  692. if (!this.shouldOpen()) return false;
  693. window.setTimeout(this.bind(this.opening), 1);
  694. return true;
  695. },
  696. /**
  697. * Performs the opening of the dropdown
  698. */
  699. // abstract
  700. opening: function() {
  701. this.clearDropdownAlignmentPreference();
  702. if (this.search.val() === " ") { this.search.val(""); }
  703. this.dropdown.addClass("select2-drop-active");
  704. this.positionDropdown();
  705. this.updateResults(true);
  706. if(this.dropdown[0] !== this.body.children().last()[0]) {
  707. this.dropdown.detach().appendTo(this.body);
  708. }
  709. this.dropdown.show();
  710. this.ensureHighlightVisible();
  711. this.focusSearch();
  712. this.container.addClass("select2-dropdown-open").addClass("select2-container-active");
  713. },
  714. // abstract
  715. close: function () {
  716. if (!this.opened()) return;
  717. this.clearDropdownAlignmentPreference();
  718. this.dropdown.hide();
  719. this.container.removeClass("select2-dropdown-open");
  720. this.results.empty();
  721. this.clearSearch();
  722. },
  723. // abstract
  724. clearSearch: function () {
  725. },
  726. // abstract
  727. ensureHighlightVisible: function () {
  728. var results = this.results, children, index, child, hb, rb, y, more;
  729. index = this.highlight();
  730. if (index < 0) return;
  731. if (index == 0) {
  732. // if the first element is highlighted scroll all the way to the top,
  733. // that way any unselectable headers above it will also be scrolled
  734. // into view
  735. results.scrollTop(0);
  736. return;
  737. }
  738. children = results.find(".select2-result-selectable");
  739. child = $(children[index]);
  740. hb = child.offset().top + child.outerHeight();
  741. // if this is the last child lets also make sure select2-more-results is visible
  742. if (index === children.length - 1) {
  743. more = results.find("li.select2-more-results");
  744. if (more.length > 0) {
  745. hb = more.offset().top + more.outerHeight();
  746. }
  747. }
  748. rb = results.offset().top + results.outerHeight();
  749. if (hb > rb) {
  750. results.scrollTop(results.scrollTop() + (hb - rb));
  751. }
  752. y = child.offset().top - results.offset().top;
  753. // make sure the top of the element is visible
  754. if (y < 0) {
  755. results.scrollTop(results.scrollTop() + y); // y is negative
  756. }
  757. },
  758. // abstract
  759. moveHighlight: function (delta) {
  760. var choices = this.results.find(".select2-result-selectable"),
  761. index = this.highlight();
  762. while (index > -1 && index < choices.length) {
  763. index += delta;
  764. var choice = $(choices[index]);
  765. if (choice.hasClass("select2-result-selectable") && !choice.hasClass("select2-disabled")) {
  766. this.highlight(index);
  767. break;
  768. }
  769. }
  770. },
  771. // abstract
  772. highlight: function (index) {
  773. var choices = this.results.find(".select2-result-selectable");
  774. if (arguments.length === 0) {
  775. return indexOf(choices.filter(".select2-highlighted")[0], choices.get());
  776. }
  777. if (index >= choices.length) index = choices.length - 1;
  778. if (index < 0) index = 0;
  779. choices.removeClass("select2-highlighted");
  780. $(choices[index]).addClass("select2-highlighted");
  781. this.ensureHighlightVisible();
  782. //if (this.opened()) this.focusSearch();
  783. },
  784. // abstract
  785. highlightUnderEvent: function (event) {
  786. var el = $(event.target).closest(".select2-result-selectable");
  787. if (el.length > 0 && !el.is(".select2-highlighted")) {
  788. var choices = this.results.find('.select2-result-selectable');
  789. this.highlight(choices.index(el));
  790. } else if (el.length == 0) {
  791. // if we are over an unselectable item remove al highlights
  792. this.results.find(".select2-highlighted").removeClass("select2-highlighted");
  793. }
  794. },
  795. // abstract
  796. loadMoreIfNeeded: function () {
  797. var results = this.results,
  798. more = results.find("li.select2-more-results"),
  799. below, // pixels the element is below the scroll fold, below==0 is when the element is starting to be visible
  800. offset = -1, // index of first element without data
  801. page = this.resultsPage + 1,
  802. self=this,
  803. term=this.search.val(),
  804. context=this.context;
  805. if (more.length === 0) return;
  806. below = more.offset().top - results.offset().top - results.height();
  807. if (below <= 0) {
  808. more.addClass("select2-active");
  809. this.opts.query({
  810. term: term,
  811. page: page,
  812. context: context,
  813. matcher: this.opts.matcher,
  814. callback: this.bind(function (data) {
  815. self.opts.populateResults.call(this, results, data.results, {term: term, page: page, context:context});
  816. if (data.more===true) {
  817. more.detach().appendTo(results.children(":last")).text(self.opts.formatLoadMore(page+1));
  818. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  819. } else {
  820. more.remove();
  821. }
  822. self.positionDropdown();
  823. self.resultsPage = page;
  824. })});
  825. }
  826. },
  827. /**
  828. * @param initial whether or not this is the call to this method right after the dropdown has been opened
  829. */
  830. // abstract
  831. updateResults: function (initial) {
  832. var search = this.search, results = this.results, opts = this.opts, self=this;
  833. // if the search is currently hidden we do not alter the results
  834. if (initial !== true && this.showSearchInput === false) {
  835. return;
  836. }
  837. search.addClass("select2-active");
  838. function postRender() {
  839. results.scrollTop(0);
  840. search.removeClass("select2-active");
  841. self.positionDropdown();
  842. }
  843. function render(html) {
  844. results.html(html);
  845. postRender();
  846. }
  847. if (search.val().length < opts.minimumInputLength) {
  848. render("<li class='select2-no-results'>" + opts.formatInputTooShort(search.val(), opts.minimumInputLength) + "</li>");
  849. return;
  850. }
  851. this.resultsPage = 1;
  852. opts.query({
  853. term: search.val(),
  854. page: this.resultsPage,
  855. context: null,
  856. matcher: opts.matcher,
  857. callback: this.bind(function (data) {
  858. var def; // default choice
  859. // save context, if any
  860. this.context = (data.context===undefined) ? null : data.context;
  861. // create a default choice and prepend it to the list
  862. if (this.opts.createSearchChoice && search.val() !== "") {
  863. def = this.opts.createSearchChoice.call(null, search.val(), data.results);
  864. if (def !== undefined && def !== null && self.id(def) !== undefined && self.id(def) !== null) {
  865. if ($(data.results).filter(
  866. function () {
  867. return equal(self.id(this), self.id(def));
  868. }).length === 0) {
  869. data.results.unshift(def);
  870. }
  871. }
  872. }
  873. if (data.results.length === 0) {
  874. render("<li class='select2-no-results'>" + opts.formatNoMatches(search.val()) + "</li>");
  875. return;
  876. }
  877. results.empty();
  878. self.opts.populateResults.call(this, results, data.results, {term: search.val(), page: this.resultsPage, context:null});
  879. postRender();
  880. if (data.more === true) {
  881. results.children().filter(":last").append("<li class='select2-more-results'>" + opts.formatLoadMore(this.resultsPage) + "</li>");
  882. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  883. }
  884. this.postprocessResults(data, initial);
  885. })});
  886. },
  887. // abstract
  888. cancel: function () {
  889. this.close();
  890. },
  891. // abstract
  892. blur: function () {
  893. this.close();
  894. this.container.removeClass("select2-container-active");
  895. this.dropdown.removeClass("select2-drop-active");
  896. // synonymous to .is(':focus'), which is available in jquery >= 1.6
  897. if (this.search[0] === document.activeElement) { this.search.blur(); }
  898. this.clearSearch();
  899. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  900. },
  901. // abstract
  902. focusSearch: function () {
  903. /* we do this in a timeout so that current event processing can complete before this code is executed.
  904. this makes sure the search field is focussed even if the current event would blur it */
  905. window.setTimeout(this.bind(function () {
  906. this.search.focus();
  907. }), 10);
  908. },
  909. // abstract
  910. selectHighlighted: function () {
  911. var data = this.results.find(".select2-highlighted").not(".select2-disabled").closest('.select2-result-selectable').data("select2-data");
  912. if (data) {
  913. this.onSelect(data);
  914. }
  915. },
  916. // abstract
  917. getPlaceholder: function () {
  918. return this.opts.element.attr("placeholder") ||
  919. this.opts.element.attr("data-placeholder") || // jquery 1.4 compat
  920. this.opts.element.data("placeholder") ||
  921. this.opts.placeholder;
  922. },
  923. /**
  924. * Get the desired width for the container element. This is
  925. * derived first from option `width` passed to select2, then
  926. * the inline 'style' on the original element, and finally
  927. * falls back to the jQuery calculated element width.
  928. *
  929. * @returns The width string (with units) for the container.
  930. */
  931. // abstract
  932. getContainerWidth: function () {
  933. var style, attrs, matches, i, l;
  934. // see if there is width specified in opts
  935. if (this.opts.width !== undefined)
  936. return this.opts.width;
  937. // next check if there is inline style on the element that contains width
  938. style = this.opts.element.attr('style');
  939. if (style !== undefined) {
  940. attrs = style.split(';');
  941. for (i = 0, l = attrs.length; i < l; i = i + 1) {
  942. matches = attrs[i].replace(/\s/g, '')
  943. .match(/width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/);
  944. if (matches !== null && matches.length >= 1)
  945. return matches[1];
  946. }
  947. }
  948. // next check if css('width') can resolve a width that is percent based, this is sometimes possible
  949. // when attached to input type=hidden or elements hidden via css
  950. style = this.opts.element.css('width');
  951. if (style.indexOf("%") > 0) return style;
  952. // finally, fallback on the calculated width of the element
  953. return (this.opts.element.width() === 0 ? 'auto' : this.opts.element.outerWidth() + 'px');
  954. }
  955. });
  956. SingleSelect2 = clazz(AbstractSelect2, {
  957. // single
  958. createContainer: function () {
  959. return $("<div></div>", {
  960. "class": "select2-container",
  961. "style": "width: " + this.getContainerWidth()
  962. }).html([
  963. " <a href='javascript:void(0)' class='select2-choice'>",
  964. " <span></span><abbr class='select2-search-choice-close' style='display:none;'></abbr>",
  965. " <div><b></b></div>" ,
  966. "</a>",
  967. " <div class='select2-drop select2-offscreen'>" ,
  968. " <div class='select2-search'>" ,
  969. " <input type='text' autocomplete='off' class='select2-input'/>" ,
  970. " </div>" ,
  971. " <ul class='select2-results'>" ,
  972. " </ul>" ,
  973. "</div>"].join(""));
  974. },
  975. // single
  976. opening: function () {
  977. this.parent.opening.apply(this, arguments);
  978. this.dropdown.removeClass("select2-offscreen");
  979. },
  980. // single
  981. close: function () {
  982. if (!this.opened()) return;
  983. this.parent.close.apply(this, arguments);
  984. this.dropdown.removeAttr("style").addClass("select2-offscreen").insertAfter(this.selection).show();
  985. },
  986. // single
  987. focus: function () {
  988. this.close();
  989. this.search.focus();
  990. },
  991. // single
  992. isFocused: function () {
  993. return this.selection[0] === document.activeElement;
  994. },
  995. // single
  996. cancel: function () {
  997. this.parent.cancel.apply(this, arguments);
  998. this.search.focus();
  999. },
  1000. // single
  1001. initContainer: function () {
  1002. var selection,
  1003. container = this.container,
  1004. dropdown = this.dropdown,
  1005. clickingInside = false;
  1006. this.selection = selection = container.find(".select2-choice");
  1007. this.search.bind("keydown", this.bind(function (e) {
  1008. if (!this.enabled) return;
  1009. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN || e.which === KEY.SPACE) {
  1010. // prevent the page from scrolling
  1011. killEvent(e);
  1012. return;
  1013. }
  1014. if (this.opened()) {
  1015. switch (e.which) {
  1016. case KEY.UP:
  1017. case KEY.DOWN:
  1018. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1019. killEvent(e);
  1020. return;
  1021. case KEY.TAB:
  1022. case KEY.ENTER:
  1023. this.selectHighlighted();
  1024. killEvent(e);
  1025. return;
  1026. case KEY.ESC:
  1027. this.cancel(e);
  1028. killEvent(e);
  1029. return;
  1030. }
  1031. } else {
  1032. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) {
  1033. return;
  1034. }
  1035. this.open();
  1036. if (e.which === KEY.ENTER) {
  1037. // do not propagate the event otherwise we open, and propagate enter which closes
  1038. killEvent(e);
  1039. return;
  1040. }
  1041. }
  1042. }));
  1043. selection.bind("click", this.bind(function (e) {
  1044. clickingInside = true;
  1045. if (this.opened()) {
  1046. this.close();
  1047. this.search.focus();
  1048. } else if (this.enabled) {
  1049. this.open();
  1050. }
  1051. killEvent(e);
  1052. clickingInside = false;
  1053. }));
  1054. dropdown.bind("click", this.bind(function() { this.search.focus(); }));
  1055. selection.delegate("abbr", "click", this.bind(function (e) {
  1056. if (!this.enabled) return;
  1057. this.clear();
  1058. killEvent(e);
  1059. this.close();
  1060. this.triggerChange();
  1061. this.search.focus();
  1062. }));
  1063. selection.bind("focus", this.bind(function() { this.search.focus(); }));
  1064. this.setPlaceholder();
  1065. this.search.bind("focus", this.bind(function() {
  1066. this.container.addClass("select2-container-active");
  1067. }));
  1068. },
  1069. clear: function() {
  1070. this.opts.element.val("");
  1071. this.selection.find("span").empty();
  1072. this.selection.removeData("select2-data");
  1073. this.setPlaceholder();
  1074. },
  1075. /**
  1076. * Sets selection based on source element's value
  1077. */
  1078. // single
  1079. initSelection: function () {
  1080. var selected;
  1081. if (this.opts.element.val() === "") {
  1082. this.updateSelection({id: "", text: ""});
  1083. this.close();
  1084. this.setPlaceholder();
  1085. } else {
  1086. var self = this;
  1087. this.opts.initSelection.call(null, this.opts.element, function(selected){
  1088. if (selected !== undefined && selected !== null) {
  1089. self.updateSelection(selected);
  1090. self.close();
  1091. self.setPlaceholder();
  1092. }
  1093. });
  1094. }
  1095. },
  1096. // single
  1097. prepareOpts: function () {
  1098. var opts = this.parent.prepareOpts.apply(this, arguments);
  1099. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1100. // install the selection initializer
  1101. opts.initSelection = function (element, callback) {
  1102. var selected = element.find(":selected");
  1103. // a single select box always has a value, no need to null check 'selected'
  1104. if ($.isFunction(callback))
  1105. callback({id: selected.attr("value"), text: selected.text()});
  1106. };
  1107. }
  1108. return opts;
  1109. },
  1110. // single
  1111. setPlaceholder: function () {
  1112. var placeholder = this.getPlaceholder();
  1113. if (this.opts.element.val() === "" && placeholder !== undefined) {
  1114. // check for a first blank option if attached to a select
  1115. if (this.select && this.select.find("option:first").text() !== "") return;
  1116. if (typeof(placeholder) === "object") {
  1117. this.updateSelection(placeholder);
  1118. } else {
  1119. this.selection.find("span").html(placeholder);
  1120. }
  1121. this.selection.addClass("select2-default");
  1122. this.selection.find("abbr").hide();
  1123. }
  1124. },
  1125. // single
  1126. postprocessResults: function (data, initial) {
  1127. var selected = 0, self = this, showSearchInput = true;
  1128. // find the selected element in the result list
  1129. this.results.find(".select2-result-selectable").each2(function (i, elm) {
  1130. if (equal(self.id(elm.data("select2-data")), self.opts.element.val())) {
  1131. selected = i;
  1132. return false;
  1133. }
  1134. });
  1135. // and highlight it
  1136. this.highlight(selected);
  1137. // hide the search box if this is the first we got the results and there are a few of them
  1138. if (initial === true) {
  1139. // TODO below we use data.results.length, but what we really need is something recursive to calc the length
  1140. // TODO in case there are optgroups
  1141. showSearchInput = this.showSearchInput = data.results.length >= this.opts.minimumResultsForSearch;
  1142. this.dropdown.find(".select2-search")[showSearchInput ? "removeClass" : "addClass"]("select2-search-hidden");
  1143. //add "select2-with-searchbox" to the container if search box is shown
  1144. $(this.dropdown, this.container)[showSearchInput ? "addClass" : "removeClass"]("select2-with-searchbox");
  1145. }
  1146. },
  1147. // single
  1148. onSelect: function (data) {
  1149. var old = this.opts.element.val();
  1150. this.opts.element.val(this.id(data));
  1151. this.updateSelection(data);
  1152. this.close();
  1153. this.search.focus();
  1154. if (!equal(old, this.id(data))) { this.triggerChange(); }
  1155. },
  1156. // single
  1157. updateSelection: function (data) {
  1158. var container=this.selection.find("span"), formatted;
  1159. this.selection.data("select2-data", data);
  1160. container.empty();
  1161. formatted=this.opts.formatSelection(data, container);
  1162. if (formatted !== undefined) {
  1163. container.append(formatted);
  1164. }
  1165. this.selection.removeClass("select2-default");
  1166. if (this.opts.allowClear && this.getPlaceholder() !== undefined) {
  1167. this.selection.find("abbr").show();
  1168. }
  1169. },
  1170. // single
  1171. val: function () {
  1172. var val, data = null;
  1173. if (arguments.length === 0) {
  1174. return this.opts.element.val();
  1175. }
  1176. val = arguments[0];
  1177. if (this.select) {
  1178. // val is an id
  1179. this.select
  1180. .val(val)
  1181. .find(":selected").each2(function (i, elm) {
  1182. data = {id: elm.attr("value"), text: elm.text()};
  1183. return false;
  1184. });
  1185. this.updateSelection(data);
  1186. } else {
  1187. // val is an object. !val is true for [undefined,null,'']
  1188. this.opts.element.val(!val ? "" : this.id(val));
  1189. this.updateSelection(val);
  1190. }
  1191. this.setPlaceholder();
  1192. },
  1193. // single
  1194. clearSearch: function () {
  1195. this.search.val("");
  1196. },
  1197. // single
  1198. data: function(value) {
  1199. if (arguments.length === 0) {
  1200. return this.selection.data("select2-data");
  1201. } else {
  1202. if (!value || value === "") {
  1203. this.clear();
  1204. } else {
  1205. this.opts.element.val(!value ? "" : this.id(value));
  1206. this.updateSelection(value);
  1207. }
  1208. }
  1209. }
  1210. });
  1211. MultiSelect2 = clazz(AbstractSelect2, {
  1212. // multi
  1213. createContainer: function () {
  1214. return $("<div></div>", {
  1215. "class": "select2-container select2-container-multi",
  1216. "style": "width: " + this.getContainerWidth()
  1217. }).html([
  1218. " <ul class='select2-choices'>",
  1219. //"<li class='select2-search-choice'><span>California</span><a href="javascript:void(0)" class="select2-search-choice-close"></a></li>" ,
  1220. " <li class='select2-search-field'>" ,
  1221. " <input type='text' autocomplete='off' style='width: 25px;' class='select2-input'>" ,
  1222. " </li>" ,
  1223. "</ul>" ,
  1224. "<div class='select2-drop select2-drop-multi' style='display:none;'>" ,
  1225. " <ul class='select2-results'>" ,
  1226. " </ul>" ,
  1227. "</div>"].join(""));
  1228. },
  1229. // multi
  1230. prepareOpts: function () {
  1231. var opts = this.parent.prepareOpts.apply(this, arguments);
  1232. opts = $.extend({}, {
  1233. closeOnSelect: true
  1234. }, opts);
  1235. // TODO validate placeholder is a string if specified
  1236. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1237. // install sthe selection initializer
  1238. opts.initSelection = function (element,callback) {
  1239. var data = [];
  1240. element.find(":selected").each2(function (i, elm) {
  1241. data.push({id: elm.attr("value"), text: elm.text()});
  1242. });
  1243. if ($.isFunction(callback))
  1244. callback(data);
  1245. };
  1246. }
  1247. return opts;
  1248. },
  1249. // multi
  1250. initContainer: function () {
  1251. var selector = ".select2-choices", selection;
  1252. this.searchContainer = this.container.find(".select2-search-field");
  1253. this.selection = selection = this.container.find(selector);
  1254. this.search.bind("keydown", this.bind(function (e) {
  1255. if (!this.enabled) return;
  1256. if (e.which === KEY.BACKSPACE && this.search.val() === "") {
  1257. this.close();
  1258. var choices,
  1259. selected = selection.find(".select2-search-choice-focus");
  1260. if (selected.length > 0) {
  1261. this.unselect(selected.first());
  1262. this.search.width(10);
  1263. killEvent(e);
  1264. return;
  1265. }
  1266. choices = selection.find(".select2-search-choice");
  1267. if (choices.length > 0) {
  1268. choices.last().addClass("select2-search-choice-focus");
  1269. }
  1270. } else {
  1271. selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1272. }
  1273. if (this.opened()) {
  1274. switch (e.which) {
  1275. case KEY.UP:
  1276. case KEY.DOWN:
  1277. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1278. killEvent(e);
  1279. return;
  1280. case KEY.ENTER:
  1281. case KEY.TAB:
  1282. this.selectHighlighted();
  1283. killEvent(e);
  1284. return;
  1285. case KEY.ESC:
  1286. this.cancel(e);
  1287. killEvent(e);
  1288. return;
  1289. }
  1290. }
  1291. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.BACKSPACE || e.which === KEY.ESC) {
  1292. return;
  1293. }
  1294. this.open();
  1295. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1296. // prevent the page from scrolling
  1297. killEvent(e);
  1298. }
  1299. }));
  1300. this.search.bind("keyup", this.bind(this.resizeSearch));
  1301. this.container.delegate(selector, "click", this.bind(function (e) {
  1302. if (!this.enabled) return;
  1303. this.clearPlaceholder();
  1304. this.open();
  1305. this.focusSearch();
  1306. e.preventDefault();
  1307. }));
  1308. this.container.delegate(selector, "focus", this.bind(function () {
  1309. if (!this.enabled) return;
  1310. this.container.addClass("select2-container-active");
  1311. this.dropdown.addClass("select2-drop-active");
  1312. this.clearPlaceholder();
  1313. }));
  1314. // set the placeholder if necessary
  1315. this.clearSearch();
  1316. },
  1317. // multi
  1318. enable: function() {
  1319. if (this.enabled) return;
  1320. this.parent.enable.apply(this, arguments);
  1321. this.search.show();
  1322. },
  1323. // multi
  1324. disable: function() {
  1325. if (!this.enabled) return;
  1326. this.parent.disable.apply(this, arguments);
  1327. this.search.hide();
  1328. },
  1329. // multi
  1330. initSelection: function () {
  1331. var data;
  1332. if (this.opts.element.val() === "") {
  1333. this.updateSelection([]);
  1334. this.close();
  1335. // set the placeholder if necessary
  1336. this.clearSearch();
  1337. }
  1338. if (this.select || this.opts.element.val() !== "") {
  1339. var self = this;
  1340. this.opts.initSelection.call(null, this.opts.element, function(data){
  1341. if (data !== undefined && data !== null) {
  1342. self.updateSelection(data);
  1343. self.close();
  1344. // set the placeholder if necessary
  1345. self.clearSearch();
  1346. }
  1347. });
  1348. }
  1349. },
  1350. // multi
  1351. clearSearch: function () {
  1352. var placeholder = this.getPlaceholder();
  1353. if (placeholder !== undefined && this.getVal().length === 0 && this.search.hasClass("select2-focused") === false) {
  1354. this.search.val(placeholder).addClass("select2-default");
  1355. // stretch the search box to full width of the container so as much of the placeholder is visible as possible
  1356. this.resizeSearch();
  1357. } else {
  1358. // we set this to " " instead of "" and later clear it on focus() because there is a firefox bug
  1359. // that does not properly render the caret when the field starts out blank
  1360. this.search.val(" ").width(10);
  1361. }
  1362. },
  1363. // multi
  1364. clearPlaceholder: function () {
  1365. if (this.search.hasClass("select2-default")) {
  1366. this.search.val("").removeClass("select2-default");
  1367. } else {
  1368. // work around for the space character we set to avoid firefox caret bug
  1369. if (this.search.val() === " ") this.search.val("");
  1370. }
  1371. },
  1372. // multi
  1373. opening: function () {
  1374. this.parent.opening.apply(this, arguments);
  1375. this.clearPlaceholder();
  1376. this.resizeSearch();
  1377. this.focusSearch();
  1378. },
  1379. // multi
  1380. close: function () {
  1381. if (!this.opened()) return;
  1382. this.parent.close.apply(this, arguments);
  1383. },
  1384. // multi
  1385. focus: function () {
  1386. this.close();
  1387. this.search.focus();
  1388. },
  1389. // multi
  1390. isFocused: function () {
  1391. return this.search.hasClass("select2-focused");
  1392. },
  1393. // multi
  1394. updateSelection: function (data) {
  1395. var ids = [], filtered = [], self = this;
  1396. // filter out duplicates
  1397. $(data).each(function () {
  1398. if (indexOf(self.id(this), ids) < 0) {
  1399. ids.push(self.id(this));
  1400. filtered.push(this);
  1401. }
  1402. });
  1403. data = filtered;
  1404. this.selection.find(".select2-search-choice").remove();
  1405. $(data).each(function () {
  1406. self.addSelectedChoice(this);
  1407. });
  1408. self.postprocessResults();
  1409. },
  1410. // multi
  1411. onSelect: function (data) {
  1412. this.addSelectedChoice(data);
  1413. if (this.select) { this.postprocessResults(); }
  1414. if (this.opts.closeOnSelect) {
  1415. this.close();
  1416. this.search.width(10);
  1417. } else {
  1418. this.search.width(10);
  1419. this.resizeSearch();
  1420. }
  1421. // since its not possible to select an element that has already been
  1422. // added we do not need to check if this is a new element before firing change
  1423. this.triggerChange({ added: data });
  1424. this.focusSearch();
  1425. },
  1426. // multi
  1427. cancel: function () {
  1428. this.close();
  1429. this.focusSearch();
  1430. },
  1431. // multi
  1432. addSelectedChoice: function (data) {
  1433. var choice=$("<li class='select2-search-choice'></li>"),
  1434. id = this.id(data),
  1435. val = this.getVal(),
  1436. formatted;
  1437. choice.find('.select2-tmp').replaceWith(this.opts.formatSelection(data));
  1438. formatted=this.opts.formatSelection(data, choice);
  1439. if (formatted !== undefined) {
  1440. choice.append(formatted);
  1441. }
  1442. choice.append("<a href='javascript:void(0)' class='select2-search-choice-close' tabindex='-1'></a>");
  1443. choice.find(".select2-search-choice-close")
  1444. .bind("click dblclick", this.bind(function (e) {
  1445. if (!this.enabled) return;
  1446. this.unselect($(e.target));
  1447. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1448. killEvent(e);
  1449. this.close();
  1450. this.focusSearch();
  1451. })).bind("focus", this.bind(function () {
  1452. if (!this.enabled) return;
  1453. this.container.addClass("select2-container-active");
  1454. this.dropdown.addClass("select2-drop-active");
  1455. }));
  1456. choice.data("select2-data", data);
  1457. choice.insertBefore(this.searchContainer);
  1458. val.push(id);
  1459. this.setVal(val);
  1460. },
  1461. // multi
  1462. unselect: function (selected) {
  1463. var val = this.getVal(),
  1464. data,
  1465. index;
  1466. selected = selected.closest(".select2-search-choice");
  1467. if (selected.length === 0) {
  1468. throw "Invalid argument: " + selected + ". Must be .select2-search-choice";
  1469. }
  1470. data = selected.data("select2-data");
  1471. index = indexOf(this.id(data), val);
  1472. if (index >= 0) {
  1473. val.splice(index, 1);
  1474. this.setVal(val);
  1475. if (this.select) this.postprocessResults();
  1476. }
  1477. selected.remove();
  1478. this.triggerChange({ removed: data });
  1479. },
  1480. // multi
  1481. postprocessResults: function () {
  1482. var val = this.getVal(),
  1483. choices = this.results.find(".select2-result-selectable"),
  1484. self = this;
  1485. choices.each2(function (i, choice) {
  1486. var id = self.id(choice.data("select2-data"));
  1487. if (indexOf(id, val) >= 0) {
  1488. choice.addClass("select2-disabled");
  1489. } else {
  1490. choice.removeClass("select2-disabled");
  1491. }
  1492. });
  1493. choices.each2(function (i, choice) {
  1494. if (!choice.hasClass("select2-disabled")) {
  1495. self.highlight(i);
  1496. return false;
  1497. }
  1498. });
  1499. },
  1500. // multi
  1501. resizeSearch: function () {
  1502. var minimumWidth, left, maxWidth, containerLeft, searchWidth,
  1503. sideBorderPadding = getSideBorderPadding(this.search);
  1504. minimumWidth = measureTextWidth(this.search) + 10;
  1505. left = this.search.offset().left;
  1506. maxWidth = this.selection.width();
  1507. containerLeft = this.selection.offset().left;
  1508. searchWidth = maxWidth - (left - containerLeft) - sideBorderPadding;
  1509. if (searchWidth < minimumWidth) {
  1510. searchWidth = maxWidth - sideBorderPadding;
  1511. }
  1512. if (searchWidth < 40) {
  1513. searchWidth = maxWidth - sideBorderPadding;
  1514. }
  1515. this.search.width(searchWidth);
  1516. },
  1517. // multi
  1518. getVal: function () {
  1519. var val;
  1520. if (this.select) {
  1521. val = this.select.val();
  1522. return val === null ? [] : val;
  1523. } else {
  1524. val = this.opts.element.val();
  1525. return splitVal(val, this.opts.separator);
  1526. }
  1527. },
  1528. // multi
  1529. setVal: function (val) {
  1530. var unique;
  1531. if (this.select) {
  1532. this.select.val(val);
  1533. } else {
  1534. unique = [];
  1535. // filter out duplicates
  1536. $(val).each(function () {
  1537. if (indexOf(this, unique) < 0) unique.push(this);
  1538. });
  1539. this.opts.element.val(unique.length === 0 ? "" : unique.join(","));
  1540. }
  1541. },
  1542. // multi
  1543. val: function () {
  1544. var val, data = [], self=this;
  1545. if (arguments.length === 0) {
  1546. return this.getVal();
  1547. }
  1548. val = arguments[0];
  1549. if (this.select) {
  1550. // val is a list of ids
  1551. this.setVal(val);
  1552. this.select.find(":selected").each(function () {
  1553. data.push({id: $(this).attr("value"), text: $(this).text()});
  1554. });
  1555. this.updateSelection(data);
  1556. } else {
  1557. val = (val === null) ? [] : val;
  1558. // val is a list of objects
  1559. $(val).each(function () { data.push(self.id(this)); });
  1560. this.setVal(data);
  1561. this.updateSelection(val);
  1562. }
  1563. this.clearSearch();
  1564. },
  1565. // multi
  1566. onSortStart: function() {
  1567. if (this.select) {
  1568. throw new Error("Sorting of elements is not supported when attached to <select>. Attach to <input type='hidden'/> instead.");
  1569. }
  1570. // collapse search field into 0 width so its container can be collapsed as well
  1571. this.search.width(0);
  1572. // hide the container
  1573. this.searchContainer.hide();
  1574. },
  1575. // multi
  1576. onSortEnd:function() {
  1577. var val=[], self=this;
  1578. // show search and move it to the end of the list
  1579. this.searchContainer.show();
  1580. // make sure the search container is the last item in the list
  1581. this.searchContainer.appendTo(this.searchContainer.parent());
  1582. // since we collapsed the width in dragStarted, we resize it here
  1583. this.resizeSearch();
  1584. // update selection
  1585. this.selection.find(".select2-search-choice").each(function() {
  1586. val.push(self.opts.id($(this).data("select2-data")));
  1587. });
  1588. this.setVal(val);
  1589. this.triggerChange();
  1590. },
  1591. // multi
  1592. data: function(values) {
  1593. var self=this, ids;
  1594. if (arguments.length === 0) {
  1595. return this.selection
  1596. .find(".select2-search-choice")
  1597. .map(function() { return $(this).data("select2-data"); })
  1598. .get();
  1599. } else {
  1600. ids = $.map(values, function(e) { return self.opts.id(e)});
  1601. this.setVal(ids);
  1602. this.updateSelection(values);
  1603. this.clearSearch();
  1604. }
  1605. }
  1606. });
  1607. $.fn.select2 = function () {
  1608. var args = Array.prototype.slice.call(arguments, 0),
  1609. opts,
  1610. select2,
  1611. value, multiple, allowedMethods = ["val", "destroy", "open", "close", "focus", "isFocused", "container", "onSortStart", "onSortEnd", "enable", "disable", "positionDropdown", "data"];
  1612. this.each(function () {
  1613. if (args.length === 0 || typeof(args[0]) === "object") {
  1614. opts = args.length === 0 ? {} : $.extend({}, args[0]);
  1615. opts.element = $(this);
  1616. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1617. multiple = opts.element.attr("multiple");
  1618. } else {
  1619. multiple = opts.multiple || false;
  1620. if ("tags" in opts) {opts.multiple = multiple = true;}
  1621. }
  1622. select2 = multiple ? new MultiSelect2() : new SingleSelect2();
  1623. select2.init(opts);
  1624. } else if (typeof(args[0]) === "string") {
  1625. if (indexOf(args[0], allowedMethods) < 0) {
  1626. throw "Unknown method: " + args[0];
  1627. }
  1628. value = undefined;
  1629. select2 = $(this).data("select2");
  1630. if (select2 === undefined) return;
  1631. if (args[0] === "container") {
  1632. value=select2.container;
  1633. } else {
  1634. value = select2[args[0]].apply(select2, args.slice(1));
  1635. }
  1636. if (value !== undefined) {return false;}
  1637. } else {
  1638. throw "Invalid arguments to select2 plugin: " + args;
  1639. }
  1640. });
  1641. return (value === undefined) ? this : value;
  1642. };
  1643. // exports
  1644. window.Select2 = {
  1645. query: {
  1646. ajax: ajax,
  1647. local: local,
  1648. tags: tags
  1649. }, util: {
  1650. debounce: debounce,
  1651. markMatch: markMatch
  1652. }, "class": {
  1653. "abstract": AbstractSelect2,
  1654. "single": SingleSelect2,
  1655. "multi": MultiSelect2
  1656. }
  1657. };
  1658. }(jQuery));