My Tizen hybrid app (targetting Tizen 3.0) has an issue with its date picker, only when running on Tizen 4.0:
When changing the date in the date picker, the 'change' event is NOT fired.
Event is fired on Tizen 3.0, not on Tizen 4.0:
$datepicker.on('change', function() { ... });
...
<input type='date' id='datepicker'>
What event can I attach to which would be fired (on Tizen 3.0 and Tizen 4.0) when changing the date in the date picker?