DatePicker 'onChange' event not triggering when value entered by typing

if editable: true, and the user types the date instead of clicking with the mouse, the onChange event is not fired.
Any workaround?

Hello,

You can handle the onBlur event to get and set the typed value: Code Snippet

It does not work by default since user input may lead to unexpected results, so you need to check for a valid date and apply it, if it matches your criteria.