jeffhuber
jeffhuber

Reputation: 139

Handlebars.js - {{#each data}} nested in {{#if data}}

I would like to be able to do below with Handlebars.js. Is this possible?

{{#if data}}

   {{#each data}}
     do something here
   {{/each}}

{{/else}

   No data, sorry!

{/if}

Upvotes: 3

Views: 4232

Answers (1)

Igor Pavelek
Igor Pavelek

Reputation: 1444

Of course, check here: http://jsfiddle.net/PXQUA/

And you have few typos in your template:

{{#if data}}
  {{#each data}}
    {{this}}
  {{/each}}
{{else}}
  No data, sorry!
{{/if}}

Upvotes: 3

Related Questions