isVisible()
checks whether a form is visible
isVisible(name?: string): boolean;
Parameters:
name|id: string
- optional, the name of a Form control or its id (if the name attribute is not defined in the config of the control)
Returns:
true
, if a form is visible; otherwise, false
.
Example
// checks whether a form is visible
form.isVisible(); // -> true/false
// checks whether a form control is visible
form.isVisible("combo"); // -> true/false
Change log:
added in v6.5