Re: Extend layout of a page

2009-04-11 Thread John Patterson
/Alternative-method-to-initialise-page-td16742636.html John -- View this message in context: http://www.nabble.com/Extend-layout-of-a-page-tp22784265p23004651.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Extend layout of a page

2009-03-31 Thread ptrash
and menu (pageMenuAndClock). I can just extend pageMenu or pageClock. So the functionality of one of them has to be rewritten in pageMenuAndClock. -- View this message in context: http://www.nabble.com/Extend-layout-of-a-page-tp22784265p22799536.html Sent from the Wicket - User mailing list archive

Re: Extend layout of a page

2009-03-31 Thread Jeremy Thomerson
to it (pageClock). Now I need a page which has both, clock and menu (pageMenuAndClock). I can just extend pageMenu or pageClock. So the functionality of one of them has to be rewritten in pageMenuAndClock. -- View this message in context: http://www.nabble.com/Extend-layout-of-a-page-tp22784265p22799536.html

Re: Extend layout of a page

2009-03-31 Thread ptrash
At the moment, the requirements are not certained. That's why it should be possible to extend the page without modifying it. I'd like to use something like composition. -- View this message in context: http://www.nabble.com/Extend-layout-of-a-page-tp22784265p22800066.html Sent from the Wicket

Re: Extend layout of a page

2009-03-31 Thread nino martinez wael
this message in context: http://www.nabble.com/Extend-layout-of-a-page-tp22784265p22800066.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Extend layout of a page

2009-03-30 Thread Pi Trash
Hi, I am searching for a way to extend the design of a page without changing the page itself. That means, something like the Decorator Pattern. I have a page with for example just a table in it. In another project (or the same project) this page should have a navigation on the top. My current

Re: Extend layout of a page

2009-03-30 Thread Serkan Camurcuoglu
search for the words wicket markup inheritance on google.. Pi Trash wrote: Hi, I am searching for a way to extend the design of a page without changing the page itself. That means, something like the Decorator Pattern. I have a page with for example just a table in it. In another project