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