Re: [Wicket-user] Template Pages and Wicket: Best Way?

2007-05-10 Thread Scott Swank
One way would be to create an abstract page public abstract class Template extends WebPage { public Template() { add(createHeader1()); add(createContent3()); etc. } protected abstract Panel createHeader1(); protected abstract Panel createContent3(); etc. } public class Wh

[Wicket-user] Template Pages and Wicket: Best Way?

2007-05-10 Thread Fábio Bombonato
Hi Everyone, Well, I´m a newbie in Wicket framework and had some difficulty to figure out how is the best way to make a template page where all areas defined in this template could be changed for Pages that use it. I read many topics about "template", "layout" in mail-list, some examples in Wicke