My goal is to pull a value on the EditForm from a Date field. I want to take the 'due date' field, do a "get date", and subtract the difference between that date and today to get a "days left" number. I don't think the last part will be difficult since I'm fairly familiar with javascript, but the getFieldValue with the four parameters method isn't returning anything. Is there a better method to choose?
Well, I tried....
var myDate = //
alert(myDate)
......but that won't work because it's not a single line of text.
I tried:
var theDate = getFieldValue('Due Date','','; ','');
alert(theDate);

