beforeShow
fires before a control is shown
beforeShow: (value: string | Date) => boolean | void;
Parameters:
value: string | Date
- the current value of the control
Returns:
Return false
to prevent a control from being shown; otherwise - true
.
Example
form.getItem("datepicker").events.on("beforeShow", function(value) {
console.log("beforeShow", value);
return true;
});
Change log:
added in v7.0