Hello,I am using the below script (which I have found in this forum) in
order to get a date from datefield1, add one year and give the date to
datefield2.It works fine.var oDate = util.scand("yyyy-mm-dd",
this.rawValue); var sFullYear = oDate.getFullYear(); var sMonth =
oDate.getMonth(); var sDate = oDate.getDate(); Datefield2.formattedvalue
= util.printd("dd.mm.yy", new Date((sFullYear+1), sMonth, sDate));
Datefield2.rawValue = Datefield2.formattedvalue;But now I would like to
compare the new d...