afterHide
fires after hiding a control of Form
afterHide: (name: string, value?: any) => void;
Parameters:
name|id: string
- the name (or id, if the name is not specified) of the Form controlvalue: any
- the current value of the control
Example
form.events.on("afterHide", function(name, value) {
console.log("afterHide", name, value);
});
Related sample: Form. Events
Change log:
- added in v6.5
- Before v7.0, the event took one parameter - the control id.
- Starting from v7.0, the event takes two parameters: name|id and value.