我需要在 onet.xml 中指定 Web 部件连接。因此,当使用此站点定义创建站点时,所述 Web 部件已连接并可以使用。我需要为 onet.xml 中的特定 Web 部件指定哪些属性。
Prashant Patil
问问题
1902 次
3 回答
3
去年的某个时候,我也遇到了这个问题!看起来无法再以新的 .webpart 格式在 Web 部件上指定连接,因为它们可以在旧的 .dwp 格式中指定。我最终在站点定义中包含了一个自定义功能,比如 kpinhack 也建议。下面列出了我用于连接 Web 部件的代码。该方法仅用于连接两个不同类型的 Web 部件 - 它不支持同一页面上的多个相同类型的 Web 部件。但我相信你会明白一般的想法。
private void ConnectWebParts(SPWeb web, string pageName, Type providerType, Type consumerType)
{
SPFile file = web.GetFile(pageName);
SPList list = null;
if (file.InDocumentLibrary)
{
list = file.Item.ParentList;
if (list.ForceCheckout) file.CheckOut();
}
SPLimitedWebPartManager webPartManager =
web.GetLimitedWebPartManager(
pageName,
System.Web.UI.WebControls.WebParts.PersonalizationScope.Shared);
WebPart provider = null;
foreach (WebPart wp in webPartManager.WebParts)
{
if (wp.GetType() == providerType)
{
provider = wp;
break;
}
}
foreach (WebPart consumer in webPartManager.WebParts)
{
if (consumer.GetType() != consumerType) continue;
ProviderConnectionPointCollection providerConnections = webPartManager.GetProviderConnectionPoints(provider);
ProviderConnectionPoint providerConnection = providerConnections[0];
ConsumerConnectionPointCollection consumerConnections = webPartManager.GetConsumerConnectionPoints(consumer);
ConsumerConnectionPoint consumerConnection = consumerConnections[0];
SPWebPartConnection con = webPartManager.SPConnectWebParts(provider, providerConnection, consumer, consumerConnection);
webPartManager.SPWebPartConnections.Add(con);
}
if (list != null)
{
if (list.ForceCheckout)
{
file.CheckIn("Added Web Part Connections");
}
if (list.EnableVersioning && list.EnableMinorVersions)
{
file.Publish("Added Web Part Connections");
}
}
}
于 2009-06-26T20:46:58.297 回答
0
我将通过实现“OnActivated”-Eventhandler 在 SiteProvisioning-Feature 中配置 WebPart。这样,代码将在创建网站时运行,您可以按照自己喜欢的方式处理错误(即,如果在创建网站时 WebPart 不可用 - 无论出于何种原因)
我希望这有帮助!
于 2009-06-26T12:33:43.480 回答
0
您将需要使用 <AllUsersWebPart> 标记来声明您的 Web 部件,然后在封闭的 <WebPart> 元素中声明您的连接。
于 2009-06-26T21:08:44.790 回答