We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When entering the min for today and the maximum for 2 months from now, I cannot enter a day that has already passed in this month.
Example: Min: 08/21/2024 Max: 10/21/2024
I can't put any day before 21, such as 10, even though 09/10/2024 is within the limit.
This is the code:
const hoje = new Date; const maximo = new Date; maximo.setMonth(maximo.getMonth() + 2); $(this.inputPrimeiraMensalidade).inputmask({ min: hoje.toLocaleDateString('pt'), // 21/08/2024 max: maximo.toLocaleDateString('pt'), // 21/10/2024 inputFormat: 'dd/mm/yyyy', placeholder: '__/__/____', alias: 'datetime', clearIncomplete: true });
Also, using Flatpickr calendar library, if I try to select the date 09/10/2024, the inputmask displays "22/0_/____".
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When entering the min for today and the maximum for 2 months from now, I cannot enter a day that has already passed in this month.
Example:
Min: 08/21/2024
Max: 10/21/2024
I can't put any day before 21, such as 10, even though 09/10/2024 is within the limit.
This is the code:
Also, using Flatpickr calendar library, if I try to select the date 09/10/2024, the inputmask displays "22/0_/____".
The text was updated successfully, but these errors were encountered: