Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Category | Read, Write | String | Category |
| Errors | Read | IList of Error | Errors |
| HtmlName | Read, Write | String | Html Name |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $searchCategory.HasErrors())
JavaScript
var booleanResponse = searchCategory.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $searchCategory.HasWarnings())
JavaScript
var booleanResponse = searchCategory.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $searchCategory.HasWarningsOrErrors())
JavaScript
var booleanResponse = searchCategory.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$searchCategory.ThrowErrors()
JavaScript
searchCategory.ThrowErrors();