In JSFs validation phase, in what order are input fields validated?
What I thought about trying is the following: I have a group of input fields that may pass or fail conversion/validation. Also, I would like to have some input with a custom validator that produces a different outcome depending on whether all other fields passed validation or not. I can check the FacesContext for any previous messages, but I would have to make sure that this custom converter is called after all other fields have been checked, hence the above question. Is it simply the order in which they are defined in the Facelets-Page? If so, would this order be guaranteed?