-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
Dom value not updated when using typeable #79
Comments
Hey, i will look into it next week. In the meantime did you try to use |
I did try both. No change =( |
Hey, i tested your case with v-model and everything seems to be correct. If i select a date or type it, the events and the model will change to the new date even if i get the date with a js selector like Maybe the events are confusing because a For example if you have the date If you click on something else so that the blur event on the input field is triggered the other events are triggered as well and results in: Let me know if this is what bugs you. |
hello @MrWook 1st log is when selecting 04/05 using the datepicker widget Dates are reset in log 2 & 5 and the values logged are identical. But not the displayed value inside the input text |
I'm still confused. If i add the |
Hello @MrWook Change the value directly in the input to 2025 for example. |
For me everything works fine :/ |
I press enter after typing the input |
Ah yes i see thank you for the report, i will try and fix it |
@MrWook Thanks for the fixe, when will you do the next release? |
Hello,
I am having issues when reseting a date.
When selecting a date using the datepicker every thing works as expected.
However when i type the date inside the input (using typeable=true), the dom value is not updated.
The prop value however is updated.
When changing the value with the datepicker, both newVal & oldVal are correct, and the Dom IS UPDATED
But when changing the value using the input, both newVal & oldVal are correct, and the Dom IS NOT UPDATED
Thanks in advance for any feeback
The text was updated successfully, but these errors were encountered: