select2.js 86 KB

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