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 user types a date, the component should automatically add "/" and the cursor should always be at the end of the string.
On tablet or mobile (android-chrome, possibly ios), when user types a date and the "/" is displayed, the cursor moves before the last char.
For example user types: 12/1 and cursor moves before the "1" char so if he continues the result is 12/01 instead of 12/10.
It probably has to do with the keypress, keyup events which chrome on tablet/mobile doesn't recognise.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
When user types a date, the component should automatically add "/" and the cursor should always be at the end of the string.
Current Behavior
On tablet or mobile (android-chrome, possibly ios), when user types a date and the "/" is displayed, the cursor moves before the last char.
For example user types: 12/1 and cursor moves before the "1" char so if he continues the result is 12/01 instead of 12/10.
It probably has to do with the keypress, keyup events which chrome on tablet/mobile doesn't recognise.
The text was updated successfully, but these errors were encountered: