Panels and fragments are useful. As of page layout, however, <wicket:extend>
/ <wicket:child> is more natual than Panels and fragments.

Some possible solutions is:
1) use different tag values to differentiate: 
...
<wicket:child childid="1"/>
...
<wicket:child childid="2"/>
...
==================
...
<wicket:extend extendid="1">
    ...
</wicket:extend>
...
<wicket:extend extendid="2">
    ...
</wicket:extend>
...

2)use <wicket:extendN> <wicket:childN> (N=1,2,3,...) instead of
<wicket:extend> <wicket:child>
...
<wicket:child1/>
...
<wicket:child2/>
...
==================
...
<wicket:extend1>
    ...
</wicket:extend1>
...
<wicket:extend2>
    ...
</wicket:extend2>
...
-- 
View this message in context: 
http://www.nabble.com/Multiple-wicket%3Achild-tags-in-the-same-page-tf3775143.html#a11245019
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to