Hi all,
Why does wicket panel don't work if I do this:
class MyPage extends WebPage {
public MyPage() {
add(new Link("myLink") {
public void onClick() {
* info("You just click me");*
*setResponsePage(MyAnotherPage.class); // feedback panel
wo
I have a page with a form and AjaxSubmitLink in the form.
I call WicketTester#clickLink(pathToLink, true) to test the code in
AjaxSubmitLink#onSubmit(). The call returns with no errors, but
AjaxSubmitLink#onSubmit() is never called.
Here is a code sample:
tester.startPanel(MyPanel.class)