0

通常,当我想访问 Sitecore 中的当前项目时,我会通过Sitecore.Context.Item. 这适用于创建最终用户使用的工具,但不适用于 Sitecore 管理员使用的工具。如果我希望某些内容Content Editor本身显示为自定义字段,则它Context.Item是对 的引用,Content Editor而不是对在编辑器中选择的节点的引用。

在大多数情况下,我可以通过使用该ItemID属性来解决这个问题,但如果我在现场有事件调度程序,它们将不再有权访问 ItemID。例如:

protected override void OnPreRender(EventArgs e)
{
    if (IsEvent)
    {
        // ItemID is defined here!
        Button live = FindControl(GetID(LiveButton)) as Button;
        if (live != null)
        {
            live.ServerProperties["Click"] = string.Format("{0}.LiveClicked", ID);
        }
    }
}

public void LiveClicked()
{
   // ItemID is blank here!
   DoSomething();
}

如何在我的侦听器中访问 ItemID(LiveClicked如上)?

4

1 回答 1

0

我解决它的方法是通过一个叫做的东西ServerProperties,我在每个监听器中调用了这个函数的等价物。

private void SyncID()
{
    var live = FindControl(GetID(LiveButton)) as Button;
    if (live != null)
    {
        if(string.IsNullOrEmpty(ItemID))
        {
            ItemID = live.ServerProperties["owner_id"].ToString();
        }
        live.ServerProperties["owner_id"] = ItemID;
    }
}
于 2013-05-07T18:30:21.293 回答