| Interface | Description |
|---|---|
| Helper |
Handlebars-like helper.
|
| HelperDefinition | |
| HelperDefinition.ValuePlaceholder |
A value placeholder represents an expression which will be evaluated
right before the helper execution.
|
| Options |
Options represent a helper execution context - a new instance is created for
every execution.
|
| Class | Description |
|---|---|
| AbstractHelper | |
| BasicSectionHelper | |
| BasicValueHelper | |
| BasicHelper |
Basic validating helper.
|
| EachHelper |
{{#each items}}
{{name}}
{{/each}}
|
| HelperValidator | |
| IfHelper |
{{#if item.active}}
{{item.name}}
{{/if}}
|
| IsHelper |
Renders the second param if the first param is not falsy, or (optionally,
i.e. if set) the third param.
|
| NumberIsEvenHelper |
{{isEven iterIndex "evenRow"}}
{{isEven iterIndex "evenRow" "oddRow"}}
{{#isEven iterIndex}}
... |
| NumberIsOddHelper |
{{isOdd iterIndex "oddRow"}}
{{isOdd iterIndex "oddRow" "evenRow"}}
{{#isOdd iterIndex}}
... |
| UnlessHelper |
Conditionally renders a block if the first parameter is "falsy".
|
| WithHelper |
Nested context.
|
| Enum | Description |
|---|---|
| BuiltInHelper |
Basic built-in helpers are registered automatically if
EngineConfigurationKey.HANDLEBARS_SUPPORT_ENABLED set to
true. |
Copyright © 2014. All Rights Reserved.