Access a parent variable Inside an object

Example , We need {{externalValue}} inside {{#each}}

{{externalValue}}

<select name=”test”>
{{#each myCollection}}
<option value=”{{id}}”>{{title}} {{externalValue}}</option>
{{/each}}
</select>

replace {{externalValue}} by {{../externalValue}}

Leave a comment

Your email address will not be published. Required fields are marked *