0

我正在使用以下代码尝试从 silverlight 应用程序更新我的 CRM 2011 系统中的查找字段值:

try
{
    ma.my_ActionDetails = details;

    Guid userId = new Guid();
    foreach (SystemUser s in SystemUsers)
    {
        if (s.FullName.Equals(comboBox1.SelectedItem))
        {
            userId = s.SystemUserId;
        }
    }

    // Define eval statements for setting lookup to a value and null
    string setLookupJscript = @"Xrm.Page.getAttribute(""{0}"").setValue([ {{ id: ""{1:B}"", typename: ""{2}"", name: ""{3}"" }}])";
    string evalStatement = null;

    // Set the statement to be evaluated based upon the value of the id argument
    // Setting the lookup to a value 
    evalStatement = string.Format(setLookupJscript, "my_salesperson", userId, "my_memberaction", ma.my_SalesPerson.Name);

    HtmlPage.Window.Eval(evalStatement);

    _context.UpdateObject(ma);
    _context.BeginSaveChanges(OnUpdateAccountComplete, ma);
}
catch (SystemException se)
{
    _syncContext.Send(new SendOrPostCallback(showErrorDetails), se);
}

但是,当我运行此代码时,它会生成以下错误:

在浏览器中:

'Xrm' is undefined

从代码:

System.InvalidOperationException: [Common_MethodFailed]

谁能解释这里发生了什么?

谢谢,

杰克

4

1 回答 1

1

您需要在 CRM 表单的上下文中才能使用 Xrm 命名空间。你是从表单中运行的吗?

CRM SDK

如果您的 Silverlight Web 资源设计为在实体表单中查看,则该表单具有可用于访问上下文信息的 Xrm.Page.context 对象。

如果您需要 Silverlight 应用程序出现在表单上下文之外,则必须配置 HTML Web 资源以通过添加对 ClientGlobalContext.js.aspx 页面的引用来提供此上下文信息。添加此引用后,您的 Silverlight 应用程序可以像在实体表单中一样访问上下文信息。以下示例显示如何从 Xrm.Page.context 对象调用 getServerUrl 函数。

private string serverUrl = "";
ScriptObject xrm = (ScriptObject)HtmlPage.Window.GetProperty("Xrm");
ScriptObject page = (ScriptObject)xrm.GetProperty("Page");
ScriptObject pageContext = (ScriptObject)page.GetProperty("context");
serverUrl = (string)pageContext.Invoke("getServerUrl");
于 2012-11-19T15:03:18.187 回答