MS CRM 2011获取XML过滤器表达式

时间:2013-03-14 14:24:41

标签: dynamics-crm-2011 fetchxml

我有一个提取xml查询,我想用日期& 时间字段。

我在之前或之前使用表达,但这似乎只过滤了日期(没有时间)。

FetchXml= ...
'<filter type="and">'+
'<filter type="or">'+
    '<condition attribute="scheduledend" value="'+ currentdate +'" operator="on-or-before"/>'+
    '<condition attribute="scheduledend" operator="null"/>'+
'</filter>'+
'</filter>'+

1 个答案:

答案 0 :(得分:1)

您可以构建日期并将0影响到时间部分。这是你想要的吗?

var date = Xrm.Page.getAttribute("createdon").getValue();
var d = new Date(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0, 0);