Reputation: 1663
On Action create as bellow
@Action
public EmployeeVM newEmployee(final String name) {
employeeRepository.create(name);
return this;
}
It show popup
Is it possible to redirect to a new page with the
back button
and save button
instead of popup.
Upvotes: 0
Views: 63