afterShow
fires after a control is shown
afterShow: (value: number[]) => void;
Parameters:
value: number[]
- the current value of the control
Example
form.getItem("slider").events.on("afterShow", function(value) {
console.log("afterShow", value);
});
Change log:
added in v7.0