This content has been marked as final.
Show 2 replies
-
1. Re: populate a field with a date only once?
Bernd Alheit Jan 23, 2009 3:16 AM (in response to lister110@hotmail.com)Use something like this:
if (this.getField("todaysDate").value == "") {
var d = new Date();
var sDate = util.printd("dd/mm/yyyy", d);
this.getField("todaysDate").value = sDate;
} -
2. Re: populate a field with a date only once?
GKaiseril Jan 23, 2009 6:24 AM (in response to lister110@hotmail.com)Just remember you need to save the date field with a null value.


