If I hide and disable a Wicket form, do I need to double-check the visibility conditions in my onSubmit? (Just like we do in JS validation versus Server validations?)
Consider this Wicket snippet:
public class TestPage extends WebPage {
public TestPage() {
boolean editable = checkIfUserCanEdit();
add(new TestForm()
.setEditable(false)
.setVisible(false));
}
}
public static class TestForm {
...
public void onSubmit() {
if (!checkIfUserCanEdit()) abort(); // Is this necessary?
...
}
}
Do I need the "revalidation" in my onSubmit?