jquery.inputmask.bundle.js 142 KB

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