Hi,User Entered - Required seems to just put a highlight around the
field, i think you still need some code if you want to force people to
fill it in.In the exit event of the Textfield
put:form1.#subform[0].TextField1::exit - (JavaScript, client)//if the
textfield is empty when exited, show a message, after the message's ok
button is clicked, focus back on the textfield//if it isnt empty, do
nothingif(TextField1.rawValue == null){xfa.host.messageBox("Input
Required", "Alert", 3);xfa.host.setFocu...