View parts may be rendered as soon as data arrives. So consider this view:
- {{#general}}
- <p>Name: {{name}}</p>
- {{/general}}
- {{#details}}
- <p>age: {{age}}</p>
- <p>status: {{status}}</p>
- {{/details}}
Say in your code you have first request that gets general info data, and second request that gets details.
View will render #general as soon as view scope's "general" attribute is filled with data, and #details as soon details data ready and "details" attribute is set.