focus
fires when a Datepicker control has received focus
focus: (value: string | Date) => void;
Parameters:
value: string | Date
- the current value of the control
Example
form.getItem("datepicker").events.on("focus", (value) => {
console.log("focus", value);
});
Change log:
Added in v7.2