Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how can i generete next list

<span wicket:id="listview">
   this label is: <span wicket:id="label">a</span><br/>
   this label is: <span wicket:id="label">b</span><br/>
   this label is: <span wicket:id="label">c</span><br/>
</span>

instead of

<span wicket:id="listview">
   this label is: <span wicket:id="label">a</span><br/>
</span>
<span wicket:id="listview">
   this label is: <span wicket:id="label">b</span><br/>
</span>
<span wicket:id="listview">
   this label is: <span wicket:id="label">c</span><br/>
</span>

If someting unclear pease write.

share|improve this question

2 Answers

up vote 4 down vote accepted

How about this? The wicket:container tag will not show up in the final markup.

<span>
    <wicket:container wicket:id="listview">
        this label is: <span wicket:id="label">a</span><br/>
    </wicket:container>
</span>
share|improve this answer
This way gives next result : <span> <wicket:container wicket:id="listview"> this label is: <span wicket:id="label">a</span><br/> </wicket:container><wicket:container wicket:id="listview"> this label is: <span wicket:id="label">b</span><br/> </wicket:container><wicket:container wicket:id="listview"> this label is: <span wicket:id="label">c</span><br/> </wicket:container> </span> – user600115 Jun 30 '11 at 18:28
Java : new ListView("listview", Arrays.asList(new String[] { "a", "b", "c" })) { private static final long serialVersionUID = 1L; @Override protected void populateItem(ListItem arg0) { arg0.add(new Label("label", arg0.getModel())); } }; – user600115 Jun 30 '11 at 18:30
Looks good. Now try it in deployment mode. then it will remove the wicket:container tags. – Wolfgang Jun 30 '11 at 18:36
Thanks. This is exactly what i needed. – user600115 Jun 30 '11 at 18:45

<span> <span wicket:id="repeatingView"></span> </span>

I.e. see RepeatingView.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.