使用Javascript将约会上的`scheduledend`设置为null

时间:2012-05-16 09:45:26

标签: dynamics-crm-2011

我在约会表单上编写Javascript,需要清除scheduledend DateTime字段。

我尝试过这种显而易见的方法,但它不起作用。

Xrm.Page.getAttribute('scheduledstart').setValue(null);
Xrm.Page.getAttribute('scheduledend').setValue(null); // Both do nothing

如何将DateTime字段留空?

2 个答案:

答案 0 :(得分:0)

这应该有效。 我刚刚在约会表格'onLoad'上测试了

crmForm.all.scheduledend.DataValue = ''

答案 1 :(得分:0)

你是对的,你可以清除价值 -

Xrm.Page.getAttribute('scheduledend').setValue();

应该工作。