before:

add(new ListView("listview"....

<div wicket:id="listview"></div>

after

WebMarkupContainer container=new WebMarkupContainer("container");
container.setOutputMarkupId(true);
contianer.add(new ListView("listview"....

...
<div wicket:id="container"><div wicket:id="listview"></div></div>

-igor


On 12/29/06, August Detlefsen <[EMAIL PROTECTED]> wrote:

I've seen the Wiki entry that says:

"You can't, you need to put it into a WebMarkupContainer and repaint
that container instead."
http://www.wicket-wiki.org.uk/wiki/index.php/ListView


But does anyone have some example code illustrating this?

Thanks,
August

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to