从自定义功能区按钮和onSave调用时,Javascript的行为会有所不同

时间:2013-04-25 18:56:16

标签: javascript dynamics-crm-2011

我正在尝试向自定义实体,MFA添加版本控制功能,而且我遇到了一个非常奇怪的问题。我从两个地方调用了一个javascript webresource:表单上的onSave事件,以及自定义功能区按钮的操作。具体来说,onSave事件调用captureSave,而功能区按钮调用makeARevision。

从保存按钮/事件调用时,一切都按预期工作;所有信息(包括新更改)都会被拉到新记录并保存在那里,而原始记录会在没有保存更改的情况下关闭,并且没有提示保存。但是,通过自定义功能区按钮调用时,任何未保存的更改都不会被带到新记录,旧记录会提示保存。此外,即使用户选择将更改保存到旧记录,也不会保存更改,并且表单不会自动关闭。

以下代码是有问题的网络资源。 company_MFASaveOrRevise只是一个html页面,询问用户是要保存记录还是创建新修订版。任何关于导致差异或如何解决这些差异的想法都会受到赞赏。

function captureSave(executionContext) {
    if (Xrm.Page.ui.getFormType() != 1 && Xrm.Page.data.entity.getIsDirty()) {
        var retVal = showModalDialog(Xrm.Page.context.getServerUrl() + '/Webresources/company_MFASaveOrRevise', null, 'dialogWidth: 300px; dialogHeight: 100px');
        if (retVal == "Revise") {
            executionContext.getEventArgs().preventDefault();
            makeARevision();
        }
        else if (retVal == "Save") {
        }
    }
}

function createLookupValue(oldLookup) {
    var lookupVal = new Object();
    lookupVal.Id = oldLookup.id;
    lookupVal.LogicalName = oldLookup.entityName;
    lookupVal.Name = oldLookup.Name;
    return lookupVal;
}

function makeARevision() {
    var revisedMFA = {};
    revisedMFA['company_mfaname'] = Xrm.Page.data.entity.attributes.get('company_mfaname').getValue();
    revisedMFA['company_mfadate'] = Xrm.Page.data.entity.attributes.get('company_mfadate').getValue();
    revisedMFA['company_estimatedliqdate'] = Xrm.Page.data.entity.attributes.get('company_estimatedliqdate').getValue();
    revisedMFA['company_actualliqdate'] = Xrm.Page.data.entity.attributes.get('company_actualliqdate').getValue();
    revisedMFA['company_mfanumber'] = Xrm.Page.data.entity.attributes.get('company_mfanumber').getValue();
    revisedMFA['company_revisionno'] = Xrm.Page.data.entity.attributes.get('company_revisionno') == null ? 0 : Xrm.Page.data.entity.attributes.get('company_revisionno').getValue() + 1;
    revisedMFA['company_requester'] = createLookupValue(Xrm.Page.data.entity.attributes.get('company_requester').getValue()[0]);
    revisedMFA['company_mfapreviousrev'] = Xrm.Page.data.entity.attributes.get('company_totalmfatodate').getValue();
    revisedMFA['company_contract'] = createLookupValue(Xrm.Page.data.entity.attributes.get('company_contract').getValue()[0]);

    $.ajax({
        type: 'POST',
        contentType: 'application/json; charset=utf-8',
        datatype: 'json',
        url: getODataUrl() + '/' + 'company_mfaSet',
        data: JSON.stringify(revisedMFA),
        beforeSend: function (XMLHttpRequest) {
            //Specifying this header ensures that the results will be returned as JSON.
            XMLHttpRequest.setRequestHeader('Accept', 'application/json');
        },
        success: function (data, textStatus, request) {
            Xrm.Utility.openEntityForm("company_mfa", data.d.company_mfaId.toUpperCase());
            var attributes = Xrm.Page.data.entity.attributes.get();
            for (var i in attributes) {
                attributes[i].setSubmitMode('never');
            }
            Xrm.Page.ui.close();
        },
        error: function (request, textStatus, errorThrown) {
            alert(errorThrown);
            //alert("There was an error creating the revision");
        }
    });
}

编辑:我已经在各个地方插入了debugger;,并且正在使用VS2012调试器,并且发现属性被正确设置为不提交,但显然没有阻止确认对话框弹出(甚至虽然它通过保存按钮调用webresource时工作。此外,Xrm.Page.data.entity.attributes.get(attributeName)在onSave事件期间调用时返回更改后的值,但在从功能区调用时会预先更改值。我仍然不知道为什么或如何修复它。还有什么我应该寻找的吗?

1 个答案:

答案 0 :(得分:0)

在从功能区调用时使用F12调试代码(只记得因为它在功能区中,您的javascript代码将位于动态脚本/脚本块中)。