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
Boolean
HasWarnings
Velocity
#set($booleanResponse = $profileField.HasWarnings())
JavaScript
var booleanResponse = profileField.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $profileField.HasWarningsOrErrors())
JavaScript
var booleanResponse = profileField.HasWarningsOrErrors();
Returns
Boolean
IsUniqueId
Velocity
#set($booleanResponse = $profileField.IsUniqueId($index))
JavaScript
var booleanResponse = profileField.IsUniqueId(index);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
index | String | Index | Required |
Returns
Boolean
ThrowErrors
Velocity
$profileField.ThrowErrors()
JavaScript
profileField.ThrowErrors();