You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2016/05/11 13:33:12 UTC

[jira] [Commented] (WICKET-6162) Reload leads to unexpected RuntimeException 'Unable to find component with id'

    [ https://issues.apache.org/jira/browse/WICKET-6162?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15280113#comment-15280113 ] 

ASF subversion and git services commented on WICKET-6162:
---------------------------------------------------------

Commit 9ff894de08a85495b09fa343489d9eef1f14b001 in wicket's branch refs/heads/wicket-7.x from [~bitstorm]
[ https://git-wip-us.apache.org/repos/asf?p=wicket.git;h=9ff894d ]

WICKET-6162 Reload leads to unexpected RuntimeException 'Unable to find
component with id'

> Reload leads to unexpected RuntimeException 'Unable to find component with id'
> ------------------------------------------------------------------------------
>
>                 Key: WICKET-6162
>                 URL: https://issues.apache.org/jira/browse/WICKET-6162
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 7.3.0
>            Reporter: Fridolin Jackstadt
>            Assignee: Andrea Del Bene
>         Attachments: wicket-queuing.zip
>
>
> The problem is related with component queuing in header.
> Steps to reproduce:
> 1. render page (/)
> 2. do some ajax (/)
> 3. reload (!)
> {code:title=HomePage.java|borderStyle=solid}
> queue(new Label("title", "test"));
> add(new AjaxLink("link") {
>   @Override
>   public void onClick(AjaxRequestTarget ajaxRequestTarget) {
>     ajaxRequestTarget.add(this);
>   }
> }.setOutputMarkupId(true));
> {code}
> {code:title=HomePage.html|borderStyle=solid}
> <head>
> <title wicket:id="title">test</title>
> </head>
> <body>
> <ol>
>   <li><a wicket:id="link">ajax</a></li>
>   <li><a href="#" onclick="location.reload();">reload</a></li>
> </ol>
> </body>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)