Hi,
I'm creating a form using LiveCycle Designer.
I have a date field called "EndDate" and "ClaimDeadLine".
On End Date exit event, i have below code.
Add 61 days to end date and populate claim date.
But, not working. Could you tell me how to fix this?
Thanks, Gombear
form1.#subform[0].EndDate::exit - (FormCalc, client)
$.rawValue = xfa.resolveNode("form1.#subform.EndDate");
var endDate = $.rawValue ; xfa.resolveNode("form1.#subform.ClaimDeadLine") = Num2Date(Date2Num(endDate, "MM/DD/YYYY") + 61, "MM/DD/YYYY");
I would use the 'formattedValue' property.
George Kaiser