Re: [Wicket-user] Border and markup inheritance problem

2006-05-20 Thread Timo Stamm
don't fully understand how to set it up correctly. Thanks! -Jerry -- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Igor Vaynberg *Sent:* Friday, May 19, 2006 2:03 PM *To:* wicket-user@lists.sourceforge.net *Subject:* Re: [Wicket-user] B

Re: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread karthik Guru
can you try : public class BasePage extends WebPage { public BasePage() { add(new MyBorder("border").setTransparentResolver(true) ); } } The problem is that the message component should have been added to the Border component in the base page. But then that would mean an unneces

Re: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Igor Vaynberg
L PROTECTED]] On Behalf Of Igor Vaynberg Sent: Friday, May 19, 2006 2:03 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Border and markup inheritance problem   if you look at the hierarchy of your message label it is like this: in java: page->message in markup: pa

RE: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Jerry Smith
.  Thanks!   -Jerry   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor Vaynberg Sent: Friday, May 19, 2006 2:03 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Border and markup inheritance problem   if you look at the hierarchy of your message label

Re: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Igor Vaynberg
if you look at the hierarchy of your message label it is like this:in java:page->messagein markup:page->border->messageso when wicket tries to render message in the markup it cannot find it because it expects it to be in the border, but in fact you have added it to the page itself in extendpage. so