Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Errors | Read | IList of Error | Errors |
| Label | Read, Write | String | Label |
| Value | Read, Write | String | Value |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $profileField.HasErrors())
JavaScript
var booleanResponse = profileField.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $profileField.HasWarnings())
JavaScript
var booleanResponse = profileField.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $profileField.HasWarningsOrErrors())
JavaScript
var booleanResponse = profileField.HasWarningsOrErrors();
Returns
BooleanIsUniqueId
Velocity
#set($booleanResponse = $profileField.IsUniqueId($index))
JavaScript
var booleanResponse = profileField.IsUniqueId(index);
Parameters
| Name | Type | Description | Required | Default | Options |
|---|---|---|---|---|---|
| index | String | Index | Required |
Returns
BooleanThrowErrors
Velocity
$profileField.ThrowErrors()
JavaScript
profileField.ThrowErrors();