hi, 

could someone help me to apply a T5 Loop with the
@Component annotation? The following code does 
not work.... all the necessary getter/setter methods are
in place (modification of T5 tutorial).

... or maybe the Loop is not meant to be used this way :)

g,
kris

<span t:id="looping">
        <a t:type="actionlink" context="index">${index}</a>
</span>

@Component(parameters={"source=range","value=index"})
public Loop looping;
 
private static List<String> range = new ArrayList<String>();
static {
   range.add("1");
   range.add("2");
   range.add("3");
}

Reply via email to