Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.2.0
-
None
Description
Make it possible for code like this to work
@Property
@Component(parameters =
)
private Loop<Person> personLoop;
@Property
private List<Person> personSource;
<t:loop t:id="personLoop" source="personSource">
<div id="person_${personLoop.index}">${personLoop.value.name}</div>
</t:loop>