Using handlebars.js
, I can display the 1st element of an array on the same level as shown here:
{{#each array01}}
{{#if @first}}{{objectAttribute01}}{{/if}}
{{/each}}
but if I have a nested array like the one shown below, how do I check for the 1st element of array03
, instead of array01
?
{{#each array03}}
{{#each array02}}
{{#each array01}}
{{#if @first}}{{objectAttribute01}}{{/if}}
{{/each}}
{{/each}}
{{/each}}
The following didn't work:
@../../first
i resolved my issue by using a custom function that collects the parent index:
javascript:
html: