Hi, Is it possible to have more than one <wicket:child> section per page? I didn't find any possibility to do that, so maybe it can be a feature in the next version of Wicket. What I want to achieve is to have two or more <wicket:child> sections in the base page, so I will be able to define in derived component (page) different contents for these section. Maybe each <wicked:child> could have an id (wicket-id), so in derived page I can place contents in corresponding <wicket:extend> (with the same id). Here is a short example:
base page: ... <div id="leftPanel"><wicket:child wicket-id="contentLeft" /></div> ... <div id="rightPanel"><wicket:child wicket-id="contentRight" /></div> ... derived page: ... <wicket:extend wicket-id="contentLeft">Some content</wicket:extend> <wicket:extend wicket-id="contentRight">Some other content</wicket:extend> ... Best regards, Daniel Stoch ---------------------------------------------------------------------- Wkrec znajomych :)>>> http://link.interia.pl/f1a5c ------------------------------------------------------------------------- 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 [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
