* Sets the maximum value this field can contain. Updates the value to * reflect. * * @param max Maximum value.
(max: number | string | undefined | null)
| 166 | * @param max Maximum value. |
| 167 | */ |
| 168 | setMax(max: number | string | undefined | null) { |
| 169 | this.setMaxInternal(max); |
| 170 | this.setValue(this.getValue()); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Sets the maximum value this field can contain. Called internally to avoid |
no test coverage detected