Enables the named field. The field you want to enable must be on the current page. This will invoke the field's registered enable/disable function if available.
Executed
Client-side only.
Arguments
Argument | Type | Description |
---|---|---|
fieldName | String, required | The name of the field to be enabled |
Example
See .disableField for a working example.
In this example a text field, TEXINPUT, will be enabled, allowing a user to enter text into it.
function (helper) {
helper.enableField('TEXTINPUT');
}
Last modified on March 21, 2024