Answered
I have a Mandatory date field with the script below on Exit Event-Language-FormCalc
$.rawValue = Upper(num2date(date(), "MMM DD, YYYY"))
It's work fine.
My issue is I want this field on Exit if there is a vaue to get rid of the red mandatory frame!
I try to use the script below but no luck.......Thank you!
if (Date.rawValue != null)
{Date.mandatory = "disabled"; }
George Kaiser