Re: [Wicket-user] debugging markup cannot be empty

2007-07-07 Thread Igor Vaynberg
ROTECTED] To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] debugging markup cannot be empty look what you are doing here: final Panel3 p3 = new Panel3("Panel3", url1); p3.setOutputMarkupId(true); add(p3); add(new Panel2("Panel2", url2){ public void updatePanel3(A

Re: [Wicket-user] debugging markup cannot be empty

2007-07-07 Thread Ed _
?-igor -aDate: Sat, 7 Jul 2007 13:52:20 -0700From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Wicket-user] debugging markup cannot be empty look what you are doing here: final Panel3 p3 = new Panel3("Panel3", url1);p3.setOutputMarkupId(true);add(p3);add(new Panel2("Panel2

Re: [Wicket-user] debugging markup cannot be empty

2007-07-07 Thread Igor Vaynberg
ge.net Subject: Re: [Wicket-user] debugging markup cannot be empty look what you are doing here: final Panel3 p3 = new Panel3("Panel3", url1); p3.setOutputMarkupId(true); add(p3); add(new Panel2("Panel2", url2){ public void updatePanel3(AjaxRequestTarget target){ Panel3 newPanel3 =

Re: [Wicket-user] debugging markup cannot be empty

2007-07-07 Thread Ed _
When you say replace local var with a field - what does that mean?-aDate: Sat, 7 Jul 2007 13:52:20 -0700From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Wicket-user] debugging markup cannot be emptylook what you are doing here: final Panel3 p3 = new Panel3("Panel3", url1);p3.setOutputMarkupId(

Re: [Wicket-user] debugging markup cannot be empty

2007-07-07 Thread Igor Vaynberg
look what you are doing here: final Panel3 p3 = new Panel3("Panel3", url1); p3.setOutputMarkupId(true); add(p3); add(new Panel2("Panel2", url2){ public void updatePanel3(AjaxRequestTarget target){ Panel3 newPanel3 = new Panel3("Panel3", url2); newPanel3.setOutputMarkupId(true); p3.replaceWith(ne

Re: [Wicket-user] debugging markup cannot be empty

2007-07-07 Thread Ed _
no couldn't find any missing ids. So wrote a smaller sample program and I see the same issue - here is the source - maybe you can point out something blatanly obvious that I am missing.---TestWebPage.java ---public class TestWebPage extends WebPage {public TestWebPage(PageParameters params)

Re: [Wicket-user] debugging markup cannot be empty

2007-07-07 Thread igor . vaynberg
make sure in your markup you do not have an empty id attribute: id="" On 7/7/07, Ed _ <[EMAIL PROTECTED]> wrote: > > How does one debug this issue. I can trace the request on the first pass > into the update method shown below - subsequent request do not show up in > there.I am setting setOutputM

[Wicket-user] debugging markup cannot be empty

2007-07-07 Thread Ed _
How does one debug this issue. I can trace the request on the first pass into the update method shown below - subsequent request do not show up in there.I am setting setOutputMarkupId(true) on the panel that needs to be updated by Ajax.ERROR [http-8080-2] (RequestCycle.java:1043) - markupId ca