change
Description
fires when a new option is selected in the time pickerParameters
The callback of the event takes an object with the following parameter:
- value - (object) a date object with the the newly selected value
Example
<script>
function handleSelect({value}){
console.log(value);
}
</script>
<TimePicker onchange={handleSelect} />
Details
The handler function receives a date object with the newly selected value of the time picker.
Related article: Catching the change of the selected date