imaskjs
imaskjs copied to clipboard
Date mask problems
Hi, Testing imask, listing following findings:
-
Can enter 30.02 with only "mask: Date" which should not be allowed for February. It doesn't allow to complete but I can leave it as uncompleted.
-
Need an option to show placeholder on focus and removing on blur, like that:
mask.updateOptions({ lazy: false }); // Show placeholder on focus
});
element.addEventListener('blur', () => {
mask.updateOptions({ lazy: true }); // Hide placeholder when unfocused
});
- Need an option to autocomplete with current month-year or year after entering 01 or 01.02. on blur.