I been using this script before on my other forms to basically auto populate a date field on form initialization. However, on the form that I am currently working on, the code does not work. Any help would greatly be appreciated.
form1.JV.Dare::initialize - (JavaScript, client)
if(status.rawValue != "Something")
{
var msNow = (new Date()).getTime();
var d1 = new Date(msNow);
this.rawValue = until.printd("yyyy-mm-dd", d1);
}
else
{
this.rawValue = rawValue;
}