Good gravy!?! Why does this show in such a weird order? There are 4 questions on the page requiring validation. The 4 questions are fields in order of 1, 2, 3, 4.
But the validation at the bottom of the page reports on them in an apparently random order!
(image of problem is here: http://www-10.lotus.com/ldd/xpagesforum.nsf/xsp/.ibmmodres/persistence/DominoDoc-13B6A-Body/11111.jpeg)
This is the source code as it appears on the xpage
<xp:inputTextarea style="width:75%" value="#{Report.Agenda}" id="Agenda">
<xp:this.validators>
<xp:validateRequired
message="Question 1 can't be blank">
</xp:validateRequired><!-- (1) -->
</xp:this.validators>
</xp:inputTextarea>
<xp:br></xp:br>
<xp:br></xp:br>
<xp:inputTextarea style="width:75%" value="#{Report.Themes}" id="Themes" required="true">
<xp:this.validators>
<xp:validateRequired message="Question 2 can't be blank."></xp:validateRequired>
</xp:this.validators></xp:inputTextarea>
<xp:br></xp:br>
<xp:br></xp:br>
<xp:inputTextarea style="width:75%" value="#{Report.Why}" id="Why" required="true">
<xp:this.validators>
<xp:validateRequired message="Question 3 can't be blank."></xp:validateRequired>
</xp:this.validators></xp:inputTextarea>
<xp:br></xp:br>
<xp:br></xp:br>
<xp:inputTextarea style="width:75%" value="#{Report.Goals}" id="Goals" required="true">
<xp:this.validators>
<xp:validateRequired message="Question 4 can't be blank."></xp:validateRequired>
</xp:this.validators></xp:inputTextarea>