我有一个日历报告。当我单击日期时,我希望打开其他表单,而不是日历报告所基于的表单。然后,我希望将日期格式从第一种形式传递到第二种形式。到目前为止,在加载日历表单时,我已经有了以下代码:
MyDate = input.Departure_Date_Time;
//return same window to calendar report
openUrl("https://app.zohocreator.com/ccimailzoho/interhof-travel-
calendar#Calendar","same window");
//open trip form in popup
openurl("#Form:Trip_Form","popup window");
//Trip_Form.Departure_Date_Time = MyDate;
但这是行不通的; MyDate变量不保存两种形式之间的值。有什么想法吗?