I want to disable client side validation for a Dojo Time Text Box control while making this a required field for server side validation. I have set both the "disableClientSideValidation" and "validatorExt" properties to true. However, when I open the XPage, I immediately see the error "This value is required" beside the Dojo Time Text Box. Here is my code:
<xe:djTimeTextBox id="EventStartTime" value="#document1.EventStartTime}" required="true"
disableClientSideValidation="true"
promptMessage="Bitte fügen Sie diesem Feld einen Wert hinzu!"
validatorExt="true">
<xe:this.validators>
<xp:validateRequired>
<xp:this.message><![CDATA[Bitte füllen Sie das Feld "Event Start Zeit" aus!]]>
</xp:this.message>
</xp:validateRequired>
</xe:this.validators>
</xe:djTimeTextBox>