I am not able to keep my wicket form fields blank after browser refresh once they are submitted on the page; my fields are present in a group box.
I have a wicket form with a group box which is having a date picker and text field. If I am entering data and submitting it gives success response. On browser refresh, I want those fields to become empty but they don't.
I tried setting every field to blank after success response as fieldName.setModelValue(new String[]{" "});
.
I need this to be done at browser refresh handling without setting it everywhere.