input
fires when a user types some text in the input
input: (inputValue: string | number) => void;
Parameters:
inputValue: string | number
- an entered value
Example
form.getItem("input").events.on("input", function(inputValue) {
console.log("input", inputValue);
});
Change log:
added in v7.0