I need a numeric field in a LiveCycle form to require that a user put in a number no less than 35, but the validation does not seem to allow me to do this. I want an error message to appear if it is blank or an amount lower than 35 is entered.
This seems so simple, do I need script for this? If so what do I need and for future reference, what is the easiest way to determine what script is needed? I have been all over the help page and the web.
Thanks for your help.
DK
if this.rawValue < 35
{
app.alert("Must be larger then 35")
}