我试图弄清楚如何将Droplink
链接到Treelist
中的所选项目。
我有一个字段Theme
,它是Treelist
,一个字段MasterTheme
,它是Droplink
。
我应该能够在Droplink
中选择一个主主题,该主题充满了从Treelist
中选择的数据。
我是Sitecore的新手,并且对Custom类不熟悉。
最佳答案
您可以使用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>
源中的“源”字段是哪个字段:最后,您需要配置以下管道处理器:
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<pipelines>
<getLookupSourceItems>
<processor patch:before="processor[1]"
type="Website.LookupItemsFromField, Website" />
</getLookupSourceItems>
</pipelines>
</sitecore>
</configuration>