input
fires when a user enters the value of a control in the input manually
input: (inputValue: string) => void;
Parameters:
inputValue: string
- an entered value
Example
form.getItem("timepicker").events.on("input", function(inputValue) {
console.log("input", inputValue);
});
note
The functionality is available when the "editable" option of the TimePicker control is set to true.
Change log:
added in v7.0