Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Page navigation within the controller

Tags:

wicket

What is the method to do page navigation within a Wicket "controller"? I would like to go to another internal page and pass in parameters based on data within the page.

like image 424
UserIsStuck Avatar asked Dec 07 '25 13:12

UserIsStuck


1 Answers

I have found a good page navigation method:

public void onSubmit() {
        PageParameters params = new PageParameters();
        params.add("param1", "value1");
        setResponsePage(ListContacts.class, params);
}
like image 53
UserIsStuck Avatar answered Dec 11 '25 15:12

UserIsStuck