afterShow
fires after a control is shown
afterShow: (value: undefined) => void;
Parameters:
value: undefined
- the current value of the control, null
Example
form.getItem("spacer").events.on("afterShow", function(value) {
console.log("afterShow", value);
});