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