jquery.inputmask.bundle.js 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850
  1. /**
  2. * @license Input Mask plugin for jquery
  3. * http://github.com/RobinHerbots/jquery.inputmask
  4. * Copyright (c) 2010 - 2014 Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 3.0.26
  7. */
  8. (function ($) {
  9. if ($.fn.inputmask === undefined) {
  10. //helper functions
  11. function isInputEventSupported(eventName) {
  12. var el = document.createElement('input'),
  13. eventName = 'on' + eventName,
  14. isSupported = (eventName in el);
  15. if (!isSupported) {
  16. el.setAttribute(eventName, 'return;');
  17. isSupported = typeof el[eventName] == 'function';
  18. }
  19. el = null;
  20. return isSupported;
  21. }
  22. function resolveAlias(aliasStr, options, opts) {
  23. var aliasDefinition = opts.aliases[aliasStr];
  24. if (aliasDefinition) {
  25. if (aliasDefinition.alias) resolveAlias(aliasDefinition.alias, undefined, opts); //alias is another alias
  26. $.extend(true, opts, aliasDefinition); //merge alias definition in the options
  27. $.extend(true, opts, options); //reapply extra given options
  28. return true;
  29. }
  30. return false;
  31. }
  32. function generateMaskSet(opts) {
  33. var ms = [];
  34. function analyseMask(mask) {
  35. var tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})\??|[^.?*+^${[]()|\\]+|./g,
  36. escaped = false;
  37. function maskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  38. this.matches = [];
  39. this.isGroup = isGroup || false;
  40. this.isOptional = isOptional || false;
  41. this.isQuantifier = isQuantifier || false;
  42. this.isAlternator = isAlternator || false;
  43. this.quantifier = { min: 1, max: 1 };
  44. };
  45. //test definition => {fn: RegExp/function, cardinality: int, optionality: bool, newBlockMarker: bool, offset: int, casing: null/upper/lower, def: definitionSymbol}
  46. function insertTestDefinition(mtoken, element, position) {
  47. var maskdef = opts.definitions[element];
  48. var newBlockMarker = mtoken.matches.length == 0;
  49. position = position != undefined ? position : mtoken.matches.length;
  50. if (maskdef && !escaped) {
  51. var prevalidators = maskdef["prevalidator"], prevalidatorsL = prevalidators ? prevalidators.length : 0;
  52. for (var i = 1; i < maskdef.cardinality; i++) {
  53. var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator["validator"], cardinality = prevalidator["cardinality"];
  54. mtoken.matches.splice(position++, 0, { fn: validator ? typeof validator == 'string' ? new RegExp(validator) : new function () { this.test = validator; } : new RegExp("."), cardinality: cardinality ? cardinality : 1, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: maskdef["casing"], def: maskdef["definitionSymbol"] || element });
  55. }
  56. mtoken.matches.splice(position++, 0, { fn: maskdef.validator ? typeof maskdef.validator == 'string' ? new RegExp(maskdef.validator) : new function () { this.test = maskdef.validator; } : new RegExp("."), cardinality: maskdef.cardinality, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: maskdef["casing"], def: maskdef["definitionSymbol"] || element });
  57. } else {
  58. mtoken.matches.splice(position++, 0, { fn: null, cardinality: 0, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: null, def: element });
  59. escaped = false;
  60. }
  61. }
  62. var currentToken = new maskToken(),
  63. match,
  64. m,
  65. openenings = [],
  66. maskTokens = [];
  67. while (match = tokenizer.exec(mask)) {
  68. m = match[0];
  69. switch (m.charAt(0)) {
  70. case opts.optionalmarker.end:
  71. // optional closing
  72. case opts.groupmarker.end:
  73. // Group closing
  74. var openingToken = openenings.pop();
  75. if (openenings.length > 0) {
  76. openenings[openenings.length - 1]["matches"].push(openingToken);
  77. } else {
  78. currentToken.matches.push(openingToken);
  79. }
  80. break;
  81. case opts.optionalmarker.start:
  82. // optional opening
  83. openenings.push(new maskToken(false, true));
  84. break;
  85. case opts.groupmarker.start:
  86. // Group opening
  87. openenings.push(new maskToken(true));
  88. break;
  89. case opts.quantifiermarker.start:
  90. //Quantifier
  91. var quantifier = new maskToken(false, false, true);
  92. m = m.replace(/[{}]/g, "");
  93. var mq = m.split(","),
  94. mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]),
  95. mq1 = mq.length == 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
  96. if (mq1 == "*" || mq1 == "+") {
  97. mq0 = mq0 == "*" ? 0 : 1;
  98. opts.greedy = false;
  99. }
  100. quantifier.quantifier = { min: mq0, max: mq1 };
  101. if (openenings.length > 0) {
  102. var matches = openenings[openenings.length - 1]["matches"];
  103. var match = matches.pop();
  104. if (!match["isGroup"]) {
  105. var groupToken = new maskToken(true);
  106. groupToken.matches.push(match);
  107. match = groupToken;
  108. }
  109. matches.push(match);
  110. matches.push(quantifier);
  111. } else {
  112. var match = currentToken.matches.pop();
  113. if (!match["isGroup"]) {
  114. var groupToken = new maskToken(true);
  115. groupToken.matches.push(match);
  116. match = groupToken;
  117. }
  118. currentToken.matches.push(match);
  119. currentToken.matches.push(quantifier);
  120. }
  121. break;
  122. case opts.escapeChar:
  123. escaped = true;
  124. break;
  125. case opts.alternatormarker:
  126. break;
  127. default:
  128. if (openenings.length > 0) {
  129. insertTestDefinition(openenings[openenings.length - 1], m);
  130. } else {
  131. if (currentToken.matches.length > 0) {
  132. var lastMatch = currentToken.matches[currentToken.matches.length - 1];
  133. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  134. lastMatch.isGroup = false;
  135. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  136. insertTestDefinition(lastMatch, opts.groupmarker.end);
  137. }
  138. }
  139. insertTestDefinition(currentToken, m);
  140. }
  141. }
  142. }
  143. if (currentToken.matches.length > 0)
  144. maskTokens.push(currentToken);
  145. //console.log(JSON.stringify(maskTokens));
  146. return maskTokens;
  147. }
  148. function generateMask(mask, metadata) {
  149. if (opts.numericInput) { //TODO FIX FOR DYNAMIC MASKS WITH QUANTIFIERS
  150. mask = mask.split('').reverse();
  151. for (var ndx in mask) {
  152. if (mask[ndx] == opts.optionalmarker.start)
  153. mask[ndx] = opts.optionalmarker.end;
  154. else if (mask[ndx] == opts.optionalmarker.end)
  155. mask[ndx] = opts.optionalmarker.start;
  156. else if (mask[ndx] == opts.groupmarker.start)
  157. mask[ndx] = opts.groupmarker.end;
  158. else if (mask[ndx] == opts.groupmarker.end)
  159. mask[ndx] = opts.groupmarker.start;
  160. }
  161. mask = mask.join('');
  162. }
  163. if (mask == undefined || mask == "")
  164. return undefined;
  165. else {
  166. if (opts.repeat > 0 || opts.repeat == "*" || opts.repeat == "+") {
  167. var repeatStart = opts.repeat == "*" ? 0 : (opts.repeat == "+" ? 1 : opts.repeat);
  168. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  169. }
  170. if ($.inputmask.masksCache[mask] == undefined) {
  171. $.inputmask.masksCache[mask] = {
  172. "mask": mask,
  173. "maskToken": analyseMask(mask),
  174. "validPositions": {},
  175. "_buffer": undefined,
  176. "buffer": undefined,
  177. "tests": {},
  178. "metadata": metadata
  179. };
  180. }
  181. return $.extend(true, {}, $.inputmask.masksCache[mask]);
  182. }
  183. }
  184. if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
  185. opts.mask = opts.mask.call(this, opts);
  186. }
  187. if ($.isArray(opts.mask)) {
  188. $.each(opts.mask, function (ndx, msk) {
  189. if (msk["mask"] != undefined) {
  190. ms.push(generateMask(msk["mask"].toString(), msk));
  191. } else {
  192. ms.push(generateMask(msk.toString()));
  193. }
  194. });
  195. } else {
  196. if (opts.mask.length == 1 && opts.greedy == false && opts.repeat != 0) {
  197. opts.placeholder = "";
  198. } //hide placeholder with single non-greedy mask
  199. if (opts.mask["mask"] != undefined) {
  200. ms = generateMask(opts.mask["mask"].toString(), opts.mask);
  201. } else {
  202. ms = generateMask(opts.mask.toString());
  203. }
  204. }
  205. return ms;
  206. }
  207. var msie1x = typeof ScriptEngineMajorVersion === "function"
  208. ? ScriptEngineMajorVersion() //IE11 detection
  209. : new Function("/*@cc_on return @_jscript_version; @*/")() >= 10, //conditional compilation from mickeysoft trick
  210. ua = navigator.userAgent,
  211. iphone = ua.match(new RegExp("iphone", "i")) !== null,
  212. android = ua.match(new RegExp("android.*safari.*", "i")) !== null,
  213. androidchrome = ua.match(new RegExp("android.*chrome.*", "i")) !== null,
  214. androidfirefox = ua.match(new RegExp("android.*firefox.*", "i")) !== null,
  215. kindle = /Kindle/i.test(ua) || /Silk/i.test(ua) || /KFTT/i.test(ua) || /KFOT/i.test(ua) || /KFJWA/i.test(ua) || /KFJWI/i.test(ua) || /KFSOWI/i.test(ua) || /KFTHWA/i.test(ua) || /KFTHWI/i.test(ua) || /KFAPWA/i.test(ua) || /KFAPWI/i.test(ua),
  216. PasteEventType = isInputEventSupported('paste') ? 'paste' : isInputEventSupported('input') ? 'input' : "propertychange";
  217. //if (androidchrome) {
  218. // var browser = navigator.userAgent.match(new RegExp("chrome.*", "i")),
  219. // version = parseInt(new RegExp(/[0-9]+/).exec(browser));
  220. // androidchrome32 = (version == 32);
  221. //}
  222. //masking scope
  223. //actionObj definition see below
  224. function maskScope(maskset, opts, actionObj) {
  225. var isRTL = false,
  226. valueOnFocus = getBuffer().join(''),
  227. $el,
  228. skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
  229. skipInputEvent = false, //skip when triggered from within inputmask
  230. ignorable = false,
  231. maxLength;
  232. //maskset helperfunctions
  233. function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
  234. minimalPos = minimalPos || 0;
  235. var maskTemplate = [], ndxIntlzr, pos = 0, test, testPos;
  236. do {
  237. if (baseOnInput === true && getMaskSet()['validPositions'][pos]) {
  238. var validPos = getMaskSet()['validPositions'][pos];
  239. test = validPos["match"];
  240. ndxIntlzr = validPos["locator"].slice();
  241. maskTemplate.push(test["fn"] == null ? test["def"] : (includeInput === true ? validPos["input"] : opts.placeholder.charAt(pos % opts.placeholder.length)));
  242. } else {
  243. if (minimalPos > pos) {
  244. var testPositions = getTests(pos, ndxIntlzr, pos - 1);
  245. testPos = testPositions[0];
  246. } else {
  247. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  248. }
  249. test = testPos["match"];
  250. ndxIntlzr = testPos["locator"].slice();
  251. maskTemplate.push(test["fn"] == null ? test["def"] : opts.placeholder.charAt(pos % opts.placeholder.length));
  252. }
  253. pos++;
  254. } while ((maxLength == undefined || pos - 1 < maxLength) && test["fn"] != null || (test["fn"] == null && test["def"] != "") || minimalPos >= pos);
  255. maskTemplate.pop(); //drop the last one which is empty
  256. return maskTemplate;
  257. }
  258. function getMaskSet() {
  259. return maskset;
  260. }
  261. function resetMaskSet(soft) {
  262. var maskset = getMaskSet();
  263. maskset["buffer"] = undefined;
  264. maskset["tests"] = {};
  265. if (soft !== true) {
  266. maskset["_buffer"] = undefined;
  267. maskset["validPositions"] = {};
  268. maskset["p"] = -1;
  269. }
  270. }
  271. function getLastValidPosition(closestTo) { //TODO implement closest to
  272. var maskset = getMaskSet(), lastValidPosition = -1, valids = maskset["validPositions"];
  273. if ($.isFunction(opts.getLastValidPosition))
  274. lastValidPosition = opts.getLastValidPosition.call($el, maskset, closestTo, opts);
  275. else {
  276. for (var posNdx in valids) {
  277. var psNdx = parseInt(posNdx);
  278. if (psNdx > lastValidPosition) lastValidPosition = psNdx;
  279. }
  280. }
  281. return lastValidPosition;
  282. }
  283. function setValidPosition(pos, validTest, fromSetValid) {
  284. if (opts.insertMode && getMaskSet()["validPositions"][pos] != undefined && fromSetValid == undefined) {
  285. //reposition & revalidate others
  286. var positionsClone = $.extend(true, {}, getMaskSet()["validPositions"]), lvp = getLastValidPosition(), i;
  287. for (i = pos; i <= lvp; i++) { //clear selection
  288. delete getMaskSet()["validPositions"][i];
  289. }
  290. getMaskSet()["validPositions"][pos] = validTest;
  291. var valid = true;
  292. for (i = pos; i <= lvp ; i++) {
  293. var t = positionsClone[i];
  294. if (t != undefined) {
  295. var j = t["match"].fn == null ? i + 1 : seekNext(i);
  296. if (positionCanMatchDefinition(j, t["match"].def)) {
  297. valid = valid && isValid(j, t["input"], true, true) !== false;
  298. } else valid = false;
  299. }
  300. if (!valid) break;
  301. }
  302. if (!valid) {
  303. getMaskSet()["validPositions"] = $.extend(true, {}, positionsClone);
  304. return false;
  305. }
  306. } else
  307. getMaskSet()["validPositions"][pos] = validTest;
  308. return true;
  309. }
  310. function stripValidPositions(start, end) {
  311. var i, startPos = start, lvp;
  312. for (i = start; i < end; i++) { //clear selection
  313. delete getMaskSet()["validPositions"][i];
  314. }
  315. for (i = end ; i <= getLastValidPosition() ;) {
  316. var t = getMaskSet()["validPositions"][i];
  317. var s = getMaskSet()["validPositions"][startPos];
  318. if (t != undefined && s == undefined) {
  319. if (positionCanMatchDefinition(startPos, t.match.def) && isValid(startPos, t["input"], true) !== false) {
  320. delete getMaskSet()["validPositions"][i];
  321. i++;
  322. }
  323. startPos++;
  324. } else i++;
  325. }
  326. lvp = getLastValidPosition();
  327. //catchup
  328. while (lvp > 0 && (getMaskSet()["validPositions"][lvp] == undefined || getMaskSet()["validPositions"][lvp].match.fn == null)) {
  329. delete getMaskSet()["validPositions"][lvp];
  330. lvp--;
  331. }
  332. resetMaskSet(true);
  333. }
  334. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  335. var testPositions = getTests(pos, ndxIntlzr, tstPs), testPos;
  336. for (var ndx in testPositions) {
  337. testPos = testPositions[ndx];
  338. if (opts.greedy || ((testPos["match"].optionality === false || testPos["match"].newBlockMarker === false) && testPos["match"].optionalQuantifier !== true)) {
  339. break;
  340. }
  341. }
  342. return testPos;
  343. }
  344. function getTest(pos) {
  345. if (getMaskSet()['validPositions'][pos]) {
  346. return getMaskSet()['validPositions'][pos]["match"];
  347. }
  348. return getTests(pos)[0]["match"];
  349. }
  350. function positionCanMatchDefinition(pos, def) {
  351. var valid = false, tests = getTests(pos);
  352. for (var tndx in tests) {
  353. if (tests[tndx]["match"].def == def) {
  354. valid = true;
  355. break;
  356. }
  357. }
  358. return valid;
  359. };
  360. function getTests(pos, ndxIntlzr, tstPs) {
  361. var maskTokens = getMaskSet()["maskToken"], testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr || [0], matches = [], insertStop = false;
  362. function ResolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitilizer contains a set of indexes to speedup searches in the mtokens
  363. function handleMatch(match, loopNdx, quantifierRecurse) {
  364. if (testPos == pos && match.matches == undefined) {
  365. matches.push({ "match": match, "locator": loopNdx.reverse() });
  366. return true;
  367. } else if (match.matches != undefined) {
  368. if (match.isGroup && quantifierRecurse !== true) { //when a group pass along to the quantifier
  369. match = handleMatch(maskToken.matches[tndx + 1], loopNdx);
  370. if (match) return true;
  371. } else if (match.isOptional) {
  372. var optionalToken = match;
  373. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  374. if (match) {
  375. var latestMatch = matches[matches.length - 1]["match"];
  376. var isFirstMatch = (optionalToken.matches.indexOf(latestMatch) == 0);
  377. if (isFirstMatch) {
  378. insertStop = true; //insert a stop for non greedy
  379. }
  380. testPos = pos; //match the position after the group
  381. }
  382. } else if (match.isAlternator) {
  383. //TODO
  384. } else if (match.isQuantifier && quantifierRecurse !== true) {
  385. var qt = match;
  386. for (var qndx = (ndxInitializer.length > 0 && quantifierRecurse !== true) ? ndxInitializer.shift() : 0; (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
  387. var tokenGroup = maskToken.matches[maskToken.matches.indexOf(qt) - 1];
  388. match = handleMatch(tokenGroup, [qndx].concat(loopNdx), true);
  389. if (match) {
  390. //get latest match
  391. var latestMatch = matches[matches.length - 1]["match"];
  392. latestMatch.optionalQuantifier = qndx > qt.quantifier.min - 1;
  393. var isFirstMatch = (tokenGroup.matches.indexOf(latestMatch) == 0);
  394. if (isFirstMatch) { //search for next possible match
  395. if (qndx > qt.quantifier.min - 1) {
  396. insertStop = true;
  397. testPos = pos; //match the position after the group
  398. break; //stop quantifierloop
  399. } else return true;
  400. } else {
  401. return true;
  402. }
  403. }
  404. }
  405. } else {
  406. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  407. if (match)
  408. return true;
  409. }
  410. } else testPos++;
  411. }
  412. for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0) ; tndx < maskToken.matches.length; tndx++) {
  413. if (maskToken.matches[tndx]["isQuantifier"] !== true) {
  414. var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
  415. if (match && testPos == pos) {
  416. return match;
  417. } else if (testPos > pos) {
  418. break;
  419. }
  420. }
  421. }
  422. }
  423. //if (disableCache !== true && getMaskSet()['tests'][pos] && !getMaskSet()['validPositions'][pos]) {
  424. // return getMaskSet()['tests'][pos];
  425. //}
  426. if (ndxIntlzr == undefined) {
  427. var previousPos = pos - 1, test;
  428. while ((test = getMaskSet()['validPositions'][previousPos]) == undefined && previousPos > -1) {
  429. previousPos--;
  430. }
  431. if (test != undefined && previousPos > -1) {
  432. testPos = previousPos;
  433. ndxInitializer = test["locator"].slice();
  434. } else {
  435. previousPos = pos - 1;
  436. while ((test = getMaskSet()['tests'][previousPos]) == undefined && previousPos > -1) {
  437. previousPos--;
  438. }
  439. if (test != undefined && previousPos > -1) {
  440. testPos = previousPos;
  441. ndxInitializer = test[0]["locator"].slice();
  442. }
  443. }
  444. }
  445. for (var mtndx = ndxInitializer.shift() ; mtndx < maskTokens.length; mtndx++) {
  446. var match = ResolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
  447. if ((match && testPos == pos) || testPos > pos) {
  448. break;
  449. }
  450. }
  451. if (matches.length == 0 || insertStop)
  452. matches.push({ "match": { fn: null, cardinality: 0, optionality: true, casing: null, def: "" }, "locator": [] });
  453. getMaskSet()['tests'][pos] = matches;
  454. //console.log(pos + " - " + JSON.stringify(matches));
  455. return matches;
  456. }
  457. function getBufferTemplate() {
  458. if (getMaskSet()['_buffer'] == undefined) {
  459. //generate template
  460. getMaskSet()["_buffer"] = getMaskTemplate(false, 1);
  461. }
  462. return getMaskSet()['_buffer'];
  463. }
  464. function getBuffer() {
  465. if (getMaskSet()['buffer'] == undefined) {
  466. getMaskSet()['buffer'] = getMaskTemplate(true, getLastValidPosition(), true);
  467. }
  468. return getMaskSet()['buffer'];
  469. }
  470. function refreshFromBuffer(start, end) {
  471. var buffer = getBuffer().slice(); //work on clone
  472. for (var i = start; i < end; i++) {
  473. if (buffer[i] != getPlaceholder(i) && buffer[i] != opts.skipOptionalPartCharacter) {
  474. isValid(i, buffer[i], true, true);
  475. }
  476. }
  477. }
  478. function casing(elem, test) {
  479. switch (test.casing) {
  480. case "upper":
  481. elem = elem.toUpperCase();
  482. break;
  483. case "lower":
  484. elem = elem.toLowerCase();
  485. break;
  486. }
  487. return elem;
  488. }
  489. function isValid(pos, c, strict, fromSetValid) { //strict true ~ no correction or autofill
  490. strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
  491. function _isValid(position, c, strict, fromSetValid) {
  492. var rslt = false;
  493. $.each(getTests(position), function (ndx, tst) {
  494. var test = tst["match"];
  495. var loopend = c ? 1 : 0, chrs = '', buffer = getBuffer();
  496. for (var i = test.cardinality; i > loopend; i--) {
  497. chrs += getBufferElement(position - (i - 1));
  498. }
  499. if (c) {
  500. chrs += c;
  501. }
  502. //return is false or a json object => { pos: ??, c: ??} or true
  503. rslt = test.fn != null ?
  504. test.fn.test(chrs, buffer, position, strict, opts)
  505. : (c == test["def"] || c == opts.skipOptionalPartCharacter) && test["def"] != "" ? //non mask
  506. { c: test["def"], pos: position }
  507. : false;
  508. if (rslt !== false) {
  509. var elem = rslt.c != undefined ? rslt.c : c;
  510. elem = (elem == opts.skipOptionalPartCharacter && test["fn"] === null) ? test["def"] : elem;
  511. var validatedPos = position;
  512. if (rslt["refreshFromBuffer"]) {
  513. var refresh = rslt["refreshFromBuffer"];
  514. strict = true;
  515. if (refresh === true) {
  516. getMaskSet()["validPositions"] = {};
  517. getMaskSet()["tests"] = {};
  518. refreshFromBuffer(0, getBuffer().length);
  519. }
  520. else {
  521. refreshFromBuffer(refresh["start"], refresh["end"]);
  522. }
  523. if (rslt.pos == undefined && rslt.c == undefined) {
  524. rslt.pos = getLastValidPosition();
  525. return false;//breakout if refreshFromBuffer && nothing to insert
  526. }
  527. validatedPos = rslt.pos != undefined ? rslt.pos : position;
  528. tst = getTests(validatedPos)[0]; //possible mismatch TODO
  529. } else if (rslt !== true && rslt["pos"] != position) { //their is a position offset
  530. validatedPos = rslt["pos"];
  531. refreshFromBuffer(position, validatedPos);
  532. tst = getTests(validatedPos)[0]; //possible mismatch TODO
  533. }
  534. if (ndx > 0) {
  535. resetMaskSet(true);
  536. }
  537. if (!setValidPosition(validatedPos, $.extend({}, tst, { "input": casing(elem, test) }), fromSetValid))
  538. rslt = false;
  539. return false; //break from $.each
  540. }
  541. });
  542. return rslt;
  543. }
  544. var maskPos = pos;
  545. var result = _isValid(maskPos, c, strict, fromSetValid);
  546. if (!strict && result === false) {
  547. var currentPosValid = getMaskSet()["validPositions"][maskPos];
  548. if (currentPosValid && currentPosValid["match"].fn == null && (currentPosValid["match"].def == c || c == opts.skipOptionalPartCharacter)) {
  549. result = { "caret": seekNext(maskPos) };
  550. } else if ((opts.insertMode || getMaskSet()["validPositions"][seekNext(maskPos)] == undefined) && !isMask(maskPos)) { //does the input match on a further position?
  551. for (var nPos = maskPos + 1, snPos = seekNext(maskPos) ; nPos <= snPos; nPos++) {
  552. result = _isValid(nPos, c, strict, fromSetValid);
  553. if (result !== false) {
  554. maskPos = nPos;
  555. break;
  556. }
  557. }
  558. }
  559. }
  560. if (result === true) result = { "pos": maskPos };
  561. return result;
  562. }
  563. function isMask(pos) {
  564. var test = getTest(pos);
  565. return test.fn != null ? test.fn : false;
  566. }
  567. function getMaskLength() {
  568. var maskLength;
  569. maxLength = $el.prop('maxLength');
  570. if (maxLength == -1) maxLength = undefined; /* FF sets no defined max length to -1 */
  571. if (opts.greedy == false) {
  572. var pos, lvp = getLastValidPosition(), testPos = getMaskSet()["validPositions"][lvp],
  573. ndxIntlzr = testPos != undefined ? testPos["locator"].slice() : undefined;
  574. for (pos = lvp + 1; testPos == undefined || (testPos["match"]["fn"] != null || (testPos["match"]["fn"] == null && testPos["match"]["def"] != "")) ; pos++) {
  575. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  576. ndxIntlzr = testPos["locator"].slice();
  577. }
  578. maskLength = pos;
  579. } else
  580. maskLength = getBuffer().length;
  581. return (maxLength == undefined || maskLength < maxLength) ? maskLength : maxLength;
  582. }
  583. function seekNext(pos) {
  584. var maskL = getMaskLength();
  585. if (pos >= maskL) return maskL;
  586. var position = pos;
  587. while (++position < maskL && !isMask(position) && (opts.nojumps !== true || opts.nojumpsThreshold > position)) {
  588. }
  589. return position;
  590. }
  591. function seekPrevious(pos) {
  592. var position = pos;
  593. if (position <= 0) return 0;
  594. while (--position > 0 && !isMask(position)) {
  595. };
  596. return position;
  597. }
  598. function getBufferElement(position) {
  599. return getMaskSet()["validPositions"][position] == undefined ? getPlaceholder(position) : getMaskSet()["validPositions"][position]["input"];
  600. }
  601. function writeBuffer(input, buffer, caretPos) {
  602. input._valueSet(buffer.join(''));
  603. if (caretPos != undefined) {
  604. caret(input, caretPos);
  605. }
  606. }
  607. function getPlaceholder(pos, test) {
  608. test = test || getTest(pos);
  609. return test["fn"] == null ? test["def"] : opts.placeholder.charAt(pos % opts.placeholder.length);
  610. }
  611. function checkVal(input, writeOut, strict, nptvl, intelliCheck) {
  612. var inputValue = nptvl != undefined ? nptvl.slice() : truncateInput(input._valueGet()).split('');
  613. resetMaskSet();
  614. if (writeOut) input._valueSet(""); //initial clear
  615. $.each(inputValue, function (ndx, charCode) {
  616. if (intelliCheck === true) {
  617. var p = getMaskSet()["p"],
  618. lvp = p == -1 ? p : seekPrevious(p),
  619. pos = lvp == -1 ? ndx : seekNext(lvp);
  620. if ($.inArray(charCode, getBufferTemplate().slice(lvp + 1, pos)) == -1) {
  621. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  622. }
  623. } else {
  624. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  625. strict = strict || (ndx > 0 && ndx > getMaskSet()["p"]);
  626. }
  627. });
  628. if (writeOut)
  629. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  630. }
  631. function escapeRegex(str) {
  632. return $.inputmask.escapeRegex.call(this, str);
  633. }
  634. function truncateInput(inputValue) {
  635. return inputValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*$"), "");
  636. }
  637. function clearOptionalTail(input) {
  638. var buffer = getBuffer(), tmpBuffer = buffer.slice(),
  639. pos, lvp = getLastValidPosition(), positions = {},
  640. ndxIntlzr = getMaskSet()["validPositions"][lvp]["locator"].slice(), testPos;
  641. for (pos = lvp + 1; pos < tmpBuffer.length; pos++) {
  642. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  643. ndxIntlzr = testPos["locator"].slice();
  644. positions[pos] = testPos;
  645. }
  646. for (pos = tmpBuffer.length - 1; pos > lvp; pos--) {
  647. testPos = positions[pos]["match"];
  648. if (testPos.optionality && tmpBuffer[pos] == getPlaceholder(pos, testPos)) {
  649. tmpBuffer.pop();
  650. } else break;
  651. }
  652. writeBuffer(input, tmpBuffer);
  653. }
  654. function unmaskedvalue($input, skipDatepickerCheck) {
  655. if ($input.data('_inputmask') && (skipDatepickerCheck === true || !$input.hasClass('hasDatepicker'))) {
  656. var umValue = [], vps = getMaskSet()["validPositions"];
  657. for (var pndx in vps) {
  658. if (vps[pndx]["match"].fn != null) {
  659. umValue.push(vps[pndx]["input"]);
  660. }
  661. }
  662. var unmaskedValue = (isRTL ? umValue.reverse() : umValue).join('');
  663. var bufferValue = (isRTL ? getBuffer().reverse() : getBuffer()).join('');
  664. return $.isFunction(opts.onUnMask) ? opts.onUnMask.call($input, bufferValue, unmaskedValue, opts) : unmaskedValue;
  665. } else {
  666. return $input[0]._valueGet();
  667. }
  668. }
  669. function TranslatePosition(pos) {
  670. if (isRTL && typeof pos == 'number' && (!opts.greedy || opts.placeholder != "")) {
  671. var bffrLght = getBuffer().length;
  672. pos = bffrLght - pos;
  673. }
  674. return pos;
  675. }
  676. function caret(input, begin, end) {
  677. var npt = input.jquery && input.length > 0 ? input[0] : input, range;
  678. if (typeof begin == 'number') {
  679. begin = TranslatePosition(begin);
  680. end = TranslatePosition(end);
  681. end = (typeof end == 'number') ? end : begin;
  682. //store caret for multi scope
  683. var data = $(npt).data('_inputmask') || {};
  684. data["caret"] = { "begin": begin, "end": end };
  685. $(npt).data('_inputmask', data);
  686. if (!$(npt).is(":visible")) {
  687. return;
  688. }
  689. npt.scrollLeft = npt.scrollWidth;
  690. if (opts.insertMode == false && begin == end) end++; //set visualization for insert/overwrite mode
  691. if (npt.setSelectionRange) {
  692. npt.selectionStart = begin;
  693. npt.selectionEnd = end;
  694. } else if (npt.createTextRange) {
  695. range = npt.createTextRange();
  696. range.collapse(true);
  697. range.moveEnd('character', end);
  698. range.moveStart('character', begin);
  699. range.select();
  700. }
  701. } else {
  702. var data = $(npt).data('_inputmask');
  703. if (!$(npt).is(":visible") && data && data["caret"] != undefined) {
  704. begin = data["caret"]["begin"];
  705. end = data["caret"]["end"];
  706. } else if (npt.setSelectionRange) {
  707. begin = npt.selectionStart;
  708. end = npt.selectionEnd;
  709. } else if (document.selection && document.selection.createRange) {
  710. range = document.selection.createRange();
  711. begin = 0 - range.duplicate().moveStart('character', -100000);
  712. end = begin + range.text.length;
  713. }
  714. begin = TranslatePosition(begin);
  715. end = TranslatePosition(end);
  716. return { "begin": begin, "end": end };
  717. }
  718. }
  719. function isComplete(buffer) { //return true / false / undefined (repeat *)
  720. if ($.isFunction(opts.isComplete)) return opts.isComplete.call($el, buffer, opts);
  721. if (opts.repeat == "*") return undefined;
  722. var complete = false,
  723. aml = seekPrevious(getMaskLength());
  724. if (getLastValidPosition() == aml) {
  725. complete = true;
  726. for (var i = 0; i <= aml; i++) {
  727. var mask = isMask(i);
  728. if ((mask && (buffer[i] == undefined || buffer[i] == getPlaceholder(i))) || (!mask && buffer[i] != getPlaceholder(i))) {
  729. complete = false;
  730. break;
  731. }
  732. }
  733. }
  734. return complete;
  735. }
  736. function isSelection(begin, end) {
  737. return isRTL ? (begin - end) > 1 || ((begin - end) == 1 && opts.insertMode) :
  738. (end - begin) > 1 || ((end - begin) == 1 && opts.insertMode);
  739. }
  740. function installEventRuler(npt) {
  741. var events = $._data(npt).events;
  742. $.each(events, function (eventType, eventHandlers) {
  743. $.each(eventHandlers, function (ndx, eventHandler) {
  744. if (eventHandler.namespace == "inputmask") {
  745. if (eventHandler.type != "setvalue") {
  746. var handler = eventHandler.handler;
  747. eventHandler.handler = function (e) {
  748. if (this.readOnly || this.disabled)
  749. e.preventDefault;
  750. else
  751. return handler.apply(this, arguments);
  752. };
  753. }
  754. }
  755. });
  756. });
  757. }
  758. function patchValueProperty(npt) {
  759. function PatchValhook(type) {
  760. if ($.valHooks[type] == undefined || $.valHooks[type].inputmaskpatch != true) {
  761. var valueGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) { return elem.value; };
  762. var valueSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  763. elem.value = value;
  764. return elem;
  765. };
  766. $.valHooks[type] = {
  767. get: function (elem) {
  768. var $elem = $(elem);
  769. if ($elem.data('_inputmask')) {
  770. if ($elem.data('_inputmask')['opts'].autoUnmask)
  771. return $elem.inputmask('unmaskedvalue');
  772. else {
  773. var result = valueGet(elem),
  774. inputData = $elem.data('_inputmask'),
  775. maskset = inputData['maskset'],
  776. bufferTemplate = maskset['_buffer'];
  777. bufferTemplate = bufferTemplate ? bufferTemplate.join('') : '';
  778. return result != bufferTemplate ? result : '';
  779. }
  780. } else return valueGet(elem);
  781. },
  782. set: function (elem, value) {
  783. var $elem = $(elem);
  784. var result = valueSet(elem, value);
  785. if ($elem.data('_inputmask')) $elem.triggerHandler('setvalue.inputmask');
  786. return result;
  787. },
  788. inputmaskpatch: true
  789. };
  790. }
  791. }
  792. var valueProperty;
  793. if (Object.getOwnPropertyDescriptor)
  794. valueProperty = Object.getOwnPropertyDescriptor(npt, "value");
  795. if (valueProperty && valueProperty.get) {
  796. if (!npt._valueGet) {
  797. var valueGet = valueProperty.get;
  798. var valueSet = valueProperty.set;
  799. npt._valueGet = function () {
  800. return isRTL ? valueGet.call(this).split('').reverse().join('') : valueGet.call(this);
  801. };
  802. npt._valueSet = function (value) {
  803. valueSet.call(this, isRTL ? value.split('').reverse().join('') : value);
  804. };
  805. Object.defineProperty(npt, "value", {
  806. get: function () {
  807. var $self = $(this), inputData = $(this).data('_inputmask'), maskset = inputData['maskset'];
  808. return inputData && inputData['opts'].autoUnmask ? $self.inputmask('unmaskedvalue') : valueGet.call(this) != maskset['_buffer'].join('') ? valueGet.call(this) : '';
  809. },
  810. set: function (value) {
  811. valueSet.call(this, value);
  812. $(this).triggerHandler('setvalue.inputmask');
  813. }
  814. });
  815. }
  816. } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
  817. if (!npt._valueGet) {
  818. var valueGet = npt.__lookupGetter__("value");
  819. var valueSet = npt.__lookupSetter__("value");
  820. npt._valueGet = function () {
  821. return isRTL ? valueGet.call(this).split('').reverse().join('') : valueGet.call(this);
  822. };
  823. npt._valueSet = function (value) {
  824. valueSet.call(this, isRTL ? value.split('').reverse().join('') : value);
  825. };
  826. npt.__defineGetter__("value", function () {
  827. var $self = $(this), inputData = $(this).data('_inputmask'), maskset = inputData['maskset'];
  828. return inputData && inputData['opts'].autoUnmask ? $self.inputmask('unmaskedvalue') : valueGet.call(this) != maskset['_buffer'].join('') ? valueGet.call(this) : '';
  829. });
  830. npt.__defineSetter__("value", function (value) {
  831. valueSet.call(this, value);
  832. $(this).triggerHandler('setvalue.inputmask');
  833. });
  834. }
  835. } else {
  836. if (!npt._valueGet) {
  837. npt._valueGet = function () { return isRTL ? this.value.split('').reverse().join('') : this.value; };
  838. npt._valueSet = function (value) { this.value = isRTL ? value.split('').reverse().join('') : value; };
  839. }
  840. PatchValhook(npt.type);
  841. }
  842. }
  843. function HandleRemove(input, k, pos) {
  844. if (opts.numericInput || isRTL) {
  845. switch (k) {
  846. case opts.keyCode.BACKSPACE:
  847. k = opts.keyCode.DELETE;
  848. break;
  849. case opts.keyCode.DELETE:
  850. k = opts.keyCode.BACKSPACE;
  851. break;
  852. }
  853. if (isRTL) {
  854. var pend = pos.end;
  855. pos.end = pos.begin;
  856. pos.begin = pend;
  857. }
  858. }
  859. if (pos.begin == pos.end) {
  860. var posBegin = k == opts.keyCode.BACKSPACE ? pos.begin - 1 : pos.begin;
  861. if (k == opts.keyCode.BACKSPACE)
  862. pos.begin = seekPrevious(pos.begin);
  863. else if (k == opts.keyCode.DELETE)
  864. pos.end++;
  865. } else if (pos.end - pos.begin == 1 && !opts.insertMode) {
  866. if (k == opts.keyCode.BACKSPACE)
  867. pos.begin--;
  868. }
  869. stripValidPositions(pos.begin, pos.end);
  870. var firstMaskPos = seekNext(-1);
  871. if (getLastValidPosition() < firstMaskPos) {
  872. getMaskSet()["p"] = firstMaskPos;
  873. } else {
  874. getMaskSet()["p"] = pos.begin;
  875. }
  876. }
  877. function keydownEvent(e) {
  878. //Safari 5.1.x - modal dialog fires keypress twice workaround
  879. skipKeyPressEvent = false;
  880. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  881. //backspace, delete, and escape get special treatment
  882. if (k == opts.keyCode.BACKSPACE || k == opts.keyCode.DELETE || (iphone && k == 127) || e.ctrlKey && k == 88) { //backspace/delete
  883. e.preventDefault(); //stop default action but allow propagation
  884. if (k == 88) valueOnFocus = getBuffer().join('');
  885. HandleRemove(input, k, pos);
  886. writeBuffer(input, getBuffer(), getMaskSet()["p"]);
  887. if (input._valueGet() == getBufferTemplate().join(''))
  888. $input.trigger('cleared');
  889. if (opts.showTooltip) { //update tooltip
  890. $input.prop("title", getMaskSet()["mask"]);
  891. }
  892. } else if (k == opts.keyCode.END || k == opts.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
  893. setTimeout(function () {
  894. var caretPos = seekNext(getLastValidPosition());
  895. if (!opts.insertMode && caretPos == getMaskLength() && !e.shiftKey) caretPos--;
  896. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos);
  897. }, 0);
  898. } else if ((k == opts.keyCode.HOME && !e.shiftKey) || k == opts.keyCode.PAGE_UP) { //Home or page_up
  899. caret(input, 0, e.shiftKey ? pos.begin : 0);
  900. } else if (k == opts.keyCode.ESCAPE || (k == 90 && e.ctrlKey)) { //escape && undo
  901. checkVal(input, true, false, valueOnFocus.split(''));
  902. $input.click();
  903. } else if (k == opts.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
  904. opts.insertMode = !opts.insertMode;
  905. caret(input, !opts.insertMode && pos.begin == getMaskLength() ? pos.begin - 1 : pos.begin);
  906. } else if (opts.insertMode == false && !e.shiftKey) {
  907. if (k == opts.keyCode.RIGHT) {
  908. setTimeout(function () {
  909. var caretPos = caret(input);
  910. caret(input, caretPos.begin);
  911. }, 0);
  912. } else if (k == opts.keyCode.LEFT) {
  913. setTimeout(function () {
  914. var caretPos = caret(input);
  915. caret(input, caretPos.begin - 1);
  916. }, 0);
  917. }
  918. }
  919. var currentCaretPos = caret(input);
  920. var keydownResult = opts.onKeyDown.call(this, e, getBuffer(), opts);
  921. if (keydownResult && keydownResult["refreshFromBuffer"] === true) { //extra stuff to execute on keydown
  922. getMaskSet()["validPositions"] = {};
  923. getMaskSet()["tests"] = {};
  924. refreshFromBuffer(0, getBuffer().length);
  925. resetMaskSet(true);
  926. writeBuffer(input, getBuffer());
  927. caret(input, currentCaretPos.begin, currentCaretPos.end);
  928. }
  929. ignorable = $.inArray(k, opts.ignorables) != -1;
  930. }
  931. function keypressEvent(e, checkval, k, writeOut, strict, ndx) {
  932. //Safari 5.1.x - modal dialog fires keypress twice workaround
  933. if (k == undefined && skipKeyPressEvent) return false;
  934. skipKeyPressEvent = true;
  935. var input = this, $input = $(input);
  936. e = e || window.event;
  937. var k = checkval ? k : (e.which || e.charCode || e.keyCode);
  938. if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
  939. return true;
  940. } else {
  941. if (k) {
  942. //special treat the decimal separator
  943. if (checkval !== true && k == 46 && e.shiftKey == false && opts.radixPoint == ",") k = 44;
  944. var pos, forwardPosition, c = String.fromCharCode(k);
  945. if (checkval) {
  946. var pcaret = strict ? ndx : getLastValidPosition() + 1;
  947. pos = { begin: pcaret, end: pcaret };
  948. } else {
  949. pos = caret(input);
  950. }
  951. //should we clear a possible selection??
  952. var isSlctn = isSelection(pos.begin, pos.end);
  953. if (isSlctn) {
  954. getMaskSet()["undoPositions"] = $.extend(true, {}, getMaskSet()["validPositions"]); //init undobuffer for recovery when not valid
  955. HandleRemove(input, opts.keyCode.DELETE, pos);
  956. if (!opts.insertMode) { //preserve some space
  957. opts.insertMode = !opts.insertMode;
  958. setValidPosition(pos.begin, strict);
  959. opts.insertMode = !opts.insertMode;
  960. }
  961. isSlctn = !opts.multi;
  962. }
  963. getMaskSet()["writeOutBuffer"] = true;
  964. var p = pos.begin;
  965. var valResult = isValid(p, c, strict);
  966. if (valResult !== false) {
  967. if (valResult !== true) {
  968. p = valResult.pos != undefined ? valResult.pos : p; //set new position from isValid
  969. c = valResult.c != undefined ? valResult.c : c; //set new char from isValid
  970. }
  971. resetMaskSet(true);
  972. if (valResult.caret != undefined)
  973. forwardPosition = valResult.caret;
  974. else {
  975. var vps = getMaskSet()["validPositions"];
  976. if (vps[p + 1] != undefined && getTestTemplate(pos + 1, vps[p].locator.slice(), p)["match"].def != vps[p + 1]["match"].def)
  977. forwardPosition = p + 1;
  978. else forwardPosition = seekNext(p);
  979. }
  980. getMaskSet()["p"] = forwardPosition; //needed for checkval
  981. }
  982. if (writeOut !== false) {
  983. var self = this;
  984. setTimeout(function () { opts.onKeyValidation.call(self, valResult, opts); }, 0);
  985. if (getMaskSet()["writeOutBuffer"] && valResult !== false) {
  986. var buffer = getBuffer();
  987. writeBuffer(input, buffer, checkval ? undefined : opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  988. if (checkval !== true) {
  989. setTimeout(function () { //timeout needed for IE
  990. if (isComplete(buffer) === true)
  991. $input.trigger("complete");
  992. skipInputEvent = true;
  993. $input.trigger("input");
  994. }, 0);
  995. }
  996. } else if (isSlctn) {
  997. getMaskSet()["buffer"] = undefined;
  998. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  999. }
  1000. } else if (isSlctn) {
  1001. getMaskSet()["buffer"] = undefined;
  1002. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1003. }
  1004. if (opts.showTooltip) { //update tooltip
  1005. $input.prop("title", getMaskSet()["mask"]);
  1006. }
  1007. //needed for IE8 and below
  1008. if (e && checkval != true) e.preventDefault ? e.preventDefault() : e.returnValue = false;
  1009. }
  1010. }
  1011. }
  1012. function keyupEvent(e) {
  1013. var $input = $(this), input = this, k = e.keyCode, buffer = getBuffer();
  1014. var keyupResult = opts.onKeyUp.call(this, e, buffer, opts);
  1015. if (keyupResult && keyupResult["refreshFromBuffer"] === true) {
  1016. getMaskSet()["validPositions"] = {};
  1017. getMaskSet()["tests"] = {};
  1018. refreshFromBuffer(0, getBuffer().length);
  1019. resetMaskSet(true);
  1020. writeBuffer(input, getBuffer());
  1021. }
  1022. if (k == opts.keyCode.TAB && opts.showMaskOnFocus) {
  1023. if ($input.hasClass('focus.inputmask') && input._valueGet().length == 0) {
  1024. resetMaskSet();
  1025. buffer = getBuffer();
  1026. writeBuffer(input, buffer);
  1027. caret(input, 0);
  1028. valueOnFocus = getBuffer().join('');
  1029. } else {
  1030. writeBuffer(input, buffer);
  1031. caret(input, TranslatePosition(0), TranslatePosition(getMaskLength()));
  1032. }
  1033. }
  1034. }
  1035. function pasteEvent(e) {
  1036. if (skipInputEvent === true && e.type == "input") {
  1037. skipInputEvent = false;
  1038. return true;
  1039. }
  1040. var input = this, $input = $(input);
  1041. //paste event for IE8 and lower I guess ;-)
  1042. if (e.type == "propertychange" && input._valueGet().length <= getMaskLength()) {
  1043. return true;
  1044. }
  1045. setTimeout(function () {
  1046. var pasteValue = $.isFunction(opts.onBeforePaste) ? opts.onBeforePaste.call(input, input._valueGet(), opts) : input._valueGet();
  1047. checkVal(input, true, false, pasteValue.split(''), true);
  1048. if (isComplete(getBuffer()) === true)
  1049. $input.trigger("complete");
  1050. $input.click();
  1051. }, 0);
  1052. }
  1053. function mobileInputEvent(e) {
  1054. var input = this, $input = $(input);
  1055. //backspace in chrome32 only fires input event - detect & treat
  1056. var caretPos = caret(input),
  1057. currentValue = input._valueGet();
  1058. currentValue = currentValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*"), "");
  1059. //correct caretposition for chrome
  1060. if (caretPos.begin > currentValue.length) {
  1061. caret(input, currentValue.length);
  1062. caretPos = caret(input);
  1063. }
  1064. if ((getBuffer().length - currentValue.length) == 1 && currentValue.charAt(caretPos.begin) != getBuffer()[caretPos.begin]
  1065. && currentValue.charAt(caretPos.begin + 1) != getBuffer()[caretPos.begin]
  1066. && !isMask(caretPos.begin)) {
  1067. e.keyCode = opts.keyCode.BACKSPACE;
  1068. keydownEvent.call(input, e);
  1069. } else { //nonnumerics don't fire keypress
  1070. checkVal(input, true, false, currentValue.split(''));
  1071. if (isComplete(getBuffer()) === true)
  1072. $input.trigger("complete");
  1073. $input.click();
  1074. }
  1075. e.preventDefault();
  1076. }
  1077. function mask(el) {
  1078. $el = $(el);
  1079. if ($el.is(":input")) {
  1080. //store tests & original buffer in the input element - used to get the unmasked value
  1081. $el.data('_inputmask', {
  1082. 'maskset': maskset,
  1083. 'opts': opts,
  1084. 'isRTL': false
  1085. });
  1086. //show tooltip
  1087. if (opts.showTooltip) {
  1088. $el.prop("title", getMaskSet()["mask"]);
  1089. }
  1090. patchValueProperty(el);
  1091. if (el.dir == "rtl" || opts.rightAlign)
  1092. $el.css("text-align", "right");
  1093. if (el.dir == "rtl" || opts.numericInput) {
  1094. el.dir = "ltr";
  1095. $el.removeAttr("dir");
  1096. var inputData = $el.data('_inputmask');
  1097. inputData['isRTL'] = true;
  1098. $el.data('_inputmask', inputData);
  1099. isRTL = true;
  1100. }
  1101. //unbind all events - to make sure that no other mask will interfere when re-masking
  1102. $el.unbind(".inputmask");
  1103. $el.removeClass('focus.inputmask');
  1104. //bind events
  1105. $el.closest('form').bind("submit", function () { //trigger change on submit if any
  1106. if (valueOnFocus != getBuffer().join('')) {
  1107. $el.change();
  1108. }
  1109. }).bind('reset', function () {
  1110. setTimeout(function () {
  1111. $el.trigger("setvalue");
  1112. }, 0);
  1113. });
  1114. $el.bind("mouseenter.inputmask", function () {
  1115. var $input = $(this), input = this;
  1116. if (!$input.hasClass('focus.inputmask') && opts.showMaskOnHover) {
  1117. if (input._valueGet() != getBuffer().join('')) {
  1118. writeBuffer(input, getBuffer());
  1119. }
  1120. }
  1121. }).bind("blur.inputmask", function () {
  1122. var $input = $(this), input = this;
  1123. if ($input.data('_inputmask')) {
  1124. var nptValue = input._valueGet(), buffer = getBuffer();
  1125. $input.removeClass('focus.inputmask');
  1126. if (valueOnFocus != getBuffer().join('')) {
  1127. $input.change();
  1128. }
  1129. if (opts.clearMaskOnLostFocus && nptValue != '') {
  1130. if (nptValue == getBufferTemplate().join(''))
  1131. input._valueSet('');
  1132. else { //clearout optional tail of the mask
  1133. clearOptionalTail(input);
  1134. }
  1135. }
  1136. if (isComplete(buffer) === false) {
  1137. $input.trigger("incomplete");
  1138. if (opts.clearIncomplete) {
  1139. resetMaskSet();
  1140. if (opts.clearMaskOnLostFocus)
  1141. input._valueSet('');
  1142. else {
  1143. buffer = getBufferTemplate().slice();
  1144. writeBuffer(input, buffer);
  1145. }
  1146. }
  1147. }
  1148. }
  1149. }).bind("focus.inputmask", function () {
  1150. var $input = $(this), input = this, nptValue = input._valueGet();
  1151. if (opts.showMaskOnFocus && !$input.hasClass('focus.inputmask') && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue == ''))) {
  1152. if (input._valueGet() != getBuffer().join('')) {
  1153. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  1154. }
  1155. }
  1156. $input.addClass('focus.inputmask');
  1157. valueOnFocus = getBuffer().join('');
  1158. }).bind("mouseleave.inputmask", function () {
  1159. var $input = $(this), input = this;
  1160. if (opts.clearMaskOnLostFocus) {
  1161. if (!$input.hasClass('focus.inputmask') && input._valueGet() != $input.attr("placeholder")) {
  1162. if (input._valueGet() == getBufferTemplate().join('') || input._valueGet() == '')
  1163. input._valueSet('');
  1164. else { //clearout optional tail of the mask
  1165. clearOptionalTail(input);
  1166. }
  1167. }
  1168. }
  1169. }).bind("click.inputmask", function () {
  1170. var input = this;
  1171. setTimeout(function () {
  1172. var selectedCaret = caret(input), buffer = getBuffer();
  1173. if (selectedCaret.begin == selectedCaret.end) {
  1174. var clickPosition = isRTL ? TranslatePosition(selectedCaret.begin) : selectedCaret.begin,
  1175. lvp = getLastValidPosition(clickPosition),
  1176. lastPosition = seekNext(lvp);
  1177. if (clickPosition < lastPosition) {
  1178. if (isMask(clickPosition))
  1179. caret(input, clickPosition);
  1180. else caret(input, seekNext(clickPosition));
  1181. } else
  1182. caret(input, lastPosition);
  1183. }
  1184. }, 0);
  1185. }).bind('dblclick.inputmask', function () {
  1186. var input = this;
  1187. setTimeout(function () {
  1188. caret(input, 0, seekNext(getLastValidPosition()));
  1189. }, 0);
  1190. }).bind(PasteEventType + ".inputmask dragdrop.inputmask drop.inputmask", pasteEvent
  1191. ).bind('setvalue.inputmask', function () {
  1192. var input = this;
  1193. checkVal(input, true);
  1194. valueOnFocus = getBuffer().join('');
  1195. if (input._valueGet() == getBufferTemplate().join(''))
  1196. input._valueSet('');
  1197. }).bind('complete.inputmask', opts.oncomplete
  1198. ).bind('incomplete.inputmask', opts.onincomplete
  1199. ).bind('cleared.inputmask', opts.oncleared);
  1200. $el.bind("keydown.inputmask", keydownEvent
  1201. ).bind("keypress.inputmask", keypressEvent
  1202. ).bind("keyup.inputmask", keyupEvent);
  1203. // as the other inputevents aren't reliable for the moment we only base on the input event
  1204. // needs follow-up
  1205. if (android || androidfirefox || androidchrome || kindle) {
  1206. $el.attr("autocomplete", "off")
  1207. .attr("autocorrect", "off")
  1208. .attr("autocapitalize", "off")
  1209. .attr("spellcheck", false);
  1210. $el.unbind("keydown.inputmask", keydownEvent
  1211. ).unbind("keypress.inputmask", keypressEvent
  1212. ).unbind("keyup.inputmask", keyupEvent);
  1213. if (PasteEventType == "input") {
  1214. $el.unbind(PasteEventType + ".inputmask");
  1215. }
  1216. $el.bind("input.inputmask", mobileInputEvent);
  1217. }
  1218. if (msie1x)
  1219. $el.bind("input.inputmask", pasteEvent);
  1220. //apply mask
  1221. var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(el, el._valueGet(), opts) : el._valueGet();
  1222. checkVal(el, false, false, initialValue.split(''), true);
  1223. writeBuffer(el, getBuffer());
  1224. valueOnFocus = getBuffer().join('');
  1225. // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
  1226. var activeElement;
  1227. try {
  1228. activeElement = document.activeElement;
  1229. } catch (e) {
  1230. }
  1231. if (activeElement === el) { //position the caret when in focus
  1232. $el.addClass('focus.inputmask');
  1233. caret(el, seekNext(getLastValidPosition()));
  1234. } else if (opts.clearMaskOnLostFocus) {
  1235. if (getBuffer().join('') == getBufferTemplate().join('')) {
  1236. el._valueSet('');
  1237. } else {
  1238. clearOptionalTail(el);
  1239. }
  1240. } else {
  1241. writeBuffer(el, getBuffer());
  1242. }
  1243. installEventRuler(el);
  1244. }
  1245. }
  1246. //action object
  1247. if (actionObj != undefined) {
  1248. switch (actionObj["action"]) {
  1249. case "isComplete":
  1250. $el = $(actionObj["el"]);
  1251. return isComplete(actionObj["buffer"]);
  1252. case "unmaskedvalue":
  1253. $el = actionObj["$input"];
  1254. isRTL = actionObj["$input"].data('_inputmask')['isRTL'];
  1255. return unmaskedvalue(actionObj["$input"], actionObj["skipDatepickerCheck"]);
  1256. case "mask":
  1257. mask(actionObj["el"]);
  1258. break;
  1259. case "format":
  1260. $el = $({});
  1261. $el.data('_inputmask', {
  1262. 'maskset': maskset,
  1263. 'opts': opts,
  1264. 'isRTL': opts.numericInput
  1265. });
  1266. if (opts.numericInput) {
  1267. isRTL = true;
  1268. }
  1269. var valueBuffer = actionObj["value"].split('');
  1270. checkVal($el, false, false, isRTL ? valueBuffer.reverse() : valueBuffer, true);
  1271. return isRTL ? getBuffer().reverse().join('') : getBuffer().join('');
  1272. case "isValid":
  1273. $el = $({});
  1274. $el.data('_inputmask', {
  1275. 'maskset': maskset,
  1276. 'opts': opts,
  1277. 'isRTL': opts.numericInput
  1278. });
  1279. if (opts.numericInput) {
  1280. isRTL = true;
  1281. }
  1282. var valueBuffer = actionObj["value"].split('');
  1283. checkVal($el, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
  1284. return isComplete(getBuffer());
  1285. }
  1286. }
  1287. };
  1288. function multiMaskScope(el, masksets, opts) {
  1289. function PatchValhookMulti(type) {
  1290. if ($.valHooks[type] == undefined || $.valHooks[type].inputmaskmultipatch != true) {
  1291. var valueGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) { return elem.value; };
  1292. var valueSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  1293. elem.value = value;
  1294. return elem;
  1295. };
  1296. $.valHooks[type] = {
  1297. get: function (elem) {
  1298. var $elem = $(elem);
  1299. if ($elem.data('_inputmask-multi')) {
  1300. var data = $elem.data('_inputmask-multi');
  1301. return valueGet(data["elmasks"][data["activeMasksetIndex"]]);
  1302. } else return valueGet(elem);
  1303. },
  1304. set: function (elem, value) {
  1305. var $elem = $(elem);
  1306. var result = valueSet(elem, value);
  1307. if ($elem.data('_inputmask-multi')) $elem.triggerHandler('setvalue');
  1308. return result;
  1309. },
  1310. inputmaskmultipatch: true
  1311. };
  1312. }
  1313. }
  1314. function mcaret(input, begin, end) {
  1315. var npt = input.jquery && input.length > 0 ? input[0] : input, range;
  1316. if (typeof begin == 'number') {
  1317. begin = TranslatePosition(begin);
  1318. end = TranslatePosition(end);
  1319. end = (typeof end == 'number') ? end : begin;
  1320. //store caret for multi scope
  1321. if (npt != el) {
  1322. var data = $(npt).data('_inputmask') || {};
  1323. data["caret"] = { "begin": begin, "end": end };
  1324. $(npt).data('_inputmask', data);
  1325. }
  1326. if (!$(npt).is(":visible")) {
  1327. return;
  1328. }
  1329. npt.scrollLeft = npt.scrollWidth;
  1330. if (opts.insertMode == false && begin == end) end++; //set visualization for insert/overwrite mode
  1331. if (npt.setSelectionRange) {
  1332. npt.selectionStart = begin;
  1333. npt.selectionEnd = end;
  1334. } else if (npt.createTextRange) {
  1335. range = npt.createTextRange();
  1336. range.collapse(true);
  1337. range.moveEnd('character', end);
  1338. range.moveStart('character', begin);
  1339. range.select();
  1340. }
  1341. } else {
  1342. var data = $(npt).data('_inputmask');
  1343. if (!$(npt).is(":visible") && data && data["caret"] != undefined) {
  1344. begin = data["caret"]["begin"];
  1345. end = data["caret"]["end"];
  1346. } else if (npt.setSelectionRange) {
  1347. begin = npt.selectionStart;
  1348. end = npt.selectionEnd;
  1349. } else if (document.selection && document.selection.createRange) {
  1350. range = document.selection.createRange();
  1351. begin = 0 - range.duplicate().moveStart('character', -100000);
  1352. end = begin + range.text.length;
  1353. }
  1354. begin = TranslatePosition(begin);
  1355. end = TranslatePosition(end);
  1356. return { "begin": begin, "end": end };
  1357. }
  1358. }
  1359. function TranslatePosition(pos) {
  1360. if (isRTL && typeof pos == 'number' && (!opts.greedy || opts.placeholder != "")) {
  1361. var bffrLght = el.value.length;
  1362. pos = bffrLght - pos;
  1363. }
  1364. return pos;
  1365. }
  1366. function determineActiveMask(eventType, elmasks) {
  1367. if (eventType != "multiMaskScope") {
  1368. if ($.isFunction(opts.determineActiveMasksetIndex))
  1369. activeMasksetIndex = opts.determineActiveMasksetIndex.call($el, eventType, elmasks);
  1370. else {
  1371. var lpc = -1, cp = -1, lvp = -1;;
  1372. $.each(elmasks, function (ndx, lmsk) {
  1373. var data = $(lmsk).data('_inputmask');
  1374. var maskset = data["maskset"];
  1375. var lastValidPosition = -1, validPositionCount = 0, caretPos = mcaret(lmsk).begin;
  1376. for (var posNdx in maskset["validPositions"]) {
  1377. var psNdx = parseInt(posNdx);
  1378. if (psNdx > lastValidPosition) lastValidPosition = psNdx;
  1379. validPositionCount++;
  1380. }
  1381. if (validPositionCount > lpc
  1382. || (validPositionCount == lpc && cp > caretPos && lvp > lastValidPosition)
  1383. || (validPositionCount == lpc && cp == caretPos && lvp < lastValidPosition)
  1384. ) {
  1385. //console.log("lvp " + lastValidPosition + " vpc " + validPositionCount + " caret " + caretPos + " ams " + ndx);
  1386. lpc = validPositionCount;
  1387. cp = caretPos;
  1388. activeMasksetIndex = ndx;
  1389. lvp = lastValidPosition;
  1390. }
  1391. });
  1392. }
  1393. var data = $el.data('_inputmask-multi') || { "activeMasksetIndex": 0, "elmasks": elmasks };
  1394. data["activeMasksetIndex"] = activeMasksetIndex;
  1395. $el.data('_inputmask-multi', data);
  1396. }
  1397. if (["focus"].indexOf(eventType) == -1 && el.value != elmasks[activeMasksetIndex]._valueGet()) {
  1398. var value = $(elmasks[activeMasksetIndex]).val() == "" ? elmasks[activeMasksetIndex]._valueGet() : $(elmasks[activeMasksetIndex]).val();
  1399. el.value = value;
  1400. }
  1401. if (["blur", "focus"].indexOf(eventType) == -1) {
  1402. if ($(elmasks[activeMasksetIndex]).hasClass("focus.inputmask")) {
  1403. var activeCaret = mcaret(elmasks[activeMasksetIndex]);
  1404. mcaret(el, activeCaret.begin, activeCaret.end);
  1405. }
  1406. }
  1407. }
  1408. opts.multi = true;
  1409. var $el = $(el), isRTL = el.dir == "rtl" || opts.numericInput;
  1410. var activeMasksetIndex = 0,
  1411. elmasks = $.map(masksets, function (msk, ndx) {
  1412. var elMaskStr = '<input type="text" ';
  1413. if ($el.attr("value")) elMaskStr += 'value="' + $el.attr("value") + '" ';
  1414. if ($el.attr("dir")) elMaskStr += 'dir="' + $el.attr("dir") + '" ';
  1415. elMaskStr += '/>';
  1416. var elmask = $(elMaskStr)[0];
  1417. maskScope($.extend(true, {}, msk), opts, { "action": "mask", "el": elmask });
  1418. return elmask;
  1419. });
  1420. $el.data('_inputmask-multi', { "activeMasksetIndex": 0, "elmasks": elmasks });
  1421. if (el.dir == "rtl" || opts.rightAlign)
  1422. $el.css("text-align", "right");
  1423. el.dir = "ltr";
  1424. $el.removeAttr("dir");
  1425. if ($el.attr("value") != "") {
  1426. determineActiveMask("init", elmasks);
  1427. }
  1428. $el.bind("mouseenter blur focus mouseleave click dblclick keydown keypress keypress", function (e) {
  1429. var caretPos = mcaret(el), k, goDetermine = true;
  1430. if (e.type == "keydown") {
  1431. k = e.keyCode;
  1432. if (k == opts.keyCode.DOWN && activeMasksetIndex < elmasks.length - 1) {
  1433. activeMasksetIndex++;
  1434. determineActiveMask("multiMaskScope", elmasks);
  1435. return false;
  1436. } else if (k == opts.keyCode.UP && activeMasksetIndex > 0) {
  1437. activeMasksetIndex--;
  1438. determineActiveMask("multiMaskScope", elmasks);
  1439. return false;
  1440. } if (e.ctrlKey || e.shiftKey || e.altKey) {
  1441. return true;
  1442. }
  1443. } else if (e.type == "keypress" && (e.ctrlKey || e.shiftKey || e.altKey)) {
  1444. return true;
  1445. }
  1446. $.each(elmasks, function (ndx, lmnt) {
  1447. if (e.type == "keydown") {
  1448. k = e.keyCode;
  1449. if (k == opts.keyCode.BACKSPACE && lmnt._valueGet().length < caretPos.begin) {
  1450. return;
  1451. } else if (k == opts.keyCode.TAB) {
  1452. goDetermine = false;
  1453. } else if (k == opts.keyCode.RIGHT) {
  1454. mcaret(lmnt, caretPos.begin + 1, caretPos.end + 1);
  1455. goDetermine = false;
  1456. return;
  1457. } else if (k == opts.keyCode.LEFT) {
  1458. mcaret(lmnt, caretPos.begin - 1, caretPos.end - 1);
  1459. goDetermine = false;
  1460. return;
  1461. }
  1462. }
  1463. if (["click"].indexOf(e.type) != -1) {
  1464. mcaret(lmnt, TranslatePosition(caretPos.begin), TranslatePosition(caretPos.end));
  1465. if (caretPos.begin != caretPos.end) {
  1466. goDetermine = false;
  1467. return;
  1468. }
  1469. }
  1470. if (["keydown"].indexOf(e.type) != -1 && caretPos.begin != caretPos.end) {
  1471. mcaret(lmnt, caretPos.begin, caretPos.end);
  1472. }
  1473. $(lmnt).triggerHandler(e);
  1474. });
  1475. if (goDetermine) {
  1476. setTimeout(function () {
  1477. determineActiveMask(e.type, elmasks);
  1478. }, 0);
  1479. }
  1480. });
  1481. $el.bind(PasteEventType + " dragdrop drop setvalue", function (e) {
  1482. var caretPos = mcaret(el);
  1483. setTimeout(function () {
  1484. $.each(elmasks, function (ndx, lmnt) {
  1485. lmnt._valueSet(el.value);
  1486. $(lmnt).triggerHandler(e);
  1487. });
  1488. setTimeout(function () {
  1489. determineActiveMask(e.type, elmasks);
  1490. }, 0);
  1491. }, 0);
  1492. });
  1493. PatchValhookMulti(el.type);
  1494. };
  1495. $.inputmask = {
  1496. //options default
  1497. defaults: {
  1498. placeholder: "_",
  1499. optionalmarker: { start: "[", end: "]" },
  1500. quantifiermarker: { start: "{", end: "}" },
  1501. groupmarker: { start: "(", end: ")" },
  1502. alternatormarker: "|",
  1503. escapeChar: "\\",
  1504. mask: null,
  1505. oncomplete: $.noop, //executes when the mask is complete
  1506. onincomplete: $.noop, //executes when the mask is incomplete and focus is lost
  1507. oncleared: $.noop, //executes when the mask is cleared
  1508. repeat: 0, //repetitions of the mask: * ~ forever, otherwise specify an integer
  1509. greedy: true, //true: allocated buffer for the mask and repetitions - false: allocate only if needed
  1510. autoUnmask: false, //automatically unmask when retrieving the value with $.fn.val or value if the browser supports __lookupGetter__ or getOwnPropertyDescriptor
  1511. clearMaskOnLostFocus: true,
  1512. insertMode: true, //insert the input or overwrite the input
  1513. clearIncomplete: false, //clear the incomplete input on blur
  1514. aliases: {}, //aliases definitions => see jquery.inputmask.extensions.js
  1515. onKeyUp: $.noop, //override to implement autocomplete on certain keys for example
  1516. onKeyDown: $.noop, //override to implement autocomplete on certain keys for example
  1517. onBeforeMask: undefined, //executes before masking the initial value to allow preprocessing of the initial value. args => initialValue, opts => return processedValue
  1518. onBeforePaste: undefined, //executes before masking the pasted value to allow preprocessing of the pasted value. args => pastedValue, opts => return processedValue
  1519. onUnMask: undefined, //executes after unmasking to allow postprocessing of the unmaskedvalue. args => maskedValue, unmaskedValue, opts
  1520. showMaskOnFocus: true, //show the mask-placeholder when the input has focus
  1521. showMaskOnHover: true, //show the mask-placeholder when hovering the empty input
  1522. onKeyValidation: $.noop, //executes on every key-press with the result of isValid. Params: result, opts
  1523. skipOptionalPartCharacter: " ", //a character which can be used to skip an optional part of a mask
  1524. showTooltip: false, //show the activemask as tooltip
  1525. numericInput: false, //numericInput input direction style (input shifts to the left while holding the caret position)
  1526. getLastValidPosition: undefined, //override getLastValidPosition - args => maskset, closestTo, opts - return position (int)
  1527. rightAlign: false, //align to the right
  1528. //numeric basic properties
  1529. radixPoint: "", //".", // | ","
  1530. //numeric basic properties
  1531. definitions: {
  1532. '9': {
  1533. validator: "[0-9]",
  1534. cardinality: 1,
  1535. definitionSymbol: "*"
  1536. },
  1537. 'a': {
  1538. validator: "[A-Za-z\u0410-\u044F\u0401\u0451]",
  1539. cardinality: 1,
  1540. definitionSymbol: "*"
  1541. },
  1542. '*': {
  1543. validator: "[A-Za-z\u0410-\u044F\u0401\u04510-9]",
  1544. cardinality: 1
  1545. }
  1546. },
  1547. keyCode: {
  1548. ALT: 18, BACKSPACE: 8, CAPS_LOCK: 20, COMMA: 188, COMMAND: 91, COMMAND_LEFT: 91, COMMAND_RIGHT: 93, CONTROL: 17, DELETE: 46, DOWN: 40, END: 35, ENTER: 13, ESCAPE: 27, HOME: 36, INSERT: 45, LEFT: 37, MENU: 93, NUMPAD_ADD: 107, NUMPAD_DECIMAL: 110, NUMPAD_DIVIDE: 111, NUMPAD_ENTER: 108,
  1549. NUMPAD_MULTIPLY: 106, NUMPAD_SUBTRACT: 109, PAGE_DOWN: 34, PAGE_UP: 33, PERIOD: 190, RIGHT: 39, SHIFT: 16, SPACE: 32, TAB: 9, UP: 38, WINDOWS: 91
  1550. },
  1551. //specify keycodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF
  1552. ignorables: [8, 9, 13, 19, 27, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 93, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123],
  1553. isComplete: undefined, //override for isComplete - args => buffer, opts - return true || false
  1554. //multi-masks
  1555. multi: false, //do not alter - internal use
  1556. nojumps: false, //do not jump over fixed parts in the mask
  1557. nojumpsThreshold: 0, //start nojumps as of
  1558. determineActiveMasksetIndex: undefined //override determineActiveMasksetIndex - args => eventType, elmasks - return int
  1559. },
  1560. masksCache: {},
  1561. escapeRegex: function (str) {
  1562. var specials = ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'];
  1563. return str.replace(new RegExp('(\\' + specials.join('|\\') + ')', 'gim'), '\\$1');
  1564. },
  1565. format: function (value, options) {
  1566. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1567. resolveAlias(opts.alias, options, opts);
  1568. return maskScope(generateMaskSet(opts), opts, { "action": "format", "value": value });
  1569. },
  1570. isValid: function (value, options) {
  1571. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1572. resolveAlias(opts.alias, options, opts);
  1573. return maskScope(generateMaskSet(opts), opts, { "action": "isValid", "value": value });
  1574. }
  1575. };
  1576. $.fn.inputmask = function (fn, options) {
  1577. function importAttributeOptions(npt, opts) {
  1578. var $npt = $(npt);
  1579. for (var option in opts) {
  1580. var optionData = $npt.data("inputmask-" + option.toLowerCase());
  1581. if (optionData != undefined)
  1582. opts[option] = optionData;
  1583. }
  1584. return opts;
  1585. }
  1586. var opts = $.extend(true, {}, $.inputmask.defaults, options),
  1587. maskset;
  1588. if (typeof fn === "string") {
  1589. switch (fn) {
  1590. case "mask":
  1591. //resolve possible aliases given by options
  1592. resolveAlias(opts.alias, options, opts);
  1593. maskset = generateMaskSet(opts);
  1594. if (maskset.length == 0) { return this; }
  1595. return this.each(function () {
  1596. if ($.isArray(maskset)) {
  1597. multiMaskScope(this, maskset, importAttributeOptions(this, opts));
  1598. } else
  1599. maskScope($.extend(true, {}, maskset), importAttributeOptions(this, opts), { "action": "mask", "el": this });
  1600. });
  1601. case "unmaskedvalue":
  1602. var $input = $(this), input = this;
  1603. if ($input.data('_inputmask')) {
  1604. maskset = $input.data('_inputmask')['maskset'];
  1605. opts = $input.data('_inputmask')['opts'];
  1606. return maskScope(maskset, opts, { "action": "unmaskedvalue", "$input": $input });
  1607. } else return $input.val();
  1608. case "remove":
  1609. return this.each(function () {
  1610. var $input = $(this), input = this;
  1611. if ($input.data('_inputmask')) {
  1612. maskset = $input.data('_inputmask')['maskset'];
  1613. opts = $input.data('_inputmask')['opts'];
  1614. //writeout the unmaskedvalue
  1615. input._valueSet(maskScope(maskset, opts, { "action": "unmaskedvalue", "$input": $input, "skipDatepickerCheck": true }));
  1616. //unbind all events
  1617. $input.unbind(".inputmask");
  1618. $input.removeClass('focus.inputmask');
  1619. //clear data
  1620. $input.removeData('_inputmask');
  1621. //restore the value property
  1622. var valueProperty;
  1623. if (Object.getOwnPropertyDescriptor)
  1624. valueProperty = Object.getOwnPropertyDescriptor(input, "value");
  1625. if (valueProperty && valueProperty.get) {
  1626. if (input._valueGet) {
  1627. Object.defineProperty(input, "value", {
  1628. get: input._valueGet,
  1629. set: input._valueSet
  1630. });
  1631. }
  1632. } else if (document.__lookupGetter__ && input.__lookupGetter__("value")) {
  1633. if (input._valueGet) {
  1634. input.__defineGetter__("value", input._valueGet);
  1635. input.__defineSetter__("value", input._valueSet);
  1636. }
  1637. }
  1638. try { //try catch needed for IE7 as it does not supports deleting fns
  1639. delete input._valueGet;
  1640. delete input._valueSet;
  1641. } catch (e) {
  1642. input._valueGet = undefined;
  1643. input._valueSet = undefined;
  1644. }
  1645. }
  1646. });
  1647. break;
  1648. case "getemptymask": //return the default (empty) mask value, usefull for setting the default value in validation
  1649. if (this.data('_inputmask')) {
  1650. maskset = this.data('_inputmask')['maskset'];
  1651. return maskset['_buffer'].join('');
  1652. }
  1653. else return "";
  1654. case "hasMaskedValue": //check wheter the returned value is masked or not; currently only works reliable when using jquery.val fn to retrieve the value
  1655. return this.data('_inputmask') ? !this.data('_inputmask')['opts'].autoUnmask : false;
  1656. case "isComplete":
  1657. if (this.data('_inputmask')) {
  1658. maskset = this.data('_inputmask')['maskset'];
  1659. opts = this.data('_inputmask')['opts'];
  1660. return maskScope(maskset, opts, { "action": "isComplete", "buffer": this[0]._valueGet().split(''), "el": this });
  1661. } else return true;
  1662. case "getmetadata": //return mask metadata if exists
  1663. if (this.data('_inputmask')) {
  1664. maskset = this.data('_inputmask')['maskset'];
  1665. return maskset['metadata'];
  1666. }
  1667. else return undefined;
  1668. default:
  1669. //check if the fn is an alias
  1670. if (!resolveAlias(fn, options, opts)) {
  1671. //maybe fn is a mask so we try
  1672. //set mask
  1673. opts.mask = fn;
  1674. }
  1675. maskset = generateMaskSet(opts);
  1676. if (maskset == undefined) { return this; }
  1677. return this.each(function () {
  1678. if ($.isArray(maskset)) {
  1679. multiMaskScope(this, maskset, importAttributeOptions(this, opts));
  1680. } else
  1681. maskScope($.extend(true, {}, maskset), importAttributeOptions(this, opts), { "action": "mask", "el": this });
  1682. });
  1683. break;
  1684. }
  1685. } else if (typeof fn == "object") {
  1686. opts = $.extend(true, {}, $.inputmask.defaults, fn);
  1687. resolveAlias(opts.alias, fn, opts); //resolve aliases
  1688. maskset = generateMaskSet(opts);
  1689. if (maskset == undefined) { return this; }
  1690. return this.each(function () {
  1691. if ($.isArray(maskset)) {
  1692. multiMaskScope(this, maskset, importAttributeOptions(this, opts));
  1693. } else
  1694. maskScope($.extend(true, {}, maskset), importAttributeOptions(this, opts), { "action": "mask", "el": this });
  1695. });
  1696. } else if (fn == undefined) {
  1697. //look for data-inputmask atribute - the attribute should only contain optipns
  1698. return this.each(function () {
  1699. var attrOptions = $(this).attr("data-inputmask");
  1700. if (attrOptions && attrOptions != "") {
  1701. try {
  1702. attrOptions = attrOptions.replace(new RegExp("'", "g"), '"');
  1703. var dataoptions = $.parseJSON("{" + attrOptions + "}");
  1704. $.extend(true, dataoptions, options);
  1705. opts = $.extend(true, {}, $.inputmask.defaults, dataoptions);
  1706. resolveAlias(opts.alias, dataoptions, opts);
  1707. opts.alias = undefined;
  1708. $(this).inputmask(opts);
  1709. } catch (ex) { } //need a more relax parseJSON
  1710. }
  1711. });
  1712. }
  1713. };
  1714. }
  1715. })(jQuery);
  1716. /*
  1717. Input Mask plugin extensions
  1718. http://github.com/RobinHerbots/jquery.inputmask
  1719. Copyright (c) 2010 - 2014 Robin Herbots
  1720. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  1721. Version: 3.0.26
  1722. Optional extensions on the jquery.inputmask base
  1723. */
  1724. (function ($) {
  1725. //extra definitions
  1726. $.extend($.inputmask.defaults.definitions, {
  1727. 'A': {
  1728. validator: "[A-Za-z]",
  1729. cardinality: 1,
  1730. casing: "upper" //auto uppercasing
  1731. },
  1732. '#': {
  1733. validator: "[A-Za-z\u0410-\u044F\u0401\u04510-9]",
  1734. cardinality: 1,
  1735. casing: "upper"
  1736. }
  1737. });
  1738. $.extend($.inputmask.defaults.aliases, {
  1739. 'url': {
  1740. mask: "ir",
  1741. placeholder: "",
  1742. separator: "",
  1743. defaultPrefix: "http://",
  1744. regex: {
  1745. urlpre1: new RegExp("[fh]"),
  1746. urlpre2: new RegExp("(ft|ht)"),
  1747. urlpre3: new RegExp("(ftp|htt)"),
  1748. urlpre4: new RegExp("(ftp:|http|ftps)"),
  1749. urlpre5: new RegExp("(ftp:/|ftps:|http:|https)"),
  1750. urlpre6: new RegExp("(ftp://|ftps:/|http:/|https:)"),
  1751. urlpre7: new RegExp("(ftp://|ftps://|http://|https:/)"),
  1752. urlpre8: new RegExp("(ftp://|ftps://|http://|https://)")
  1753. },
  1754. definitions: {
  1755. 'i': {
  1756. validator: function (chrs, buffer, pos, strict, opts) {
  1757. return true;
  1758. },
  1759. cardinality: 8,
  1760. prevalidator: (function () {
  1761. var result = [], prefixLimit = 8;
  1762. for (var i = 0; i < prefixLimit; i++) {
  1763. result[i] = (function () {
  1764. var j = i;
  1765. return {
  1766. validator: function (chrs, buffer, pos, strict, opts) {
  1767. if (opts.regex["urlpre" + (j + 1)]) {
  1768. var tmp = chrs, k;
  1769. if (((j + 1) - chrs.length) > 0) {
  1770. tmp = buffer.join('').substring(0, ((j + 1) - chrs.length)) + "" + tmp;
  1771. }
  1772. var isValid = opts.regex["urlpre" + (j + 1)].test(tmp);
  1773. if (!strict && !isValid) {
  1774. pos = pos - j;
  1775. for (k = 0; k < opts.defaultPrefix.length; k++) {
  1776. buffer[pos] = opts.defaultPrefix[k]; pos++;
  1777. }
  1778. for (k = 0; k < tmp.length - 1; k++) {
  1779. buffer[pos] = tmp[k]; pos++;
  1780. }
  1781. return { "pos": pos };
  1782. }
  1783. return isValid;
  1784. } else {
  1785. return false;
  1786. }
  1787. }, cardinality: j
  1788. };
  1789. })();
  1790. }
  1791. return result;
  1792. })()
  1793. },
  1794. "r": {
  1795. validator: ".",
  1796. cardinality: 50
  1797. }
  1798. },
  1799. insertMode: false,
  1800. autoUnmask: false
  1801. },
  1802. "ip": { //ip-address mask
  1803. mask: "i[i[i]].i[i[i]].i[i[i]].i[i[i]]",
  1804. definitions: {
  1805. 'i': {
  1806. validator: function (chrs, buffer, pos, strict, opts) {
  1807. if (pos - 1 > -1 && buffer[pos - 1] != ".") {
  1808. chrs = buffer[pos - 1] + chrs;
  1809. if (pos - 2 > -1 && buffer[pos - 2] != ".") {
  1810. chrs = buffer[pos - 2] + chrs;
  1811. } else chrs = "0" + chrs;
  1812. } else chrs = "00" + chrs;
  1813. return new RegExp("25[0-5]|2[0-4][0-9]|[01][0-9][0-9]").test(chrs);
  1814. },
  1815. cardinality: 1
  1816. }
  1817. }
  1818. },
  1819. "email": {
  1820. mask: "*{1,20}[.*{1,20}][.*{1,20}][.*{1,20}]@*{1,20}.*{2,6}[.*{1,2}]",
  1821. greedy: false
  1822. }
  1823. });
  1824. })(jQuery);
  1825. /*
  1826. Input Mask plugin extensions
  1827. http://github.com/RobinHerbots/jquery.inputmask
  1828. Copyright (c) 2010 - 2014 Robin Herbots
  1829. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  1830. Version: 3.0.26
  1831. Optional extensions on the jquery.inputmask base
  1832. */
  1833. (function ($) {
  1834. //date & time aliases
  1835. $.extend($.inputmask.defaults.definitions, {
  1836. 'h': { //hours
  1837. validator: "[01][0-9]|2[0-3]",
  1838. cardinality: 2,
  1839. prevalidator: [{ validator: "[0-2]", cardinality: 1 }]
  1840. },
  1841. 's': { //seconds || minutes
  1842. validator: "[0-5][0-9]",
  1843. cardinality: 2,
  1844. prevalidator: [{ validator: "[0-5]", cardinality: 1 }]
  1845. },
  1846. 'd': { //basic day
  1847. validator: "0[1-9]|[12][0-9]|3[01]",
  1848. cardinality: 2,
  1849. prevalidator: [{ validator: "[0-3]", cardinality: 1 }]
  1850. },
  1851. 'm': { //basic month
  1852. validator: "0[1-9]|1[012]",
  1853. cardinality: 2,
  1854. prevalidator: [{ validator: "[01]", cardinality: 1 }]
  1855. },
  1856. 'y': { //basic year
  1857. validator: "(19|20)\\d{2}",
  1858. cardinality: 4,
  1859. prevalidator: [
  1860. { validator: "[12]", cardinality: 1 },
  1861. { validator: "(19|20)", cardinality: 2 },
  1862. { validator: "(19|20)\\d", cardinality: 3 }
  1863. ]
  1864. }
  1865. });
  1866. $.extend($.inputmask.defaults.aliases, {
  1867. 'dd/mm/yyyy': {
  1868. mask: "1/2/y",
  1869. placeholder: "dd/mm/yyyy",
  1870. regex: {
  1871. val1pre: new RegExp("[0-3]"), //daypre
  1872. val1: new RegExp("0[1-9]|[12][0-9]|3[01]"), //day
  1873. val2pre: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[1-9]|[12][0-9]|3[01])" + escapedSeparator + "[01])"); }, //monthpre
  1874. val2: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[1-9]|[12][0-9])" + escapedSeparator + "(0[1-9]|1[012]))|(30" + escapedSeparator + "(0[13-9]|1[012]))|(31" + escapedSeparator + "(0[13578]|1[02]))"); }//month
  1875. },
  1876. leapday: "29/02/",
  1877. separator: '/',
  1878. yearrange: { minyear: 1900, maxyear: 2099 },
  1879. isInYearRange: function (chrs, minyear, maxyear) {
  1880. if (isNaN(chrs)) return false;
  1881. var enteredyear = parseInt(chrs.concat(minyear.toString().slice(chrs.length)));
  1882. var enteredyear2 = parseInt(chrs.concat(maxyear.toString().slice(chrs.length)));
  1883. return (!isNaN(enteredyear) ? minyear <= enteredyear && enteredyear <= maxyear : false) ||
  1884. (!isNaN(enteredyear2) ? minyear <= enteredyear2 && enteredyear2 <= maxyear : false);
  1885. },
  1886. determinebaseyear: function (minyear, maxyear, hint) {
  1887. var currentyear = (new Date()).getFullYear();
  1888. if (minyear > currentyear) return minyear;
  1889. if (maxyear < currentyear) {
  1890. var maxYearPrefix = maxyear.toString().slice(0, 2);
  1891. var maxYearPostfix = maxyear.toString().slice(2, 4);
  1892. while (maxyear < maxYearPrefix + hint) {
  1893. maxYearPrefix--;
  1894. }
  1895. var maxxYear = maxYearPrefix + maxYearPostfix;
  1896. return minyear > maxxYear ? minyear : maxxYear;
  1897. }
  1898. return currentyear;
  1899. },
  1900. onKeyUp: function (e, buffer, opts) {
  1901. var $input = $(this);
  1902. if (e.ctrlKey && e.keyCode == opts.keyCode.RIGHT) {
  1903. var today = new Date();
  1904. $input.val(today.getDate().toString() + (today.getMonth() + 1).toString() + today.getFullYear().toString());
  1905. }
  1906. },
  1907. definitions: {
  1908. '1': { //val1 ~ day or month
  1909. validator: function (chrs, buffer, pos, strict, opts) {
  1910. var isValid = opts.regex.val1.test(chrs);
  1911. if (!strict && !isValid) {
  1912. if (chrs.charAt(1) == opts.separator || "-./".indexOf(chrs.charAt(1)) != -1) {
  1913. isValid = opts.regex.val1.test("0" + chrs.charAt(0));
  1914. if (isValid) {
  1915. buffer[pos - 1] = "0";
  1916. return { "refreshFromBuffer": { start: pos - 1, end: pos }, "pos": pos, "c": chrs.charAt(0) };
  1917. }
  1918. }
  1919. }
  1920. return isValid;
  1921. },
  1922. cardinality: 2,
  1923. prevalidator: [{
  1924. validator: function (chrs, buffer, pos, strict, opts) {
  1925. if (!isNaN(buffer[pos + 1])) chrs += buffer[pos + 1];
  1926. var isValid = chrs.length == 1 ? opts.regex.val1pre.test(chrs) : opts.regex.val1.test(chrs);
  1927. if (!strict && !isValid) {
  1928. isValid = opts.regex.val1.test("0" + chrs);
  1929. if (isValid) {
  1930. buffer[pos] = "0";
  1931. pos++;
  1932. return { "pos": pos };
  1933. }
  1934. }
  1935. return isValid;
  1936. }, cardinality: 1
  1937. }]
  1938. },
  1939. '2': { //val2 ~ day or month
  1940. validator: function (chrs, buffer, pos, strict, opts) {
  1941. var frontValue = (opts.mask.indexOf("2") == opts.mask.length - 1) ? buffer.join('').substr(5, 3) : buffer.join('').substr(0, 3);
  1942. if (frontValue.indexOf(opts.placeholder[0]) != -1) frontValue = "01" + opts.separator;
  1943. var isValid = opts.regex.val2(opts.separator).test(frontValue + chrs);
  1944. if (!strict && !isValid) {
  1945. if (chrs.charAt(1) == opts.separator || "-./".indexOf(chrs.charAt(1)) != -1) {
  1946. isValid = opts.regex.val2(opts.separator).test(frontValue + "0" + chrs.charAt(0));
  1947. if (isValid) {
  1948. buffer[pos - 1] = "0";
  1949. return { "refreshFromBuffer": { start: pos - 1, end: pos }, "pos": pos, "c": chrs.charAt(0) };
  1950. }
  1951. }
  1952. }
  1953. //check leap yeap
  1954. if ((opts.mask.indexOf("2") == opts.mask.length - 1) && isValid) {
  1955. var dayMonthValue = buffer.join('').substr(4, 4) + chrs;
  1956. if (dayMonthValue != opts.leapday)
  1957. return true;
  1958. else {
  1959. var year = parseInt(buffer.join('').substr(0, 4), 10); //detect leap year
  1960. if (year % 4 === 0)
  1961. if (year % 100 === 0)
  1962. if (year % 400 === 0)
  1963. return true;
  1964. else return false;
  1965. else return true;
  1966. else return false;
  1967. }
  1968. }
  1969. return isValid;
  1970. },
  1971. cardinality: 2,
  1972. prevalidator: [{
  1973. validator: function (chrs, buffer, pos, strict, opts) {
  1974. if (!isNaN(buffer[pos + 1])) chrs += buffer[pos + 1];
  1975. var frontValue = (opts.mask.indexOf("2") == opts.mask.length - 1) ? buffer.join('').substr(5, 3) : buffer.join('').substr(0, 3);
  1976. if (frontValue.indexOf(opts.placeholder[0]) != -1) frontValue = "01" + opts.separator;
  1977. var isValid = chrs.length == 1 ? opts.regex.val2pre(opts.separator).test(frontValue + chrs) : opts.regex.val2(opts.separator).test(frontValue + chrs);
  1978. if (!strict && !isValid) {
  1979. isValid = opts.regex.val2(opts.separator).test(frontValue + "0" + chrs);
  1980. if (isValid) {
  1981. buffer[pos] = "0";
  1982. pos++;
  1983. return { "pos": pos };
  1984. }
  1985. }
  1986. return isValid;
  1987. }, cardinality: 1
  1988. }]
  1989. },
  1990. 'y': { //year
  1991. validator: function (chrs, buffer, pos, strict, opts) {
  1992. if (opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear)) {
  1993. var dayMonthValue = buffer.join('').substr(0, 6);
  1994. if (dayMonthValue != opts.leapday)
  1995. return true;
  1996. else {
  1997. var year = parseInt(chrs, 10);//detect leap year
  1998. if (year % 4 === 0)
  1999. if (year % 100 === 0)
  2000. if (year % 400 === 0)
  2001. return true;
  2002. else return false;
  2003. else return true;
  2004. else return false;
  2005. }
  2006. } else return false;
  2007. },
  2008. cardinality: 4,
  2009. prevalidator: [
  2010. {
  2011. validator: function (chrs, buffer, pos, strict, opts) {
  2012. var isValid = opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2013. if (!strict && !isValid) {
  2014. var yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs + "0").toString().slice(0, 1);
  2015. isValid = opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2016. if (isValid) {
  2017. buffer[pos++] = yearPrefix[0];
  2018. return { "pos": pos };
  2019. }
  2020. yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs + "0").toString().slice(0, 2);
  2021. isValid = opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2022. if (isValid) {
  2023. buffer[pos++] = yearPrefix[0];
  2024. buffer[pos++] = yearPrefix[1];
  2025. return { "pos": pos };
  2026. }
  2027. }
  2028. return isValid;
  2029. },
  2030. cardinality: 1
  2031. },
  2032. {
  2033. validator: function (chrs, buffer, pos, strict, opts) {
  2034. var isValid = opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2035. if (!strict && !isValid) {
  2036. var yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs).toString().slice(0, 2);
  2037. isValid = opts.isInYearRange(chrs[0] + yearPrefix[1] + chrs[1], opts.yearrange.minyear, opts.yearrange.maxyear);
  2038. if (isValid) {
  2039. buffer[pos++] = yearPrefix[1];
  2040. return { "pos": pos };
  2041. }
  2042. yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs).toString().slice(0, 2);
  2043. if (opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear)) {
  2044. var dayMonthValue = buffer.join('').substr(0, 6);
  2045. if (dayMonthValue != opts.leapday)
  2046. isValid = true;
  2047. else {
  2048. var year = parseInt(chrs, 10);//detect leap year
  2049. if (year % 4 === 0)
  2050. if (year % 100 === 0)
  2051. if (year % 400 === 0)
  2052. isValid = true;
  2053. else isValid = false;
  2054. else isValid = true;
  2055. else isValid = false;
  2056. }
  2057. } else isValid = false;
  2058. if (isValid) {
  2059. buffer[pos - 1] = yearPrefix[0];
  2060. buffer[pos++] = yearPrefix[1];
  2061. buffer[pos++] = chrs[0];
  2062. return { "refreshFromBuffer": { start: pos - 3, end: pos }, "pos": pos };
  2063. }
  2064. }
  2065. return isValid;
  2066. }, cardinality: 2
  2067. },
  2068. {
  2069. validator: function (chrs, buffer, pos, strict, opts) {
  2070. return opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2071. }, cardinality: 3
  2072. }
  2073. ]
  2074. }
  2075. },
  2076. insertMode: false,
  2077. autoUnmask: false
  2078. },
  2079. 'mm/dd/yyyy': {
  2080. placeholder: "mm/dd/yyyy",
  2081. alias: "dd/mm/yyyy", //reuse functionality of dd/mm/yyyy alias
  2082. regex: {
  2083. val2pre: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[13-9]|1[012])" + escapedSeparator + "[0-3])|(02" + escapedSeparator + "[0-2])"); }, //daypre
  2084. val2: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[1-9]|1[012])" + escapedSeparator + "(0[1-9]|[12][0-9]))|((0[13-9]|1[012])" + escapedSeparator + "30)|((0[13578]|1[02])" + escapedSeparator + "31)"); }, //day
  2085. val1pre: new RegExp("[01]"), //monthpre
  2086. val1: new RegExp("0[1-9]|1[012]") //month
  2087. },
  2088. leapday: "02/29/",
  2089. onKeyUp: function (e, buffer, opts) {
  2090. var $input = $(this);
  2091. if (e.ctrlKey && e.keyCode == opts.keyCode.RIGHT) {
  2092. var today = new Date();
  2093. $input.val((today.getMonth() + 1).toString() + today.getDate().toString() + today.getFullYear().toString());
  2094. }
  2095. }
  2096. },
  2097. 'yyyy/mm/dd': {
  2098. mask: "y/1/2",
  2099. placeholder: "yyyy/mm/dd",
  2100. alias: "mm/dd/yyyy",
  2101. leapday: "/02/29",
  2102. onKeyUp: function (e, buffer, opts) {
  2103. var $input = $(this);
  2104. if (e.ctrlKey && e.keyCode == opts.keyCode.RIGHT) {
  2105. var today = new Date();
  2106. $input.val(today.getFullYear().toString() + (today.getMonth() + 1).toString() + today.getDate().toString());
  2107. }
  2108. }
  2109. },
  2110. 'dd.mm.yyyy': {
  2111. mask: "1.2.y",
  2112. placeholder: "dd.mm.yyyy",
  2113. leapday: "29.02.",
  2114. separator: '.',
  2115. alias: "dd/mm/yyyy"
  2116. },
  2117. 'dd-mm-yyyy': {
  2118. mask: "1-2-y",
  2119. placeholder: "dd-mm-yyyy",
  2120. leapday: "29-02-",
  2121. separator: '-',
  2122. alias: "dd/mm/yyyy"
  2123. },
  2124. 'mm.dd.yyyy': {
  2125. mask: "1.2.y",
  2126. placeholder: "mm.dd.yyyy",
  2127. leapday: "02.29.",
  2128. separator: '.',
  2129. alias: "mm/dd/yyyy"
  2130. },
  2131. 'mm-dd-yyyy': {
  2132. mask: "1-2-y",
  2133. placeholder: "mm-dd-yyyy",
  2134. leapday: "02-29-",
  2135. separator: '-',
  2136. alias: "mm/dd/yyyy"
  2137. },
  2138. 'yyyy.mm.dd': {
  2139. mask: "y.1.2",
  2140. placeholder: "yyyy.mm.dd",
  2141. leapday: ".02.29",
  2142. separator: '.',
  2143. alias: "yyyy/mm/dd"
  2144. },
  2145. 'yyyy-mm-dd': {
  2146. mask: "y-1-2",
  2147. placeholder: "yyyy-mm-dd",
  2148. leapday: "-02-29",
  2149. separator: '-',
  2150. alias: "yyyy/mm/dd"
  2151. },
  2152. 'datetime': {
  2153. mask: "1/2/y h:s",
  2154. placeholder: "dd/mm/yyyy hh:mm",
  2155. alias: "dd/mm/yyyy",
  2156. regex: {
  2157. hrspre: new RegExp("[012]"), //hours pre
  2158. hrs24: new RegExp("2[0-4]|1[3-9]"),
  2159. hrs: new RegExp("[01][0-9]|2[0-4]"), //hours
  2160. ampm: new RegExp("^[a|p|A|P][m|M]")
  2161. },
  2162. timeseparator: ':',
  2163. hourFormat: "24", // or 12
  2164. definitions: {
  2165. 'h': { //hours
  2166. validator: function (chrs, buffer, pos, strict, opts) {
  2167. if (opts.hourFormat == "24") {
  2168. if (parseInt(chrs, 10) == 24) {
  2169. buffer[pos - 1] = "0";
  2170. buffer[pos] = "0";
  2171. return { "refreshFromBuffer": { start: pos - 1, end: pos }, "c": "0" };
  2172. }
  2173. }
  2174. var isValid = opts.regex.hrs.test(chrs);
  2175. if (!strict && !isValid) {
  2176. if (chrs.charAt(1) == opts.timeseparator || "-.:".indexOf(chrs.charAt(1)) != -1) {
  2177. isValid = opts.regex.hrs.test("0" + chrs.charAt(0));
  2178. if (isValid) {
  2179. buffer[pos - 1] = "0";
  2180. buffer[pos] = chrs.charAt(0);
  2181. pos++;
  2182. return { "refreshFromBuffer": { start: pos - 2, end: pos }, "pos": pos, "c": opts.timeseparator };
  2183. }
  2184. }
  2185. }
  2186. if (isValid && opts.hourFormat !== "24" && opts.regex.hrs24.test(chrs)) {
  2187. var tmp = parseInt(chrs, 10);
  2188. if (tmp == 24) {
  2189. buffer[pos + 5] = "a";
  2190. buffer[pos + 6] = "m";
  2191. } else {
  2192. buffer[pos + 5] = "p";
  2193. buffer[pos + 6] = "m";
  2194. }
  2195. tmp = tmp - 12;
  2196. if (tmp < 10) {
  2197. buffer[pos] = tmp.toString();
  2198. buffer[pos - 1] = "0";
  2199. } else {
  2200. buffer[pos] = tmp.toString().charAt(1);
  2201. buffer[pos - 1] = tmp.toString().charAt(0);
  2202. }
  2203. return { "refreshFromBuffer": { start: pos - 1, end: pos + 6 }, "c": buffer[pos] };
  2204. }
  2205. return isValid;
  2206. },
  2207. cardinality: 2,
  2208. prevalidator: [{
  2209. validator: function (chrs, buffer, pos, strict, opts) {
  2210. var isValid = opts.regex.hrspre.test(chrs);
  2211. if (!strict && !isValid) {
  2212. isValid = opts.regex.hrs.test("0" + chrs);
  2213. if (isValid) {
  2214. buffer[pos] = "0";
  2215. pos++;
  2216. return { "pos": pos };
  2217. }
  2218. }
  2219. return isValid;
  2220. }, cardinality: 1
  2221. }]
  2222. },
  2223. 't': { //am/pm
  2224. validator: function (chrs, buffer, pos, strict, opts) {
  2225. return opts.regex.ampm.test(chrs + "m");
  2226. },
  2227. casing: "lower",
  2228. cardinality: 1
  2229. }
  2230. },
  2231. insertMode: false,
  2232. autoUnmask: false
  2233. },
  2234. 'datetime12': {
  2235. mask: "1/2/y h:s t\\m",
  2236. placeholder: "dd/mm/yyyy hh:mm xm",
  2237. alias: "datetime",
  2238. hourFormat: "12"
  2239. },
  2240. 'hh:mm t': {
  2241. mask: "h:s t\\m",
  2242. placeholder: "hh:mm xm",
  2243. alias: "datetime",
  2244. hourFormat: "12"
  2245. },
  2246. 'h:s t': {
  2247. mask: "h:s t\\m",
  2248. placeholder: "hh:mm xm",
  2249. alias: "datetime",
  2250. hourFormat: "12"
  2251. },
  2252. 'hh:mm:ss': {
  2253. mask: "h:s:s",
  2254. autoUnmask: false
  2255. },
  2256. 'hh:mm': {
  2257. mask: "h:s",
  2258. autoUnmask: false
  2259. },
  2260. 'date': {
  2261. alias: "dd/mm/yyyy" // "mm/dd/yyyy"
  2262. },
  2263. 'mm/yyyy': {
  2264. mask: "1/y",
  2265. placeholder: "mm/yyyy",
  2266. leapday: "donotuse",
  2267. separator: '/',
  2268. alias: "mm/dd/yyyy"
  2269. }
  2270. });
  2271. })(jQuery);
  2272. /*
  2273. Input Mask plugin extensions
  2274. http://github.com/RobinHerbots/jquery.inputmask
  2275. Copyright (c) 2010 - 2014 Robin Herbots
  2276. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  2277. Version: 3.0.26
  2278. Optional extensions on the jquery.inputmask base
  2279. */
  2280. (function ($) {
  2281. //number aliases
  2282. $.extend($.inputmask.defaults.aliases, {
  2283. 'numeric': {
  2284. mask: function (opts) {
  2285. if (opts.repeat !== 0 && isNaN(opts.integerDigits)) {
  2286. opts.integerDigits = opts.repeat;
  2287. }
  2288. opts.repeat = 0;
  2289. var mask = opts.prefix;
  2290. mask += "[+]";
  2291. mask += "~{1," + opts.integerDigits + "}";
  2292. if (opts.digits != undefined && (isNaN(opts.digits) || parseInt(opts.digits) > 0)) {
  2293. if (opts.digitsOptional)
  2294. mask += "[" + opts.radixPoint + "~{" + opts.digits + "}]";
  2295. else mask += opts.radixPoint + "~{" + opts.digits + "}";
  2296. }
  2297. mask += opts.suffix;
  2298. return mask;
  2299. },
  2300. placeholder: "",
  2301. greedy: false,
  2302. digits: "*", //number of fractionalDigits
  2303. digitsOptional: true,
  2304. groupSeparator: "",//",", // | "."
  2305. radixPoint: ".",
  2306. groupSize: 3,
  2307. autoGroup: false,
  2308. allowPlus: true,
  2309. allowMinus: true,
  2310. integerDigits: "*", //number of integerDigits
  2311. defaultValue: "",
  2312. prefix: "",
  2313. suffix: "",
  2314. skipRadixDance: false, //disable radixpoint caret positioning
  2315. getLastValidPosition: function (maskset, closestTo, opts) {
  2316. var lastValidPosition = -1, valids = maskset["validPositions"];
  2317. for (var posNdx in valids) {
  2318. var psNdx = parseInt(posNdx);
  2319. if (psNdx > lastValidPosition) lastValidPosition = psNdx;
  2320. }
  2321. if (closestTo != undefined) {
  2322. var buffer = maskset["buffer"];
  2323. if (opts.skipRadixDance === false && opts.radixPoint != "" && $.inArray(opts.radixPoint, buffer) != -1)
  2324. lastValidPosition = $.inArray(opts.radixPoint, buffer);
  2325. }
  2326. return lastValidPosition;
  2327. },
  2328. rightAlign: true,
  2329. postFormat: function (buffer, pos, reformatOnly, opts) {
  2330. var needsRefresh = false;
  2331. if (opts.groupSeparator == "") return { pos: pos };
  2332. var cbuf = buffer.slice();
  2333. if (!reformatOnly) {
  2334. cbuf.splice(pos, 0, "?"); //set position indicator
  2335. }
  2336. var bufVal = cbuf.join('');
  2337. if (opts.autoGroup || (reformatOnly && bufVal.indexOf(opts.groupSeparator) != -1)) {
  2338. var escapedGroupSeparator = $.inputmask.escapeRegex.call(this, opts.groupSeparator);
  2339. bufVal = bufVal.replace(new RegExp(escapedGroupSeparator, "g"), '');
  2340. var radixSplit = bufVal.split(opts.radixPoint);
  2341. bufVal = radixSplit[0];
  2342. if (bufVal != (opts.prefix + "?0")) {
  2343. needsRefresh = true;
  2344. var reg = new RegExp('([-\+]?[\\d\?]+)([\\d\?]{' + opts.groupSize + '})');
  2345. while (reg.test(bufVal)) {
  2346. bufVal = bufVal.replace(reg, '$1' + opts.groupSeparator + '$2');
  2347. bufVal = bufVal.replace(opts.groupSeparator + opts.groupSeparator, opts.groupSeparator);
  2348. }
  2349. }
  2350. if (radixSplit.length > 1)
  2351. bufVal += opts.radixPoint + radixSplit[1];
  2352. }
  2353. buffer.length = bufVal.length; //align the length
  2354. for (var i = 0, l = bufVal.length; i < l; i++) {
  2355. buffer[i] = bufVal.charAt(i);
  2356. }
  2357. var newPos = $.inArray("?", buffer);
  2358. if (!reformatOnly) buffer.splice(newPos, 1);
  2359. return { pos: reformatOnly ? pos : newPos, "refreshFromBuffer": needsRefresh };
  2360. },
  2361. onKeyDown: function (e, buffer, opts) {
  2362. var $input = $(this), input = this;
  2363. if (opts.autoGroup && e.keyCode == opts.keyCode.DELETE || e.keyCode == opts.keyCode.BACKSPACE) {
  2364. return opts.postFormat(buffer, 0, true, opts);
  2365. }
  2366. },
  2367. regex: {
  2368. integerPart: function (opts) { return new RegExp('[-\+]?\\d+'); }
  2369. },
  2370. definitions: {
  2371. '~': {
  2372. validator: function (chrs, buffer, pos, strict, opts) {
  2373. if (!strict && chrs === "-") {
  2374. var matchRslt = buffer.join('').match(opts.regex.integerPart(opts));
  2375. if (matchRslt.length > 0) {
  2376. if (buffer[matchRslt.index] == "+") {
  2377. buffer.splice(matchRslt.index, 1);
  2378. return { "pos": matchRslt.index, "c": "-", "refreshFromBuffer": true, "caret": pos };
  2379. } else if (buffer[matchRslt.index] == "-") {
  2380. buffer.splice(matchRslt.index, 1);
  2381. return { "refreshFromBuffer": true, "caret": pos - 1 };
  2382. } else {
  2383. return { "pos": matchRslt.index, "c": "-", "caret": pos + 1 };
  2384. }
  2385. }
  2386. }
  2387. var isValid = strict ? new RegExp("[0-9" + $.inputmask.escapeRegex.call(this, opts.groupSeparator) + "]").test(chrs) : new RegExp("[0-9]").test(chrs);
  2388. if (isValid != false && !strict && chrs != opts.radixPoint && opts.autoGroup === true) {
  2389. return opts.postFormat(buffer, pos, (chrs == "-" || chrs == "+") ? true : false, opts);
  2390. }
  2391. return isValid;
  2392. },
  2393. cardinality: 1,
  2394. prevalidator: null
  2395. },
  2396. '+': {
  2397. validator: function (chrs, buffer, pos, strict, opts) {
  2398. var signed = "[";
  2399. if (opts.allowMinus === true) signed += "-";
  2400. if (opts.allowPlus === true) signed += "\+";
  2401. signed += "]";
  2402. var isValid = new RegExp(signed).test(chrs);
  2403. return isValid;
  2404. },
  2405. cardinality: 1,
  2406. prevalidator: null
  2407. }
  2408. },
  2409. insertMode: true,
  2410. autoUnmask: false
  2411. },
  2412. 'decimal': {
  2413. alias: "numeric"
  2414. },
  2415. 'integer': {
  2416. alias: "numeric",
  2417. digits: "0"
  2418. }
  2419. });
  2420. })(jQuery);
  2421. /*
  2422. Input Mask plugin extensions
  2423. http://github.com/RobinHerbots/jquery.inputmask
  2424. Copyright (c) 2010 - 2014 Robin Herbots
  2425. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  2426. Version: 3.0.26
  2427. Regex extensions on the jquery.inputmask base
  2428. Allows for using regular expressions as a mask
  2429. */
  2430. (function ($) {
  2431. $.extend($.inputmask.defaults.aliases, { // $(selector).inputmask("Regex", { regex: "[0-9]*"}
  2432. 'Regex': {
  2433. mask: "r",
  2434. greedy: false,
  2435. repeat: "*",
  2436. regex: null,
  2437. regexTokens: null,
  2438. //Thx to https://github.com/slevithan/regex-colorizer for the tokenizer regex
  2439. tokenizer: /\[\^?]?(?:[^\\\]]+|\\[\S\s]?)*]?|\\(?:0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?|[1-9][0-9]*|x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4}|c[A-Za-z]|[\S\s]?)|\((?:\?[:=!]?)?|(?:[?*+]|\{[0-9]+(?:,[0-9]*)?\})\??|[^.?*+^${[()|\\]+|./g,
  2440. quantifierFilter: /[0-9]+[^,]/,
  2441. isComplete: function(buffer, opts){
  2442. return new RegExp(opts.regex).test(buffer.join(''));
  2443. },
  2444. definitions: {
  2445. 'r': {
  2446. validator: function (chrs, buffer, pos, strict, opts) {
  2447. function regexToken(isGroup, isQuantifier) {
  2448. this.matches = [];
  2449. this.isGroup = isGroup || false;
  2450. this.isQuantifier = isQuantifier || false;
  2451. this.quantifier = { min: 1, max: 1 };
  2452. this.repeaterPart = undefined;
  2453. }
  2454. function analyseRegex() {
  2455. var currentToken = new regexToken(), match, m, opengroups = [];
  2456. opts.regexTokens = [];
  2457. // The tokenizer regex does most of the tokenization grunt work
  2458. while (match = opts.tokenizer.exec(opts.regex)) {
  2459. m = match[0];
  2460. switch (m.charAt(0)) {
  2461. case "(": // Group opening
  2462. opengroups.push(new regexToken(true));
  2463. break;
  2464. case ")": // Group closing
  2465. var groupToken = opengroups.pop();
  2466. if (opengroups.length > 0) {
  2467. opengroups[opengroups.length - 1]["matches"].push(groupToken);
  2468. } else {
  2469. currentToken.matches.push(groupToken);
  2470. }
  2471. break;
  2472. case "{": case "+": case "*": //Quantifier
  2473. var quantifierToken = new regexToken(false, true);
  2474. m = m.replace(/[{}]/g, "");
  2475. var mq = m.split(","), mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]), mq1 = mq.length == 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
  2476. quantifierToken.quantifier = { min: mq0, max: mq1 };
  2477. if (opengroups.length > 0) {
  2478. var matches = opengroups[opengroups.length - 1]["matches"];
  2479. match = matches.pop();
  2480. if (!match["isGroup"]) {
  2481. var groupToken = new regexToken(true);
  2482. groupToken.matches.push(match);
  2483. match = groupToken;
  2484. }
  2485. matches.push(match);
  2486. matches.push(quantifierToken);
  2487. } else {
  2488. match = currentToken.matches.pop();
  2489. if (!match["isGroup"]) {
  2490. var groupToken = new regexToken(true);
  2491. groupToken.matches.push(match);
  2492. match = groupToken;
  2493. }
  2494. currentToken.matches.push(match);
  2495. currentToken.matches.push(quantifierToken);
  2496. }
  2497. break;
  2498. default:
  2499. if (opengroups.length > 0) {
  2500. opengroups[opengroups.length - 1]["matches"].push(m);
  2501. } else {
  2502. currentToken.matches.push(m);
  2503. }
  2504. break;
  2505. }
  2506. }
  2507. if (currentToken.matches.length > 0)
  2508. opts.regexTokens.push(currentToken);
  2509. };
  2510. function validateRegexToken(token, fromGroup) {
  2511. var isvalid = false;
  2512. if (fromGroup) {
  2513. regexPart += "(";
  2514. openGroupCount++;
  2515. }
  2516. for (var mndx = 0; mndx < token["matches"].length; mndx++) {
  2517. var matchToken = token["matches"][mndx];
  2518. if (matchToken["isGroup"] == true) {
  2519. isvalid = validateRegexToken(matchToken, true);
  2520. } else if (matchToken["isQuantifier"] == true) {
  2521. var crrntndx = token["matches"].indexOf(matchToken),
  2522. matchGroup = token["matches"][crrntndx - 1];
  2523. var regexPartBak = regexPart;
  2524. if (isNaN(matchToken.quantifier.max)) {
  2525. while (matchToken["repeaterPart"] && matchToken["repeaterPart"] != regexPart && matchToken["repeaterPart"].length > regexPart.length) {
  2526. isvalid = validateRegexToken(matchGroup, true);
  2527. if (isvalid) break;
  2528. }
  2529. isvalid = isvalid || validateRegexToken(matchGroup, true);
  2530. if (isvalid) matchToken["repeaterPart"] = regexPart;
  2531. regexPart = regexPartBak + matchToken.quantifier.max;
  2532. } else {
  2533. for (var i = 0, qm = matchToken.quantifier.max - 1; i < qm; i++) {
  2534. isvalid = validateRegexToken(matchGroup, true);
  2535. if (isvalid) break;
  2536. }
  2537. regexPart = regexPartBak + "{" + matchToken.quantifier.min + "," + matchToken.quantifier.max + "}";
  2538. }
  2539. } else if (matchToken["matches"] != undefined) {
  2540. for (var k = 0; k < matchToken.length; k++) {
  2541. isvalid = validateRegexToken(matchToken[k], fromGroup);
  2542. if (isvalid) break;
  2543. }
  2544. } else {
  2545. var testExp;
  2546. if (matchToken[0] == "[") {
  2547. testExp = regexPart;
  2548. testExp += matchToken;
  2549. for (var j = 0; j < openGroupCount; j++) {
  2550. testExp += ")";
  2551. }
  2552. var exp = new RegExp("^(" + testExp + ")$");
  2553. isvalid = exp.test(bufferStr);
  2554. } else {
  2555. for (var l = 0, tl = matchToken.length; l < tl; l++) {
  2556. if (matchToken[l] == "\\") continue;
  2557. testExp = regexPart;
  2558. testExp += matchToken.substr(0, l + 1);
  2559. testExp = testExp.replace(/\|$/, "");
  2560. for (var j = 0; j < openGroupCount; j++) {
  2561. testExp += ")";
  2562. }
  2563. var exp = new RegExp("^(" + testExp + ")$");
  2564. isvalid = exp.test(bufferStr);
  2565. if (isvalid) break;
  2566. }
  2567. }
  2568. regexPart += matchToken;
  2569. }
  2570. if (isvalid) break;
  2571. }
  2572. if (fromGroup) {
  2573. regexPart += ")";
  2574. openGroupCount--;
  2575. }
  2576. return isvalid;
  2577. }
  2578. if (opts.regexTokens == null) {
  2579. analyseRegex();
  2580. }
  2581. var cbuffer = buffer.slice(), regexPart = "", isValid = false, openGroupCount = 0;
  2582. cbuffer.splice(pos, 0, chrs);
  2583. var bufferStr = cbuffer.join('');
  2584. for (var i = 0; i < opts.regexTokens.length; i++) {
  2585. var regexToken = opts.regexTokens[i];
  2586. isValid = validateRegexToken(regexToken, regexToken["isGroup"]);
  2587. if (isValid) break;
  2588. }
  2589. return isValid;
  2590. },
  2591. cardinality: 1
  2592. }
  2593. }
  2594. }
  2595. });
  2596. })(jQuery);
  2597. /*
  2598. Input Mask plugin extensions
  2599. http://github.com/RobinHerbots/jquery.inputmask
  2600. Copyright (c) 2010 - 2014 Robin Herbots
  2601. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  2602. Version: 3.0.26
  2603. Phone extension.
  2604. When using this extension make sure you specify the correct url to get the masks
  2605. $(selector).inputmask("phone", {
  2606. url: "Scripts/jquery.inputmask/phone-codes/phone-codes.json",
  2607. onKeyValidation: function () { //show some metadata in the console
  2608. console.log($(this).inputmask("getmetadata")["name_en"]);
  2609. }
  2610. });
  2611. */
  2612. (function ($) {
  2613. $.extend($.inputmask.defaults.aliases, {
  2614. 'phone': {
  2615. url: "phone-codes/phone-codes.json",
  2616. mask: function (opts) {
  2617. opts.definitions = {
  2618. 'p': {
  2619. validator: function () { return false; },
  2620. cardinality: 1
  2621. },
  2622. '#': {
  2623. validator: "[0-9]",
  2624. cardinality: 1
  2625. }
  2626. };
  2627. var maskList = [];
  2628. $.ajax({
  2629. url: opts.url,
  2630. async: false,
  2631. dataType: 'json',
  2632. success: function (response) {
  2633. maskList = response;
  2634. }
  2635. });
  2636. maskList.splice(0, 0, "+p(ppp)ppp-pppp");
  2637. return maskList;
  2638. },
  2639. nojumps: true,
  2640. nojumpsThreshold: 1
  2641. },
  2642. 'phonebe': {
  2643. url: "phone-codes/phone-be.json",
  2644. mask: function (opts) {
  2645. opts.definitions = {
  2646. 'p': {
  2647. validator: function () { return false; },
  2648. cardinality: 1
  2649. },
  2650. '#': {
  2651. validator: "[0-9]",
  2652. cardinality: 1
  2653. }
  2654. };
  2655. var maskList = [];
  2656. $.ajax({
  2657. url: opts.url,
  2658. async: false,
  2659. dataType: 'json',
  2660. success: function (response) {
  2661. maskList = response;
  2662. }
  2663. });
  2664. maskList.splice(0, 0, "+32(ppp)ppp-pppp");
  2665. return maskList;
  2666. },
  2667. nojumps: true,
  2668. nojumpsThreshold: 4
  2669. }
  2670. });
  2671. })(jQuery);