marko/test/test-project/rhtml-templates/async-fragment-args.rhtml
2014-02-06 14:45:45 -07:00

23 lines
635 B
Plaintext

<c:template
xmlns:c="core"
xmlns:async="async">
<ul>
<li c:for="userId in [0, 1, 2, 3]">
<async:fragment dependency="userInfo" var="userInfo" arg-userId="$userId">
<ul>
<li>
<b>Name:</b> $userInfo.name
</li>
<li>
<b>Gender:</b> $userInfo.gender
</li>
<li>
<b>Occupation:</b> $userInfo.occupation
</li>
</ul>
</async:fragment>
</li>
</ul>
</c:template>