gpt4 book ai didi

sitecore - 如何将 droplink 链接到 Sitecore 中的树列表

转载 作者:行者123 更新时间:2023-12-02 09:11:44 25 4
gpt4 key购买 nike

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

我应该能够在 Droplink 中选择一个主主题,其中填充了 Treelist 中选定的数据。

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

最佳答案

您可以使用getLookupSourceItems -为此的管道。与 Droplink您可以指定 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> :

enter image description here

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

<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<pipelines>
<getLookupSourceItems>
<processor patch:before="processor[1]"
type="Website.LookupItemsFromField, Website" />
</getLookupSourceItems>
</pipelines>
</sitecore>
</configuration>

关于sitecore - 如何将 droplink 链接到 Sitecore 中的树列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25784121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com