beforeHide
fires before a Form control is hidden
boolean beforeHide(string name|id,any value){ ... };
Parameters
name|id | string | the name (or id, if the name is not specified) of the Form control |
value | any | the current value of the control |
Returns
boolean | false - to prevent a control from being hidden, otherwise true |
Example
form.events.on("BeforeHide", function(name, value) {
console.log("BeforeHide", name, value);
return false;
});
See also
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.
Back to top