RE: Adding markup to ListView containing tag?

2009-11-24 Thread Loritsch, Berin C.
Thank you, that worked. -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Monday, November 23, 2009 7:03 PM To: users@wicket.apache.org Subject: Re: Adding markup to ListView containing tag? div id=triage-items div id=triage-1 wicket:id=listviewfancy

Adding markup to ListView containing tag?

2009-11-23 Thread Loritsch, Berin C.
What I would like is to be able to have markup like this: div id=triage-items div id=triage-1fancy markup here/div div id=triage-2fancy markup here/div /div Along with this, to provide javascript effects on hover/focus for the individual items in the list. The problem is that I can't do

Re: Adding markup to ListView containing tag?

2009-11-23 Thread Igor Vaynberg
div id=triage-items div id=triage-1 wicket:id=listviewfancy markup here/div /div class mypage extends webpage implements iheadercontributor { public mypage() { add(new listview(listview,...) { protected item newitem(string id, int idx) { return new item(id, idx) {