* Sets wether the field is visible. * @param {boolean} visible Field visibility * @return {Field} Fluent interface
(visible)
| 86 | * @return {Field} Fluent interface |
| 87 | */ |
| 88 | setVisible (visible) { |
| 89 | this._visible = visible |
| 90 | if (this._delegate && this._delegate.fieldNeedsLayout) { |
| 91 | this._delegate.fieldNeedsLayout(this) |
| 92 | } |
| 93 | return this |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Returns the field priority that determines the field order. |
no test coverage detected