Description
The problem is related with component queuing in header.
Steps to reproduce:
1. render page
2. do some ajax
3. reload
HomePage.java
queue(new Label("title", "test")); add(new AjaxLink("link") { @Override public void onClick(AjaxRequestTarget ajaxRequestTarget) { ajaxRequestTarget.add(this); } }.setOutputMarkupId(true));
HomePage.html
<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>
Attachments
Attachments
Issue Links
- relates to
-
WICKET-6246 WebSocket request while Ajax request leads to error regarding HtmlHeaderCotnainer
- Resolved