jquery.inputmask.js 86 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637
  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: 0.0.0
  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 = mq1 == "*" ? 0 : 1;
  98. }
  99. quantifier.quantifier = { min: mq0, max: mq1 };
  100. if (openenings.length > 0) {
  101. var matches = openenings[openenings.length - 1]["matches"];
  102. var match = matches.pop();
  103. if (!match["isGroup"]) {
  104. var groupToken = new maskToken(true);
  105. groupToken.matches.push(match);
  106. match = groupToken;
  107. }
  108. matches.push(match);
  109. matches.push(quantifier);
  110. } else {
  111. var match = currentToken.matches.pop();
  112. if (!match["isGroup"]) {
  113. var groupToken = new maskToken(true);
  114. groupToken.matches.push(match);
  115. match = groupToken;
  116. }
  117. currentToken.matches.push(match);
  118. currentToken.matches.push(quantifier);
  119. }
  120. break;
  121. case opts.escapeChar:
  122. escaped = true;
  123. break;
  124. case opts.alternatormarker:
  125. break;
  126. default:
  127. if (openenings.length > 0) {
  128. insertTestDefinition(openenings[openenings.length - 1], m);
  129. } else {
  130. if (currentToken.matches.length > 0) {
  131. var lastMatch = currentToken.matches[currentToken.matches.length - 1];
  132. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  133. lastMatch.isGroup = false;
  134. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  135. insertTestDefinition(lastMatch, opts.groupmarker.end);
  136. }
  137. }
  138. insertTestDefinition(currentToken, m);
  139. }
  140. }
  141. }
  142. if (currentToken.matches.length > 0)
  143. maskTokens.push(currentToken);
  144. //console.log(JSON.stringify(maskTokens));
  145. return maskTokens;
  146. }
  147. function generateMask(mask, metadata) {
  148. if (opts.numericInput && opts.multi !== true) { //TODO FIX FOR DYNAMIC MASKS WITH QUANTIFIERS
  149. mask = mask.split('').reverse();
  150. for (var ndx = 0; ndx < mask.length; ndx++) {
  151. if (mask[ndx] == opts.optionalmarker.start)
  152. mask[ndx] = opts.optionalmarker.end;
  153. else if (mask[ndx] == opts.optionalmarker.end)
  154. mask[ndx] = opts.optionalmarker.start;
  155. else if (mask[ndx] == opts.groupmarker.start)
  156. mask[ndx] = opts.groupmarker.end;
  157. else if (mask[ndx] == opts.groupmarker.end)
  158. mask[ndx] = opts.groupmarker.start;
  159. }
  160. mask = mask.join('');
  161. }
  162. if (mask == undefined || mask == "")
  163. return undefined;
  164. else {
  165. if (opts.repeat > 0 || opts.repeat == "*" || opts.repeat == "+") {
  166. var repeatStart = opts.repeat == "*" ? 0 : (opts.repeat == "+" ? 1 : opts.repeat);
  167. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  168. }
  169. if ($.inputmask.masksCache[mask] == undefined) {
  170. $.inputmask.masksCache[mask] = {
  171. "mask": mask,
  172. "maskToken": analyseMask(mask),
  173. "validPositions": {},
  174. "_buffer": undefined,
  175. "buffer": undefined,
  176. "tests": {},
  177. "metadata": metadata
  178. };
  179. }
  180. return $.extend(true, {}, $.inputmask.masksCache[mask]);
  181. }
  182. }
  183. if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
  184. opts.mask = opts.mask.call(this, opts);
  185. }
  186. if ($.isArray(opts.mask)) {
  187. $.each(opts.mask, function (ndx, msk) {
  188. if (msk["mask"] != undefined) {
  189. ms.push(generateMask(msk["mask"].toString(), msk));
  190. } else {
  191. ms.push(generateMask(msk.toString()));
  192. }
  193. });
  194. } else {
  195. if (opts.mask.length == 1 && opts.greedy == false && opts.repeat != 0) {
  196. opts.placeholder = "";
  197. } //hide placeholder with single non-greedy mask
  198. if (opts.mask["mask"] != undefined) {
  199. ms = generateMask(opts.mask["mask"].toString(), opts.mask);
  200. } else {
  201. ms = generateMask(opts.mask.toString());
  202. }
  203. }
  204. return ms;
  205. }
  206. var msie1x = typeof ScriptEngineMajorVersion === "function"
  207. ? ScriptEngineMajorVersion() //IE11 detection
  208. : new Function("/*@cc_on return @_jscript_version; @*/")() >= 10, //conditional compilation from mickeysoft trick
  209. ua = navigator.userAgent,
  210. iphone = ua.match(new RegExp("iphone", "i")) !== null,
  211. android = ua.match(new RegExp("android.*safari.*", "i")) !== null,
  212. androidchrome = ua.match(new RegExp("android.*chrome.*", "i")) !== null,
  213. androidfirefox = ua.match(new RegExp("android.*firefox.*", "i")) !== null,
  214. 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),
  215. PasteEventType = isInputEventSupported('paste') ? 'paste' : isInputEventSupported('input') ? 'input' : "propertychange";
  216. //if (androidchrome) {
  217. // var browser = navigator.userAgent.match(new RegExp("chrome.*", "i")),
  218. // version = parseInt(new RegExp(/[0-9]+/).exec(browser));
  219. // androidchrome32 = (version == 32);
  220. //}
  221. //masking scope
  222. //actionObj definition see below
  223. function maskScope(actionObj, maskset, opts) {
  224. var isRTL = false,
  225. valueOnFocus,
  226. $el,
  227. skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
  228. skipInputEvent = false, //skip when triggered from within inputmask
  229. ignorable = false,
  230. maxLength;
  231. //maskset helperfunctions
  232. function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
  233. minimalPos = minimalPos || 0;
  234. var maskTemplate = [], ndxIntlzr, pos = 0, test, testPos;
  235. do {
  236. if (baseOnInput === true && getMaskSet()['validPositions'][pos]) {
  237. var validPos = getMaskSet()['validPositions'][pos];
  238. test = validPos["match"];
  239. ndxIntlzr = validPos["locator"].slice();
  240. maskTemplate.push(test["fn"] == null ? test["def"] : (includeInput === true ? validPos["input"] : opts.placeholder.charAt(pos % opts.placeholder.length)));
  241. } else {
  242. if (minimalPos > pos) {
  243. var testPositions = getTests(pos, ndxIntlzr, pos - 1);
  244. testPos = testPositions[0];
  245. } else {
  246. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  247. }
  248. test = testPos["match"];
  249. ndxIntlzr = testPos["locator"].slice();
  250. maskTemplate.push(test["fn"] == null ? test["def"] : opts.placeholder.charAt(pos % opts.placeholder.length));
  251. }
  252. pos++;
  253. } while ((maxLength == undefined || pos - 1 < maxLength) && test["fn"] != null || (test["fn"] == null && test["def"] != "") || minimalPos >= pos);
  254. maskTemplate.pop(); //drop the last one which is empty
  255. return maskTemplate;
  256. }
  257. function getMaskSet() {
  258. return maskset;
  259. }
  260. function resetMaskSet(soft) {
  261. var maskset = getMaskSet();
  262. maskset["buffer"] = undefined;
  263. maskset["tests"] = {};
  264. if (soft !== true) {
  265. maskset["_buffer"] = undefined;
  266. maskset["validPositions"] = {};
  267. maskset["p"] = -1;
  268. }
  269. }
  270. function getLastValidPosition(closestTo) {
  271. var maskset = getMaskSet(), lastValidPosition = -1, valids = maskset["validPositions"];
  272. if ($.isFunction(opts.getLastValidPosition))
  273. lastValidPosition = opts.getLastValidPosition.call($el, maskset, closestTo, opts);
  274. else {
  275. if (closestTo == undefined) closestTo = -1;
  276. var before = lastValidPosition, after = lastValidPosition;
  277. for (var posNdx in valids) {
  278. var psNdx = parseInt(posNdx);
  279. if (closestTo == -1 || valids[psNdx]["match"].fn != null) {
  280. if (psNdx < closestTo) before = psNdx;
  281. if (psNdx >= closestTo) after = psNdx;
  282. }
  283. }
  284. lastValidPosition = (closestTo - before) > 1 || after < closestTo ? before : after;
  285. }
  286. return lastValidPosition;
  287. }
  288. function setValidPosition(pos, validTest, fromSetValid) {
  289. if (opts.insertMode && getMaskSet()["validPositions"][pos] != undefined && fromSetValid == undefined) {
  290. //reposition & revalidate others
  291. var positionsClone = $.extend(true, {}, getMaskSet()["validPositions"]), lvp = getLastValidPosition(), i;
  292. for (i = pos; i <= lvp; i++) { //clear selection
  293. delete getMaskSet()["validPositions"][i];
  294. }
  295. getMaskSet()["validPositions"][pos] = validTest;
  296. var valid = true;
  297. for (i = pos; i <= lvp ; i++) {
  298. var t = positionsClone[i];
  299. if (t != undefined) {
  300. var j = t["match"].fn == null ? i + 1 : seekNext(i);
  301. if (positionCanMatchDefinition(j, t["match"].def)) {
  302. valid = valid && isValid(j, t["input"], true, true) !== false;
  303. } else valid = false;
  304. }
  305. if (!valid) break;
  306. }
  307. if (!valid) {
  308. getMaskSet()["validPositions"] = $.extend(true, {}, positionsClone);
  309. return false;
  310. }
  311. } else
  312. getMaskSet()["validPositions"][pos] = validTest;
  313. return true;
  314. }
  315. function stripValidPositions(start, end) {
  316. var i, startPos = start, lvp;
  317. for (i = start; i < end; i++) { //clear selection
  318. delete getMaskSet()["validPositions"][i];
  319. }
  320. for (i = end ; i <= getLastValidPosition() ;) {
  321. var t = getMaskSet()["validPositions"][i];
  322. var s = getMaskSet()["validPositions"][startPos];
  323. if (t != undefined && s == undefined) {
  324. if (positionCanMatchDefinition(startPos, t.match.def) && isValid(startPos, t["input"], true) !== false) {
  325. delete getMaskSet()["validPositions"][i];
  326. i++;
  327. }
  328. startPos++;
  329. } else i++;
  330. }
  331. lvp = getLastValidPosition();
  332. //catchup
  333. while (lvp > 0 && (getMaskSet()["validPositions"][lvp] == undefined || getMaskSet()["validPositions"][lvp].match.fn == null)) {
  334. delete getMaskSet()["validPositions"][lvp];
  335. lvp--;
  336. }
  337. resetMaskSet(true);
  338. }
  339. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  340. var testPositions = getTests(pos, ndxIntlzr, tstPs), testPos;
  341. for (var ndx = 0; ndx < testPositions.length; ndx++) {
  342. testPos = testPositions[ndx];
  343. if (opts.greedy || (testPos["match"] && (testPos["match"].optionality === false || testPos["match"].newBlockMarker === false) && testPos["match"].optionalQuantifier !== true)) {
  344. break;
  345. }
  346. }
  347. return testPos;
  348. }
  349. function getTest(pos) {
  350. if (getMaskSet()['validPositions'][pos]) {
  351. return getMaskSet()['validPositions'][pos]["match"];
  352. }
  353. return getTests(pos)[0]["match"];
  354. }
  355. function positionCanMatchDefinition(pos, def) {
  356. var valid = false, tests = getTests(pos);
  357. for (var tndx = 0; tndx < tests.length; tndx++) {
  358. if (tests[tndx]["match"] && tests[tndx]["match"].def == def) {
  359. valid = true;
  360. break;
  361. }
  362. }
  363. return valid;
  364. };
  365. function getTests(pos, ndxIntlzr, tstPs) {
  366. var maskTokens = getMaskSet()["maskToken"], testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr || [0], matches = [], insertStop = false;
  367. function ResolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitilizer contains a set of indexes to speedup searches in the mtokens
  368. function handleMatch(match, loopNdx, quantifierRecurse) {
  369. if (testPos == pos && match.matches == undefined) {
  370. matches.push({ "match": match, "locator": loopNdx.reverse() });
  371. return true;
  372. } else if (match.matches != undefined) {
  373. if (match.isGroup && quantifierRecurse !== true) { //when a group pass along to the quantifier
  374. match = handleMatch(maskToken.matches[tndx + 1], loopNdx);
  375. if (match) return true;
  376. } else if (match.isOptional) {
  377. var optionalToken = match;
  378. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  379. if (match) {
  380. var latestMatch = matches[matches.length - 1]["match"];
  381. var isFirstMatch = $.inArray(latestMatch, optionalToken.matches) == 0;
  382. if (isFirstMatch) {
  383. insertStop = true; //insert a stop for non greedy
  384. }
  385. testPos = pos; //match the position after the group
  386. }
  387. } else if (match.isAlternator) {
  388. //TODO
  389. } else if (match.isQuantifier && quantifierRecurse !== true) {
  390. var qt = match;
  391. opts.greedy = opts.greedy && !isNaN(qt.quantifier.max); //greedy must be off when * or + is used (always!!)
  392. for (var qndx = (ndxInitializer.length > 0 && quantifierRecurse !== true) ? ndxInitializer.shift() : 0; (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
  393. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  394. match = handleMatch(tokenGroup, [qndx].concat(loopNdx), true);
  395. if (match) {
  396. //get latest match
  397. var latestMatch = matches[matches.length - 1]["match"];
  398. latestMatch.optionalQuantifier = qndx > qt.quantifier.min - 1;
  399. var isFirstMatch = $.inArray(latestMatch, tokenGroup.matches) == 0;
  400. if (isFirstMatch) { //search for next possible match
  401. if (qndx > qt.quantifier.min - 1) {
  402. insertStop = true;
  403. testPos = pos; //match the position after the group
  404. break; //stop quantifierloop
  405. } else return true;
  406. } else {
  407. return true;
  408. }
  409. }
  410. }
  411. } else {
  412. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  413. if (match)
  414. return true;
  415. }
  416. } else testPos++;
  417. }
  418. for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0) ; tndx < maskToken.matches.length; tndx++) {
  419. if (maskToken.matches[tndx]["isQuantifier"] !== true) {
  420. var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
  421. if (match && testPos == pos) {
  422. return match;
  423. } else if (testPos > pos) {
  424. break;
  425. }
  426. }
  427. }
  428. }
  429. //if (disableCache !== true && getMaskSet()['tests'][pos] && !getMaskSet()['validPositions'][pos]) {
  430. // return getMaskSet()['tests'][pos];
  431. //}
  432. if (ndxIntlzr == undefined) {
  433. var previousPos = pos - 1, test;
  434. while ((test = getMaskSet()['validPositions'][previousPos]) == undefined && previousPos > -1) {
  435. previousPos--;
  436. }
  437. if (test != undefined && previousPos > -1) {
  438. testPos = previousPos;
  439. ndxInitializer = test["locator"].slice();
  440. } else {
  441. previousPos = pos - 1;
  442. while ((test = getMaskSet()['tests'][previousPos]) == undefined && previousPos > -1) {
  443. previousPos--;
  444. }
  445. if (test != undefined && previousPos > -1) {
  446. testPos = previousPos;
  447. ndxInitializer = test[0]["locator"].slice();
  448. }
  449. }
  450. }
  451. for (var mtndx = ndxInitializer.shift() ; mtndx < maskTokens.length; mtndx++) {
  452. var match = ResolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
  453. if ((match && testPos == pos) || testPos > pos) {
  454. break;
  455. }
  456. }
  457. if (matches.length == 0 || insertStop)
  458. matches.push({ "match": { fn: null, cardinality: 0, optionality: true, casing: null, def: "" }, "locator": [] });
  459. getMaskSet()['tests'][pos] = matches;
  460. //console.log(pos + " - " + JSON.stringify(matches));
  461. return matches;
  462. }
  463. function getBufferTemplate() {
  464. if (getMaskSet()['_buffer'] == undefined) {
  465. //generate template
  466. getMaskSet()["_buffer"] = getMaskTemplate(false, 1);
  467. }
  468. return getMaskSet()['_buffer'];
  469. }
  470. function getBuffer() {
  471. if (getMaskSet()['buffer'] == undefined) {
  472. getMaskSet()['buffer'] = getMaskTemplate(true, getLastValidPosition(), true);
  473. }
  474. return getMaskSet()['buffer'];
  475. }
  476. function refreshFromBuffer(start, end) {
  477. var buffer = getBuffer().slice(); //work on clone
  478. for (var i = start; i < end; i++) {
  479. if (buffer[i] != getPlaceholder(i) && buffer[i] != opts.skipOptionalPartCharacter) {
  480. isValid(i, buffer[i], true, true);
  481. }
  482. }
  483. }
  484. function casing(elem, test) {
  485. switch (test.casing) {
  486. case "upper":
  487. elem = elem.toUpperCase();
  488. break;
  489. case "lower":
  490. elem = elem.toLowerCase();
  491. break;
  492. }
  493. return elem;
  494. }
  495. function isValid(pos, c, strict, fromSetValid) { //strict true ~ no correction or autofill
  496. strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
  497. function _isValid(position, c, strict, fromSetValid) {
  498. var rslt = false;
  499. $.each(getTests(position), function (ndx, tst) {
  500. var test = tst["match"];
  501. var loopend = c ? 1 : 0, chrs = '', buffer = getBuffer();
  502. for (var i = test.cardinality; i > loopend; i--) {
  503. chrs += getBufferElement(position - (i - 1));
  504. }
  505. if (c) {
  506. chrs += c;
  507. }
  508. //return is false or a json object => { pos: ??, c: ??} or true
  509. rslt = test.fn != null ?
  510. test.fn.test(chrs, buffer, position, strict, opts)
  511. : (c == test["def"] || c == opts.skipOptionalPartCharacter) && test["def"] != "" ? //non mask
  512. { c: test["def"], pos: position }
  513. : false;
  514. if (rslt !== false) {
  515. var elem = rslt.c != undefined ? rslt.c : c;
  516. elem = (elem == opts.skipOptionalPartCharacter && test["fn"] === null) ? test["def"] : elem;
  517. var validatedPos = position;
  518. if (rslt["refreshFromBuffer"]) {
  519. var refresh = rslt["refreshFromBuffer"];
  520. strict = true;
  521. if (refresh === true) {
  522. getMaskSet()["validPositions"] = {};
  523. getMaskSet()["tests"] = {};
  524. refreshFromBuffer(0, getBuffer().length);
  525. }
  526. else {
  527. refreshFromBuffer(refresh["start"], refresh["end"]);
  528. }
  529. if (rslt.pos == undefined && rslt.c == undefined) {
  530. rslt.pos = getLastValidPosition();
  531. return false;//breakout if refreshFromBuffer && nothing to insert
  532. }
  533. validatedPos = rslt.pos != undefined ? rslt.pos : position;
  534. tst = getTests(validatedPos)[0]; //possible mismatch TODO
  535. } else if (rslt !== true && rslt["pos"] != position) { //their is a position offset
  536. validatedPos = rslt["pos"];
  537. refreshFromBuffer(position, validatedPos);
  538. tst = getTests(validatedPos)[0]; //possible mismatch TODO
  539. }
  540. if (ndx > 0) {
  541. resetMaskSet(true);
  542. }
  543. if (!setValidPosition(validatedPos, $.extend({}, tst, { "input": casing(elem, test) }), fromSetValid))
  544. rslt = false;
  545. return false; //break from $.each
  546. }
  547. });
  548. return rslt;
  549. }
  550. var maskPos = pos;
  551. var result = _isValid(maskPos, c, strict, fromSetValid);
  552. if (!strict && result === false) {
  553. var currentPosValid = getMaskSet()["validPositions"][maskPos];
  554. if (currentPosValid && currentPosValid["match"].fn == null && (currentPosValid["match"].def == c || c == opts.skipOptionalPartCharacter)) {
  555. result = { "caret": seekNext(maskPos) };
  556. } else if ((opts.insertMode || getMaskSet()["validPositions"][seekNext(maskPos)] == undefined) && !isMask(maskPos)) { //does the input match on a further position?
  557. for (var nPos = maskPos + 1, snPos = seekNext(maskPos) ; nPos <= snPos; nPos++) {
  558. result = _isValid(nPos, c, strict, fromSetValid);
  559. if (result !== false) {
  560. maskPos = nPos;
  561. break;
  562. }
  563. }
  564. }
  565. }
  566. if (result === true) result = { "pos": maskPos };
  567. return result;
  568. }
  569. function isMask(pos) {
  570. var test = getTest(pos);
  571. return test.fn != null ? test.fn : false;
  572. }
  573. function getMaskLength() {
  574. var maskLength;
  575. maxLength = $el.prop('maxLength');
  576. if (maxLength == -1) maxLength = undefined; /* FF sets no defined max length to -1 */
  577. if (opts.greedy == false) {
  578. var pos, lvp = getLastValidPosition(), testPos = getMaskSet()["validPositions"][lvp],
  579. ndxIntlzr = testPos != undefined ? testPos["locator"].slice() : undefined;
  580. for (pos = lvp + 1; testPos == undefined || (testPos["match"]["fn"] != null || (testPos["match"]["fn"] == null && testPos["match"]["def"] != "")) ; pos++) {
  581. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  582. ndxIntlzr = testPos["locator"].slice();
  583. }
  584. maskLength = pos;
  585. } else
  586. maskLength = getBuffer().length;
  587. return (maxLength == undefined || maskLength < maxLength) ? maskLength : maxLength;
  588. }
  589. function seekNext(pos) {
  590. var maskL = getMaskLength();
  591. if (pos >= maskL) return maskL;
  592. var position = pos;
  593. while (++position < maskL && !isMask(position) && (opts.nojumps !== true || opts.nojumpsThreshold > position)) {
  594. }
  595. return position;
  596. }
  597. function seekPrevious(pos) {
  598. var position = pos;
  599. if (position <= 0) return 0;
  600. while (--position > 0 && !isMask(position)) {
  601. };
  602. return position;
  603. }
  604. function getBufferElement(position) {
  605. return getMaskSet()["validPositions"][position] == undefined ? getPlaceholder(position) : getMaskSet()["validPositions"][position]["input"];
  606. }
  607. function writeBuffer(input, buffer, caretPos) {
  608. input._valueSet(buffer.join(''));
  609. if (caretPos != undefined) {
  610. caret(input, caretPos);
  611. }
  612. }
  613. function getPlaceholder(pos, test) {
  614. test = test || getTest(pos);
  615. return test["fn"] == null ? test["def"] : opts.placeholder.charAt(pos % opts.placeholder.length);
  616. }
  617. function checkVal(input, writeOut, strict, nptvl, intelliCheck) {
  618. var inputValue = nptvl != undefined ? nptvl.slice() : truncateInput(input._valueGet()).split('');
  619. resetMaskSet();
  620. if (writeOut) input._valueSet(""); //initial clear
  621. $.each(inputValue, function (ndx, charCode) {
  622. if (intelliCheck === true) {
  623. var p = getMaskSet()["p"],
  624. lvp = p == -1 ? p : seekPrevious(p),
  625. pos = lvp == -1 ? ndx : seekNext(lvp);
  626. if ($.inArray(charCode, getBufferTemplate().slice(lvp + 1, pos)) == -1) {
  627. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  628. }
  629. } else {
  630. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  631. strict = strict || (ndx > 0 && ndx > getMaskSet()["p"]);
  632. }
  633. });
  634. if (writeOut)
  635. writeBuffer(input, getBuffer(), $(input).is(":focus") ? seekNext(getLastValidPosition(0)) : undefined);
  636. }
  637. function escapeRegex(str) {
  638. return $.inputmask.escapeRegex.call(this, str);
  639. }
  640. function truncateInput(inputValue) {
  641. return inputValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*$"), "");
  642. }
  643. function clearOptionalTail(input) {
  644. var buffer = getBuffer(), tmpBuffer = buffer.slice(),
  645. pos, lvp = getLastValidPosition(), positions = {},
  646. ndxIntlzr = getMaskSet()["validPositions"][lvp] != undefined ? getMaskSet()["validPositions"][lvp]["locator"].slice() : undefined, testPos;
  647. for (pos = lvp + 1; pos < tmpBuffer.length; pos++) {
  648. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  649. ndxIntlzr = testPos["locator"].slice();
  650. positions[pos] = testPos;
  651. }
  652. for (pos = tmpBuffer.length - 1; pos > lvp; pos--) {
  653. testPos = positions[pos]["match"];
  654. if (testPos.optionality && tmpBuffer[pos] == getPlaceholder(pos, testPos)) {
  655. tmpBuffer.pop();
  656. } else break;
  657. }
  658. writeBuffer(input, tmpBuffer);
  659. }
  660. function unmaskedvalue($input, skipDatepickerCheck) {
  661. if ($input.data('_inputmask') && (skipDatepickerCheck === true || !$input.hasClass('hasDatepicker'))) {
  662. var umValue = [], vps = getMaskSet()["validPositions"];
  663. for (var pndx in vps) {
  664. if (vps[pndx]["match"] && vps[pndx]["match"].fn != null) {
  665. umValue.push(vps[pndx]["input"]);
  666. }
  667. }
  668. var unmaskedValue = (isRTL ? umValue.reverse() : umValue).join('');
  669. var bufferValue = (isRTL ? getBuffer().reverse() : getBuffer()).join('');
  670. return $.isFunction(opts.onUnMask) ? opts.onUnMask.call($input, bufferValue, unmaskedValue, opts) : unmaskedValue;
  671. } else {
  672. return $input[0]._valueGet();
  673. }
  674. }
  675. function TranslatePosition(pos) {
  676. if (isRTL && typeof pos == 'number' && (!opts.greedy || opts.placeholder != "")) {
  677. var bffrLght = getBuffer().length;
  678. pos = bffrLght - pos;
  679. }
  680. return pos;
  681. }
  682. function caret(input, begin, end) {
  683. var npt = input.jquery && input.length > 0 ? input[0] : input, range;
  684. if (typeof begin == 'number') {
  685. begin = TranslatePosition(begin);
  686. end = TranslatePosition(end);
  687. end = (typeof end == 'number') ? end : begin;
  688. //store caret for multi scope
  689. var data = $(npt).data('_inputmask') || {};
  690. data["caret"] = { "begin": begin, "end": end };
  691. $(npt).data('_inputmask', data);
  692. if (!$(npt).is(":visible")) {
  693. return;
  694. }
  695. npt.scrollLeft = npt.scrollWidth;
  696. if (opts.insertMode == false && begin == end) end++; //set visualization for insert/overwrite mode
  697. if (npt.setSelectionRange) {
  698. npt.selectionStart = begin;
  699. npt.selectionEnd = end;
  700. } else if (npt.createTextRange) {
  701. range = npt.createTextRange();
  702. range.collapse(true);
  703. range.moveEnd('character', end);
  704. range.moveStart('character', begin);
  705. range.select();
  706. }
  707. } else {
  708. var data = $(npt).data('_inputmask');
  709. if (!$(npt).is(":visible") && data && data["caret"] != undefined) {
  710. begin = data["caret"]["begin"];
  711. end = data["caret"]["end"];
  712. } else if (npt.setSelectionRange) {
  713. begin = npt.selectionStart;
  714. end = npt.selectionEnd;
  715. } else if (document.selection && document.selection.createRange) {
  716. range = document.selection.createRange();
  717. begin = 0 - range.duplicate().moveStart('character', -100000);
  718. end = begin + range.text.length;
  719. }
  720. begin = TranslatePosition(begin);
  721. end = TranslatePosition(end);
  722. return { "begin": begin, "end": end };
  723. }
  724. }
  725. function isComplete(buffer) { //return true / false / undefined (repeat *)
  726. if ($.isFunction(opts.isComplete)) return opts.isComplete.call($el, buffer, opts);
  727. if (opts.repeat == "*") return undefined;
  728. var complete = false,
  729. aml = seekPrevious(getMaskLength());
  730. if (getLastValidPosition() == aml) {
  731. complete = true;
  732. for (var i = 0; i <= aml; i++) {
  733. var mask = isMask(i);
  734. if ((mask && (buffer[i] == undefined || buffer[i] == getPlaceholder(i))) || (!mask && buffer[i] != getPlaceholder(i))) {
  735. complete = false;
  736. break;
  737. }
  738. }
  739. }
  740. return complete;
  741. }
  742. function isSelection(begin, end) {
  743. return isRTL ? (begin - end) > 1 || ((begin - end) == 1 && opts.insertMode) :
  744. (end - begin) > 1 || ((end - begin) == 1 && opts.insertMode);
  745. }
  746. function installEventRuler(npt) {
  747. var events = $._data(npt).events;
  748. $.each(events, function (eventType, eventHandlers) {
  749. $.each(eventHandlers, function (ndx, eventHandler) {
  750. if (eventHandler.namespace == "inputmask") {
  751. if (eventHandler.type != "setvalue") {
  752. var handler = eventHandler.handler;
  753. eventHandler.handler = function (e) {
  754. if (this.readOnly || this.disabled)
  755. e.preventDefault;
  756. else
  757. return handler.apply(this, arguments);
  758. };
  759. }
  760. }
  761. });
  762. });
  763. }
  764. function patchValueProperty(npt) {
  765. function PatchValhook(type) {
  766. if ($.valHooks[type] == undefined || $.valHooks[type].inputmaskpatch != true) {
  767. var valueGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) { return elem.value; };
  768. var valueSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  769. elem.value = value;
  770. return elem;
  771. };
  772. $.valHooks[type] = {
  773. get: function (elem) {
  774. var $elem = $(elem);
  775. if ($elem.data('_inputmask')) {
  776. if ($elem.data('_inputmask')['opts'].autoUnmask)
  777. return $elem.inputmask('unmaskedvalue');
  778. else {
  779. var result = valueGet(elem),
  780. inputData = $elem.data('_inputmask'),
  781. maskset = inputData['maskset'],
  782. bufferTemplate = maskset['_buffer'];
  783. bufferTemplate = bufferTemplate ? bufferTemplate.join('') : '';
  784. return result != bufferTemplate ? result : '';
  785. }
  786. } else return valueGet(elem);
  787. },
  788. set: function (elem, value) {
  789. var $elem = $(elem);
  790. var result = valueSet(elem, value);
  791. if ($elem.data('_inputmask')) $elem.triggerHandler('setvalue.inputmask');
  792. return result;
  793. },
  794. inputmaskpatch: true
  795. };
  796. }
  797. }
  798. var valueProperty;
  799. if (Object.getOwnPropertyDescriptor)
  800. valueProperty = Object.getOwnPropertyDescriptor(npt, "value");
  801. if (valueProperty && valueProperty.get) {
  802. if (!npt._valueGet) {
  803. var valueGet = valueProperty.get;
  804. var valueSet = valueProperty.set;
  805. npt._valueGet = function () {
  806. return isRTL ? valueGet.call(this).split('').reverse().join('') : valueGet.call(this);
  807. };
  808. npt._valueSet = function (value) {
  809. valueSet.call(this, isRTL ? value.split('').reverse().join('') : value);
  810. };
  811. Object.defineProperty(npt, "value", {
  812. get: function () {
  813. var $self = $(this), inputData = $(this).data('_inputmask');
  814. if (inputData) {
  815. return inputData['opts'].autoUnmask ? $self.inputmask('unmaskedvalue') : (valueGet.call(this) != getBufferTemplate().join('') ? valueGet.call(this) : '');
  816. } else return valueGet.call(this);
  817. },
  818. set: function (value) {
  819. valueSet.call(this, value);
  820. $(this).triggerHandler('setvalue.inputmask');
  821. }
  822. });
  823. }
  824. } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
  825. if (!npt._valueGet) {
  826. var valueGet = npt.__lookupGetter__("value");
  827. var valueSet = npt.__lookupSetter__("value");
  828. npt._valueGet = function () {
  829. return isRTL ? valueGet.call(this).split('').reverse().join('') : valueGet.call(this);
  830. };
  831. npt._valueSet = function (value) {
  832. valueSet.call(this, isRTL ? value.split('').reverse().join('') : value);
  833. };
  834. npt.__defineGetter__("value", function () {
  835. var $self = $(this), inputData = $(this).data('_inputmask');
  836. if (inputData) {
  837. return inputData['opts'].autoUnmask ? $self.inputmask('unmaskedvalue') : (valueGet.call(this) != getBufferTemplate().join('') ? valueGet.call(this) : '');
  838. } else return valueGet.call(this);
  839. });
  840. npt.__defineSetter__("value", function (value) {
  841. valueSet.call(this, value);
  842. $(this).triggerHandler('setvalue.inputmask');
  843. });
  844. }
  845. } else {
  846. if (!npt._valueGet) {
  847. npt._valueGet = function () { return isRTL ? this.value.split('').reverse().join('') : this.value; };
  848. npt._valueSet = function (value) { this.value = isRTL ? value.split('').reverse().join('') : value; };
  849. }
  850. PatchValhook(npt.type);
  851. }
  852. }
  853. function HandleRemove(input, k, pos) {
  854. if (opts.numericInput || isRTL) {
  855. switch (k) {
  856. case opts.keyCode.BACKSPACE:
  857. k = opts.keyCode.DELETE;
  858. break;
  859. case opts.keyCode.DELETE:
  860. k = opts.keyCode.BACKSPACE;
  861. break;
  862. }
  863. if (isRTL) {
  864. var pend = pos.end;
  865. pos.end = pos.begin;
  866. pos.begin = pend;
  867. }
  868. }
  869. if (pos.begin == pos.end) {
  870. var posBegin = k == opts.keyCode.BACKSPACE ? pos.begin - 1 : pos.begin;
  871. if (k == opts.keyCode.BACKSPACE)
  872. pos.begin = seekPrevious(pos.begin);
  873. else if (k == opts.keyCode.DELETE)
  874. pos.end++;
  875. } else if (pos.end - pos.begin == 1 && !opts.insertMode) {
  876. if (k == opts.keyCode.BACKSPACE)
  877. pos.begin--;
  878. }
  879. stripValidPositions(pos.begin, pos.end);
  880. var firstMaskPos = seekNext(-1);
  881. if (getLastValidPosition() < firstMaskPos) {
  882. getMaskSet()["p"] = firstMaskPos;
  883. } else {
  884. getMaskSet()["p"] = pos.begin;
  885. }
  886. }
  887. function keydownEvent(e) {
  888. //Safari 5.1.x - modal dialog fires keypress twice workaround
  889. skipKeyPressEvent = false;
  890. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  891. //backspace, delete, and escape get special treatment
  892. if (k == opts.keyCode.BACKSPACE || k == opts.keyCode.DELETE || (iphone && k == 127) || e.ctrlKey && k == 88) { //backspace/delete
  893. e.preventDefault(); //stop default action but allow propagation
  894. if (k == 88) valueOnFocus = getBuffer().join('');
  895. HandleRemove(input, k, pos);
  896. writeBuffer(input, getBuffer(), getMaskSet()["p"]);
  897. if (input._valueGet() == getBufferTemplate().join(''))
  898. $input.trigger('cleared');
  899. if (opts.showTooltip) { //update tooltip
  900. $input.prop("title", getMaskSet()["mask"]);
  901. }
  902. } else if (k == opts.keyCode.END || k == opts.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
  903. setTimeout(function () {
  904. var caretPos = seekNext(getLastValidPosition());
  905. if (!opts.insertMode && caretPos == getMaskLength() && !e.shiftKey) caretPos--;
  906. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos);
  907. }, 0);
  908. } else if ((k == opts.keyCode.HOME && !e.shiftKey) || k == opts.keyCode.PAGE_UP) { //Home or page_up
  909. caret(input, 0, e.shiftKey ? pos.begin : 0);
  910. } else if (k == opts.keyCode.ESCAPE || (k == 90 && e.ctrlKey)) { //escape && undo
  911. checkVal(input, true, false, valueOnFocus.split(''));
  912. $input.click();
  913. } else if (k == opts.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
  914. opts.insertMode = !opts.insertMode;
  915. caret(input, !opts.insertMode && pos.begin == getMaskLength() ? pos.begin - 1 : pos.begin);
  916. } else if (opts.insertMode == false && !e.shiftKey) {
  917. if (k == opts.keyCode.RIGHT) {
  918. setTimeout(function () {
  919. var caretPos = caret(input);
  920. caret(input, caretPos.begin);
  921. }, 0);
  922. } else if (k == opts.keyCode.LEFT) {
  923. setTimeout(function () {
  924. var caretPos = caret(input);
  925. caret(input, caretPos.begin - 1);
  926. }, 0);
  927. }
  928. }
  929. var currentCaretPos = caret(input);
  930. var keydownResult = opts.onKeyDown.call(this, e, getBuffer(), opts);
  931. if (keydownResult && keydownResult["refreshFromBuffer"] === true) { //extra stuff to execute on keydown
  932. getMaskSet()["validPositions"] = {};
  933. getMaskSet()["tests"] = {};
  934. refreshFromBuffer(0, getBuffer().length);
  935. resetMaskSet(true);
  936. writeBuffer(input, getBuffer());
  937. caret(input, currentCaretPos.begin, currentCaretPos.end);
  938. }
  939. ignorable = $.inArray(k, opts.ignorables) != -1;
  940. }
  941. function keypressEvent(e, checkval, k, writeOut, strict, ndx) {
  942. //Safari 5.1.x - modal dialog fires keypress twice workaround
  943. if (k == undefined && skipKeyPressEvent) return false;
  944. skipKeyPressEvent = true;
  945. var input = this, $input = $(input);
  946. e = e || window.event;
  947. var k = checkval ? k : (e.which || e.charCode || e.keyCode);
  948. if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
  949. return true;
  950. } else {
  951. if (k) {
  952. //special treat the decimal separator
  953. if (checkval !== true && k == 46 && e.shiftKey == false && opts.radixPoint == ",") k = 44;
  954. var pos, forwardPosition, c = String.fromCharCode(k);
  955. if (checkval) {
  956. var pcaret = strict ? ndx : getLastValidPosition() + 1;
  957. pos = { begin: pcaret, end: pcaret };
  958. } else {
  959. pos = caret(input);
  960. }
  961. //should we clear a possible selection??
  962. var isSlctn = isSelection(pos.begin, pos.end);
  963. if (isSlctn) {
  964. getMaskSet()["undoPositions"] = $.extend(true, {}, getMaskSet()["validPositions"]); //init undobuffer for recovery when not valid
  965. HandleRemove(input, opts.keyCode.DELETE, pos);
  966. if (!opts.insertMode) { //preserve some space
  967. opts.insertMode = !opts.insertMode;
  968. setValidPosition(pos.begin, strict);
  969. opts.insertMode = !opts.insertMode;
  970. }
  971. isSlctn = !opts.multi;
  972. }
  973. getMaskSet()["writeOutBuffer"] = true;
  974. var p = pos.begin;
  975. var valResult = isValid(p, c, strict);
  976. if (valResult !== false) {
  977. if (valResult !== true) {
  978. p = valResult.pos != undefined ? valResult.pos : p; //set new position from isValid
  979. c = valResult.c != undefined ? valResult.c : c; //set new char from isValid
  980. }
  981. resetMaskSet(true);
  982. if (valResult.caret != undefined)
  983. forwardPosition = valResult.caret;
  984. else {
  985. var vps = getMaskSet()["validPositions"];
  986. if (vps[p + 1] != undefined && getTestTemplate(pos + 1, vps[p].locator.slice(), p)["match"].def != vps[p + 1]["match"].def)
  987. forwardPosition = p + 1;
  988. else forwardPosition = seekNext(p);
  989. }
  990. getMaskSet()["p"] = forwardPosition; //needed for checkval
  991. }
  992. if (writeOut !== false) {
  993. var self = this;
  994. setTimeout(function () { opts.onKeyValidation.call(self, valResult, opts); }, 0);
  995. if (getMaskSet()["writeOutBuffer"] && valResult !== false) {
  996. var buffer = getBuffer();
  997. writeBuffer(input, buffer, checkval ? undefined : opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  998. if (checkval !== true) {
  999. setTimeout(function () { //timeout needed for IE
  1000. if (isComplete(buffer) === true)
  1001. $input.trigger("complete");
  1002. skipInputEvent = true;
  1003. $input.trigger("input");
  1004. }, 0);
  1005. }
  1006. } else if (isSlctn) {
  1007. getMaskSet()["buffer"] = undefined;
  1008. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1009. }
  1010. } else if (isSlctn) {
  1011. getMaskSet()["buffer"] = undefined;
  1012. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1013. }
  1014. if (opts.showTooltip) { //update tooltip
  1015. $input.prop("title", getMaskSet()["mask"]);
  1016. }
  1017. //needed for IE8 and below
  1018. if (e && checkval != true) e.preventDefault ? e.preventDefault() : e.returnValue = false;
  1019. }
  1020. }
  1021. }
  1022. function keyupEvent(e) {
  1023. var $input = $(this), input = this, k = e.keyCode, buffer = getBuffer();
  1024. var keyupResult = opts.onKeyUp.call(this, e, buffer, opts);
  1025. if (keyupResult && keyupResult["refreshFromBuffer"] === true) {
  1026. getMaskSet()["validPositions"] = {};
  1027. getMaskSet()["tests"] = {};
  1028. refreshFromBuffer(0, getBuffer().length);
  1029. resetMaskSet(true);
  1030. writeBuffer(input, getBuffer());
  1031. }
  1032. if (k == opts.keyCode.TAB && opts.showMaskOnFocus) {
  1033. if ($input.hasClass('focus.inputmask') && input._valueGet().length == 0) {
  1034. resetMaskSet();
  1035. buffer = getBuffer();
  1036. writeBuffer(input, buffer);
  1037. caret(input, 0);
  1038. valueOnFocus = getBuffer().join('');
  1039. } else {
  1040. writeBuffer(input, buffer);
  1041. caret(input, TranslatePosition(0), TranslatePosition(getMaskLength()));
  1042. }
  1043. }
  1044. }
  1045. function pasteEvent(e) {
  1046. if (skipInputEvent === true && e.type == "input") {
  1047. skipInputEvent = false;
  1048. return true;
  1049. }
  1050. var input = this, $input = $(input);
  1051. //paste event for IE8 and lower I guess ;-)
  1052. if (e.type == "propertychange" && input._valueGet().length <= getMaskLength()) {
  1053. return true;
  1054. }
  1055. setTimeout(function () {
  1056. var pasteValue = $.isFunction(opts.onBeforePaste) ? opts.onBeforePaste.call(input, input._valueGet(), opts) : input._valueGet();
  1057. checkVal(input, true, false, pasteValue.split(''), true);
  1058. if (isComplete(getBuffer()) === true)
  1059. $input.trigger("complete");
  1060. $input.click();
  1061. }, 0);
  1062. }
  1063. function mobileInputEvent(e) {
  1064. if (skipInputEvent === true && e.type == "input") {
  1065. skipInputEvent = false;
  1066. return true;
  1067. }
  1068. var input = this;
  1069. //backspace in chrome32 only fires input event - detect & treat
  1070. var caretPos = caret(input),
  1071. currentValue = input._valueGet();
  1072. currentValue = currentValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*"), "");
  1073. //correct caretposition for chrome
  1074. if (caretPos.begin > currentValue.length) {
  1075. caret(input, currentValue.length);
  1076. caretPos = caret(input);
  1077. }
  1078. if ((getBuffer().length - currentValue.length) == 1 && currentValue.charAt(caretPos.begin) != getBuffer()[caretPos.begin]
  1079. && currentValue.charAt(caretPos.begin + 1) != getBuffer()[caretPos.begin]
  1080. && !isMask(caretPos.begin)) {
  1081. e.keyCode = opts.keyCode.BACKSPACE;
  1082. keydownEvent.call(input, e);
  1083. }
  1084. e.preventDefault();
  1085. }
  1086. function mask(el) {
  1087. $el = $(el);
  1088. if ($el.is(":input")) {
  1089. //store tests & original buffer in the input element - used to get the unmasked value
  1090. $el.data('_inputmask', {
  1091. 'maskset': maskset,
  1092. 'opts': opts,
  1093. 'isRTL': false
  1094. });
  1095. //show tooltip
  1096. if (opts.showTooltip) {
  1097. $el.prop("title", getMaskSet()["mask"]);
  1098. }
  1099. patchValueProperty(el);
  1100. if (el.dir == "rtl" || opts.rightAlign)
  1101. $el.css("text-align", "right");
  1102. if (el.dir == "rtl" || opts.numericInput) {
  1103. el.dir = "ltr";
  1104. $el.removeAttr("dir");
  1105. var inputData = $el.data('_inputmask');
  1106. inputData['isRTL'] = true;
  1107. $el.data('_inputmask', inputData);
  1108. isRTL = true;
  1109. }
  1110. //unbind all events - to make sure that no other mask will interfere when re-masking
  1111. $el.unbind(".inputmask");
  1112. $el.removeClass('focus.inputmask');
  1113. //bind events
  1114. $el.closest('form').bind("submit", function () { //trigger change on submit if any
  1115. if (valueOnFocus != getBuffer().join('')) {
  1116. $el.change();
  1117. }
  1118. }).bind('reset', function () {
  1119. setTimeout(function () {
  1120. $el.trigger("setvalue");
  1121. }, 0);
  1122. });
  1123. $el.bind("mouseenter.inputmask", function () {
  1124. var $input = $(this), input = this;
  1125. if (!$input.hasClass('focus.inputmask') && opts.showMaskOnHover) {
  1126. if (input._valueGet() != getBuffer().join('')) {
  1127. writeBuffer(input, getBuffer());
  1128. }
  1129. }
  1130. }).bind("blur.inputmask", function () {
  1131. var $input = $(this), input = this;
  1132. if ($input.data('_inputmask')) {
  1133. var nptValue = input._valueGet(), buffer = getBuffer();
  1134. $input.removeClass('focus.inputmask');
  1135. if (valueOnFocus != getBuffer().join('')) {
  1136. $input.change();
  1137. }
  1138. if (opts.clearMaskOnLostFocus && nptValue != '') {
  1139. if (nptValue == getBufferTemplate().join(''))
  1140. input._valueSet('');
  1141. else { //clearout optional tail of the mask
  1142. clearOptionalTail(input);
  1143. }
  1144. }
  1145. if (isComplete(buffer) === false) {
  1146. $input.trigger("incomplete");
  1147. if (opts.clearIncomplete) {
  1148. resetMaskSet();
  1149. if (opts.clearMaskOnLostFocus)
  1150. input._valueSet('');
  1151. else {
  1152. buffer = getBufferTemplate().slice();
  1153. writeBuffer(input, buffer);
  1154. }
  1155. }
  1156. }
  1157. }
  1158. }).bind("focus.inputmask", function () {
  1159. var $input = $(this), input = this, nptValue = input._valueGet();
  1160. if (opts.showMaskOnFocus && !$input.hasClass('focus.inputmask') && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue == ''))) {
  1161. if (input._valueGet() != getBuffer().join('')) {
  1162. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  1163. }
  1164. }
  1165. $input.addClass('focus.inputmask');
  1166. valueOnFocus = getBuffer().join('');
  1167. }).bind("mouseleave.inputmask", function () {
  1168. var $input = $(this), input = this;
  1169. if (opts.clearMaskOnLostFocus) {
  1170. if (!$input.hasClass('focus.inputmask') && input._valueGet() != $input.attr("placeholder")) {
  1171. if (input._valueGet() == getBufferTemplate().join('') || input._valueGet() == '')
  1172. input._valueSet('');
  1173. else { //clearout optional tail of the mask
  1174. clearOptionalTail(input);
  1175. }
  1176. }
  1177. }
  1178. }).bind("click.inputmask", function () {
  1179. var input = this;
  1180. setTimeout(function () {
  1181. var selectedCaret = caret(input), buffer = getBuffer();
  1182. if (selectedCaret.begin == selectedCaret.end) {
  1183. var clickPosition = isRTL ? TranslatePosition(selectedCaret.begin) : selectedCaret.begin,
  1184. lvp = getLastValidPosition(clickPosition),
  1185. lastPosition = seekNext(lvp);
  1186. if (clickPosition < lastPosition) {
  1187. if (isMask(clickPosition))
  1188. caret(input, clickPosition);
  1189. else caret(input, seekNext(clickPosition));
  1190. } else
  1191. caret(input, lastPosition);
  1192. }
  1193. }, 0);
  1194. }).bind('dblclick.inputmask', function () {
  1195. var input = this;
  1196. setTimeout(function () {
  1197. caret(input, 0, seekNext(getLastValidPosition()));
  1198. }, 0);
  1199. }).bind(PasteEventType + ".inputmask dragdrop.inputmask drop.inputmask", pasteEvent
  1200. ).bind('setvalue.inputmask', function () {
  1201. var input = this;
  1202. checkVal(input, true);
  1203. valueOnFocus = getBuffer().join('');
  1204. if (input._valueGet() == getBufferTemplate().join(''))
  1205. input._valueSet('');
  1206. }).bind('complete.inputmask', opts.oncomplete
  1207. ).bind('incomplete.inputmask', opts.onincomplete
  1208. ).bind('cleared.inputmask', opts.oncleared);
  1209. $el.bind("keydown.inputmask", keydownEvent
  1210. ).bind("keypress.inputmask", keypressEvent
  1211. ).bind("keyup.inputmask", keyupEvent);
  1212. if (android || androidfirefox || androidchrome || kindle) {
  1213. if (PasteEventType == "input") {
  1214. $el.unbind(PasteEventType + ".inputmask");
  1215. }
  1216. $el.bind("input.inputmask", mobileInputEvent);
  1217. }
  1218. if (msie1x)
  1219. $el.bind("input.inputmask", pasteEvent);
  1220. //apply mask
  1221. var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(el, el._valueGet(), opts) : el._valueGet();
  1222. checkVal(el, true, false, initialValue.split(''), true);
  1223. valueOnFocus = getBuffer().join('');
  1224. // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
  1225. var activeElement;
  1226. try {
  1227. activeElement = document.activeElement;
  1228. } catch (e) {
  1229. }
  1230. if (activeElement === el) { //position the caret when in focus
  1231. $el.addClass('focus.inputmask');
  1232. caret(el, seekNext(getLastValidPosition()));
  1233. } else if (opts.clearMaskOnLostFocus) {
  1234. if (getBuffer().join('') == getBufferTemplate().join('')) {
  1235. el._valueSet('');
  1236. } else {
  1237. clearOptionalTail(el);
  1238. }
  1239. } else {
  1240. writeBuffer(el, getBuffer());
  1241. }
  1242. installEventRuler(el);
  1243. }
  1244. }
  1245. //action object
  1246. if (actionObj != undefined) {
  1247. switch (actionObj["action"]) {
  1248. case "isComplete":
  1249. $el = $(actionObj["el"]);
  1250. maskset = $el.data('_inputmask')['maskset'];
  1251. opts = $el.data('_inputmask')['opts'];
  1252. return isComplete(actionObj["buffer"]);
  1253. case "unmaskedvalue":
  1254. $el = actionObj["$input"];
  1255. maskset = $el.data('_inputmask')['maskset'];
  1256. opts = $el.data('_inputmask')['opts'];
  1257. isRTL = actionObj["$input"].data('_inputmask')['isRTL'];
  1258. return unmaskedvalue(actionObj["$input"], actionObj["skipDatepickerCheck"]);
  1259. case "mask":
  1260. valueOnFocus = getBuffer().join('');
  1261. mask(actionObj["el"]);
  1262. break;
  1263. case "format":
  1264. $el = $({});
  1265. $el.data('_inputmask', {
  1266. 'maskset': maskset,
  1267. 'opts': opts,
  1268. 'isRTL': opts.numericInput
  1269. });
  1270. if (opts.numericInput) {
  1271. isRTL = true;
  1272. }
  1273. var valueBuffer = actionObj["value"].split('');
  1274. checkVal($el, false, false, isRTL ? valueBuffer.reverse() : valueBuffer, true);
  1275. return isRTL ? getBuffer().reverse().join('') : getBuffer().join('');
  1276. case "isValid":
  1277. $el = $({});
  1278. $el.data('_inputmask', {
  1279. 'maskset': maskset,
  1280. 'opts': opts,
  1281. 'isRTL': opts.numericInput
  1282. });
  1283. if (opts.numericInput) {
  1284. isRTL = true;
  1285. }
  1286. var valueBuffer = actionObj["value"].split('');
  1287. checkVal($el, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
  1288. return isComplete(getBuffer());
  1289. case "getemptymask":
  1290. $el = $(actionObj["el"]);
  1291. maskset = $el.data('_inputmask')['maskset'];
  1292. opts = $el.data('_inputmask')['opts'];
  1293. return getBufferTemplate();
  1294. case "remove":
  1295. var el = actionObj["el"];
  1296. $el = $(el);
  1297. maskset = $el.data('_inputmask')['maskset'];
  1298. opts = $el.data('_inputmask')['opts'];
  1299. //writeout the unmaskedvalue
  1300. el._valueSet(unmaskedvalue($el));
  1301. //unbind all events
  1302. $el.unbind(".inputmask");
  1303. $el.removeClass('focus.inputmask');
  1304. //clear data
  1305. $el.removeData('_inputmask');
  1306. //restore the value property
  1307. var valueProperty;
  1308. if (Object.getOwnPropertyDescriptor)
  1309. valueProperty = Object.getOwnPropertyDescriptor(el, "value");
  1310. if (valueProperty && valueProperty.get) {
  1311. if (el._valueGet) {
  1312. Object.defineProperty(el, "value", {
  1313. get: el._valueGet,
  1314. set: el._valueSet
  1315. });
  1316. }
  1317. } else if (document.__lookupGetter__ && el.__lookupGetter__("value")) {
  1318. if (el._valueGet) {
  1319. el.__defineGetter__("value", el._valueGet);
  1320. el.__defineSetter__("value", el._valueSet);
  1321. }
  1322. }
  1323. try { //try catch needed for IE7 as it does not supports deleting fns
  1324. delete el._valueGet;
  1325. delete el._valueSet;
  1326. } catch (e) {
  1327. el._valueGet = undefined;
  1328. el._valueSet = undefined;
  1329. }
  1330. break;
  1331. }
  1332. }
  1333. };
  1334. $.inputmask = {
  1335. //options default
  1336. defaults: {
  1337. placeholder: "_",
  1338. optionalmarker: { start: "[", end: "]" },
  1339. quantifiermarker: { start: "{", end: "}" },
  1340. groupmarker: { start: "(", end: ")" },
  1341. alternatormarker: "|",
  1342. escapeChar: "\\",
  1343. mask: null,
  1344. oncomplete: $.noop, //executes when the mask is complete
  1345. onincomplete: $.noop, //executes when the mask is incomplete and focus is lost
  1346. oncleared: $.noop, //executes when the mask is cleared
  1347. repeat: 0, //repetitions of the mask: * ~ forever, otherwise specify an integer
  1348. greedy: true, //true: allocated buffer for the mask and repetitions - false: allocate only if needed
  1349. autoUnmask: false, //automatically unmask when retrieving the value with $.fn.val or value if the browser supports __lookupGetter__ or getOwnPropertyDescriptor
  1350. clearMaskOnLostFocus: true,
  1351. insertMode: true, //insert the input or overwrite the input
  1352. clearIncomplete: false, //clear the incomplete input on blur
  1353. aliases: {}, //aliases definitions => see jquery.inputmask.extensions.js
  1354. onKeyUp: $.noop, //override to implement autocomplete on certain keys for example
  1355. onKeyDown: $.noop, //override to implement autocomplete on certain keys for example
  1356. onBeforeMask: undefined, //executes before masking the initial value to allow preprocessing of the initial value. args => initialValue, opts => return processedValue
  1357. onBeforePaste: undefined, //executes before masking the pasted value to allow preprocessing of the pasted value. args => pastedValue, opts => return processedValue
  1358. onUnMask: undefined, //executes after unmasking to allow postprocessing of the unmaskedvalue. args => maskedValue, unmaskedValue, opts
  1359. showMaskOnFocus: true, //show the mask-placeholder when the input has focus
  1360. showMaskOnHover: true, //show the mask-placeholder when hovering the empty input
  1361. onKeyValidation: $.noop, //executes on every key-press with the result of isValid. Params: result, opts
  1362. skipOptionalPartCharacter: " ", //a character which can be used to skip an optional part of a mask
  1363. showTooltip: false, //show the activemask as tooltip
  1364. numericInput: false, //numericInput input direction style (input shifts to the left while holding the caret position)
  1365. getLastValidPosition: undefined, //override getLastValidPosition - args => maskset, closestTo, opts - return position (int)
  1366. rightAlign: false, //align to the right
  1367. //numeric basic properties
  1368. radixPoint: "", //".", // | ","
  1369. //numeric basic properties
  1370. definitions: {
  1371. '9': {
  1372. validator: "[0-9]",
  1373. cardinality: 1,
  1374. definitionSymbol: "*"
  1375. },
  1376. 'a': {
  1377. validator: "[A-Za-z\u0410-\u044F\u0401\u0451]",
  1378. cardinality: 1,
  1379. definitionSymbol: "*"
  1380. },
  1381. '*': {
  1382. validator: "[A-Za-z\u0410-\u044F\u0401\u04510-9]",
  1383. cardinality: 1
  1384. }
  1385. },
  1386. keyCode: {
  1387. 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,
  1388. 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
  1389. },
  1390. //specify keycodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF
  1391. 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],
  1392. isComplete: undefined //override for isComplete - args => buffer, opts - return true || false
  1393. },
  1394. masksCache: {},
  1395. escapeRegex: function (str) {
  1396. var specials = ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'];
  1397. return str.replace(new RegExp('(\\' + specials.join('|\\') + ')', 'gim'), '\\$1');
  1398. },
  1399. format: function (value, options) {
  1400. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1401. resolveAlias(opts.alias, options, opts);
  1402. return maskScope({ "action": "format", "value": value }, generateMaskSet(opts), opts);
  1403. },
  1404. isValid: function (value, options) {
  1405. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1406. resolveAlias(opts.alias, options, opts);
  1407. return maskScope({ "action": "isValid", "value": value }, generateMaskSet(opts), opts);
  1408. }
  1409. };
  1410. $.fn.inputmask = function (fn, options, targetScope, targetData, msk) {
  1411. targetScope = targetScope || maskScope;
  1412. targetData = targetData || "_inputmask";
  1413. function importAttributeOptions(npt, opts) {
  1414. var $npt = $(npt);
  1415. for (var option in opts) {
  1416. var optionData = $npt.data("inputmask-" + option.toLowerCase());
  1417. if (optionData != undefined)
  1418. opts[option] = optionData;
  1419. }
  1420. return opts;
  1421. }
  1422. var opts = $.extend(true, {}, $.inputmask.defaults, options),
  1423. maskset;
  1424. if (typeof fn === "string") {
  1425. switch (fn) {
  1426. case "mask":
  1427. //resolve possible aliases given by options
  1428. resolveAlias(opts.alias, options, opts);
  1429. maskset = generateMaskSet(opts);
  1430. if (maskset.length == 0) { return this; }
  1431. return this.each(function () {
  1432. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, $.isArray(maskset) && targetScope === maskScope ? maskset[0] : maskset), importAttributeOptions(this, opts));
  1433. });
  1434. case "unmaskedvalue":
  1435. var $input = $(this);
  1436. if ($input.data(targetData)) {
  1437. return targetScope({ "action": "unmaskedvalue", "$input": $input });
  1438. } else return $input.val();
  1439. case "remove":
  1440. return this.each(function () {
  1441. var $input = $(this);
  1442. if ($input.data(targetData)) {
  1443. targetScope({ "action": "remove", "el": this });
  1444. }
  1445. });
  1446. case "getemptymask": //return the default (empty) mask value, usefull for setting the default value in validation
  1447. if (this.data(targetData)) {
  1448. return targetScope({ "action": "getemptymask", "el": this });
  1449. }
  1450. else return "";
  1451. case "hasMaskedValue": //check wheter the returned value is masked or not; currently only works reliable when using jquery.val fn to retrieve the value
  1452. return this.data(targetData) ? !this.data(targetData)['opts'].autoUnmask : false;
  1453. case "isComplete":
  1454. if (this.data(targetData)) {
  1455. return targetScope({ "action": "isComplete", "buffer": this[0]._valueGet().split(''), "el": this });
  1456. } else return true;
  1457. case "getmetadata": //return mask metadata if exists
  1458. if (this.data(targetData)) {
  1459. maskset = this.data(targetData)['maskset'];
  1460. return maskset['metadata'];
  1461. }
  1462. else return undefined;
  1463. case "_detectScope":
  1464. resolveAlias(opts.alias, options, opts);
  1465. if (msk != undefined && !resolveAlias(msk, options, opts) && $.inArray(msk, ["mask", "unmaskedvalue", "remove", "getemptymask", "hasMaskedValue", "isComplete", "getmetadata", "_detectScope"]) == -1) {
  1466. opts.mask = msk;
  1467. }
  1468. if ($.isFunction(opts.mask)) {
  1469. opts.mask = opts.mask.call(this, opts);
  1470. }
  1471. return $.isArray(opts.mask);
  1472. default:
  1473. //check if the fn is an alias
  1474. if (!resolveAlias(fn, options, opts)) {
  1475. //maybe fn is a mask so we try
  1476. //set mask
  1477. opts.mask = fn;
  1478. }
  1479. maskset = generateMaskSet(opts);
  1480. if (maskset == undefined) { return this; }
  1481. return this.each(function () {
  1482. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, $.isArray(maskset) && targetScope === maskScope ? maskset[0] : maskset), importAttributeOptions(this, opts));
  1483. });
  1484. }
  1485. } else if (typeof fn == "object") {
  1486. opts = $.extend(true, {}, $.inputmask.defaults, fn);
  1487. resolveAlias(opts.alias, fn, opts); //resolve aliases
  1488. maskset = generateMaskSet(opts);
  1489. if (maskset == undefined) { return this; }
  1490. return this.each(function () {
  1491. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, $.isArray(maskset) && targetScope === maskScope ? maskset[0] : maskset), importAttributeOptions(this, opts));
  1492. });
  1493. } else if (fn == undefined) {
  1494. //look for data-inputmask atribute - the attribute should only contain optipns
  1495. return this.each(function () {
  1496. var attrOptions = $(this).attr("data-inputmask");
  1497. if (attrOptions && attrOptions != "") {
  1498. try {
  1499. attrOptions = attrOptions.replace(new RegExp("'", "g"), '"');
  1500. var dataoptions = $.parseJSON("{" + attrOptions + "}");
  1501. $.extend(true, dataoptions, options);
  1502. opts = $.extend(true, {}, $.inputmask.defaults, dataoptions);
  1503. resolveAlias(opts.alias, dataoptions, opts);
  1504. opts.alias = undefined;
  1505. $(this).inputmask("mask", opts, targetScope);
  1506. } catch (ex) { } //need a more relax parseJSON
  1507. }
  1508. });
  1509. }
  1510. };
  1511. }
  1512. })(jQuery);