XPages - Dojo Validation Text Box - Customize Message -
when using dojo validation text box, if try submit xpage without entering value dojo validation text box, see message "this value required". there way of customizing message? (i wish have message in language)
you can define customized message dojoattribute:
<xe:djvalidationtextbox id="djvalidationtextbox1" value="#{viewscope.test}" required="true"> <xe:this.dojoattributes> <xp:dojoattribute name="missingmessage" value="your customized required message!"> </xp:dojoattribute> </xe:this.dojoattributes> </xe:djvalidationtextbox>
Comments
Post a Comment