2

我试图弄清楚如何将 a 链接到 aDroplink中的选定项目Treelist。我有一个字段Theme,即Treelist,还有一个字段MasterTheme,即Droplink.

我应该能够在 中选择一个主主题Droplink,其中填充了从Treelist.

我对 Sitecore 还很陌生,而且我不熟悉自定义类。

4

2 回答 2

10

您可以getLookupSourceItems为此使用 -pipeline。使用 aDroplink您可以将 Sitecore 查询指定为源。并且getLookupSourceItems您可以在运行时更改源。以下处理器检查在 中选择的项目Treelist并创建一个 Sitecore 查询,其中包括在 中选择的所有项目Treelist

public class LookupItemsFromField
{
    private const string FromFieldParam = "fromfield";

    public void Process(GetLookupSourceItemsArgs args)
    {
        // check if "fromfield" is available in the source
        if (!args.Source.Contains(FromFieldParam))
        {
            return;
        }

        // get the field
        var parameters = Sitecore.Web.WebUtil.ParseUrlParameters(args.Source);
        var fieldName = parameters[FromFieldParam];

        // set the source to a query with all items from the other field included
        var items = args.Item[fieldName].Split('|');
        args.Source = this.GetDataSource(items);
    }

    private string GetDataSource(IList<string> items)
    {
        if (!items.Any()) return string.Empty;

        var query = items.Aggregate(string.Empty, (current, itemId) => current + string.Format(" or @@id='{0}'", itemId));
        return string.Format("query://*[{0}]", query.Substring(" or ".Length));
    }
}

Droplink您必须在源中指定哪个字段是您的“源”字段fromfield=<SourceField>

在此处输入图像描述

最后,您需要配置此管道处理器:

<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
  <sitecore>
    <pipelines>
      <getLookupSourceItems>
        <processor  patch:before="processor[1]"
                    type="Website.LookupItemsFromField, Website" />
      </getLookupSourceItems>
    </pipelines>
  </sitecore>
</configuration>
于 2014-09-11T10:41:50.143 回答
2

我认为这就是你要找的东西:http: //getfishtank.ca/blog/using-item-field-as-a-data-source-in-sitecore

基本上,您将能够将一个字段的数据源设置为另一个字段。

于 2014-09-11T10:40:58.940 回答