我们的 SharePoint 2010 版本中有一个自定义内容类型,其中包括关键字的托管元数据字段。
该字段似乎已部署好,因为如果我在其所在的列表中编辑一个项目,我将获得正确的分类选择器控件,并且我的术语是从术语库中检索的。
然而; 我们在项目的 PageLayout 上使用 EditModePanel 以允许对项目进行现场编辑,但我无法显示正确的分类选择器控件。
如果我将 TaxonomyWebTaggingControl 添加到页面布局并硬编码 SSPId 等,那么它就可以工作;
<TaxonomyControls:TaxonomyWebTaggingControl runat="server" SSPId="234234-234234-34341-343" TermSetId="234234-23342-34234-234-234"/>
但是,我们无法对值进行硬编码,因为术语库将在客户端部署站点时创建。
当我们创建内容类型时,我们有一个事件接收器,它使用它们的名称将该字段绑定到正确的术语库/集,但我不明白如何在 EditModePanel 中获取一个字段来获取/设置这些。
我真正想要的是:
<TaxonomyControls:TaxonomyWebTaggingControl runat="server" TermStore="My term store name" TermSet="Keywords"/>
我错过了什么吗?
我的事件接收器如下所示:
try
{
SPSite site = ((SPWeb)properties.Feature.Parent).Site as SPSite;
Guid fieldId = new Guid("3211B052-5332-424C-A066-BBE21AEAB878");
if (site.RootWeb.Fields.Contains(fieldId))
{
TaxonomySession session = new TaxonomySession(site);
if (session.TermStores.Count != 0)
{
var termStore = session.TermStores["Managed Metadata Service"];
var group = termStore.Groups.GetByName("My Client");
var termSet = group.TermSets["Keywords"];
TaxonomyField field = site.RootWeb.Fields[fieldId] as TaxonomyField;
field.SspId = termSet.TermStore.Id;
field.TermSetId = termSet.Id;
field.AnchorId = Guid.Empty;
field.AllowMultipleValues = true;
field.TextField = fieldId;
field.TextField = new Guid("{574C5BCE-74E8-40C8-BE90-C9338135D491}");
field.Update();
Log.Logger.LogEvent("ContentType Activation", "Updated keywords field with MMS details");
}
}
}
catch (Exception ex)
{
Log.Logger.LogException(ex, "Content Type Activation", ex.Message);
}