I want to reset my JSF form. I've implemented an Action
method that resets all properties in the backing bean.
When I return a String
that forwards to the same page again, all form entries are reset. Input text boxes as well as comboboxes.
But when I return null
only the input text boxes are reset, not the comboboxes.
I don't understand this behavior. Both ways call the same method, both forward to the same page.