Hi, I remember that there was a discussion about web sites where only a small part of the view changes across the pages, and most of it (menus, headers, etc. stays the same). The default solution was to use a border, but I remember that it required a tag that would violate html spec (border tag, containing the whole index page). Here's a simple workaround:
1) crete a index page and markup for it.One of the components will be the content - changing part of the page. In index page constructor, specify all components, but not this one. Trying to create this page will cause an error, but it will be never created. 2) Implement the pages you need by extending index page and specifying the content component / components. plain, object-oriented and easy. regards, Kamil ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Wicket-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-develop
