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

[Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Jerry Smith
Sorry to send this again, I know you’re all very busy trying to get the 1.2 release together, but I didn’t want this to fall through the cracks if it is a bug.   I'm get a "WicketMessage: Unable to find component with id 'message'" error. Maybe this can't be done or I'm doing it wrong us

[Wicket-user] Border and markup inheritance problem

2006-05-17 Thread Jerry Smith
I'm get a "WicketMessage: Unable to find component with id 'message'" error. Maybe this can't be done or I'm doing it wrong using 1.2rc4, but what I'm working with is a MyBorder component, a BasePage, and ExtendPage. Here's the distilled code bits: MyBorder.html: [header]