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
?-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
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 =
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(
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
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)
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