-
Notifications
You must be signed in to change notification settings - Fork 265
Open
Description
If you want to embed your own custom back button into a View, you can simply fire a FormBackEvent. This will automatically be propagated up the controller hierarchy and handled by the form controller to go "back" to the parent controller.
E.g.
Button back = new Button();
back.addActionListener(evt->{
evt.consume();
ActionSupport.dispatchEvent(new FormController.FormBackEvent(back));
});
E.g. You could use this pattern in your back button in the DishView class.
Metadata
Metadata
Assignees
Labels
No labels