Re: Beginner question about wicket:extend

2009-08-14 Thread Eyal Golan
well, markup inheritance lets you create pages (or panels for that mater) with the same layout. Suppose you want to have two pages that both have (the same) header and a footer. Markup inheritance is a way of doing that (there are other options as well). So what you do is, create a Base page. In

Re: Beginner question about wicket:extend

2009-08-14 Thread Mathias Nilsson
Have you extended the Header page in the index page? class HeaderPage extends Webpage{ } class IndexPage extends HeaderPage{ } -- View this message in context: http://www.nabble.com/Beginner-question-about-wicket%3Aextend-tp24968417p24968623.html Sent from the Wicket - User mailing list

Re: Beginner question about wicket:extend

2009-08-14 Thread Oliver-Sven Fritsch
Thanks for your quick reply! I now got it! I thought it was the other way round! foolish me! :-) Really appreciate! Oliver Eyal Golan wrote: well, markup inheritance lets you create pages (or panels for that mater) with the same layout. Suppose you want to have two pages that both have (the

Re: Beginner question about wicket:extend

2009-08-14 Thread Korbinian Bachl - privat
Hi, well, wicket and JSP have not much in common beside the fact that they both rely on Java... a simple example for your needs would be this here: http://wicket.apache.org/examplemarkupinheritance.html Best, Korbinian Oliver-Sven Fritsch schrieb: Hi everybody! I'm really new to wicket