如何在 SharePoint 中链接不同的 WebParts 页面
我在 SharePoint 中使用一些自定义 WebPart,例如 (http://www.codeplex.com/smartpart)有一些控制。 我在不同页面上有多个 WebPart。 怎么可能把它们联系在一起呢? 例如,在按钮单击事件处理程序或超链接目标处,导航到的 URL 应该是什么?
I am using some custom WebParts in SharePoint like (http://www.codeplex.com/smartpart) with some controls. I have more than one WebPart at different pages. How is it possible to link them together? For example at the button click event handler or the hyper link target what should be URL to navigate to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 SharePoint 中连接 Web 部件通常是通过在它们之间传输数据来完成的。 例如,单击一个 Web 部件中的一项可以在另一个 Web 部件中提供更多详细信息。 以下是 Office 网站 上的示例。 Web 部件是通过使用 Web 部件标题栏上的控件将它们连接在一起来配置的。
有很多开发您自己的示例。 这是一个 我我们发现这非常详细,如果您搜索
消费者生产者连接的 Web 部件
,还有很多其他内容。编辑:无法访问另一个连接的 Web 部件中的控件(感谢 kusek)。 解决方案是分析来自其他 Web 部件的数据并相应地改变行为。
Connecting web parts in SharePoint is usually done by transferring data between them. For example, clicking an item in one web part could provide further details in another. Here is an example on the Office web site. The web parts are configured by connecting them together using controls on the web part title bar.
There are many examples for developing your own. Here is one I've found that's quite detailed and there are many others if you search for
consumer producer connected web part
.Edit: It is not possible to access the controls in another connected web part (thanks kusek). The solution is to analyze the data coming from the other web part and change behaviour accordingly.