RobinHerbots / Inputmask

Input Mask plugin
https://robinherbots.github.io/Inputmask/
MIT License
6.4k stars 2.17k forks source link

Is possible two dates in the same input? #1251

Open dbset opened 8 years ago

dbset commented 8 years ago

Hi Robin,

Please is possible two dates in the same input, but the second is optional, of course separated by space, how?

something : $('#field').inputmask('mask' : 'dd/mm/yyyy[ ][dd/mm/yyyy]');

If you try you will see what happens :(

Thanks for your great work

RobinHerbots commented 8 years ago

@ronaldosupport ,

It is not supported like you did but more like, (not tested)

 $('#field').inputmask(alias: 'dd/mm/yyyy', mask : '1/2/y[ 1/2/y]');

But this will also give some issues.