连接 sharepoint 中的 Web 部件
我正在尝试连接到我的 sharepoint 团队网站中的简单 Web 部件,我需要其中一个 Web 部件根据从另一个 Web 部件收到的内容来过滤其信息
我正在使用查询字符串过滤器 Web 部件和列表视图 Web 部件,但无论如何我总是连接它们,但收到此错误
“Web 部件错误:此页面已超出连接的 Web 部件的数据获取限制。请尝试断开一个或多个 Web 部件的连接以纠正该问题。”
我应该做什么以及我做错了什么
更新: 我可以连接到其他一些 pgae 上的 Web 部件,但是在某个项目的 DispForm.aspx 页面上出现此错误,那里不允许 Web 部件连接吗?
I am trying to connect to simple webparts in my sharepoint team site, i need one of the webparts to filter its information based on what it recieves from another webpart
I am using the query string filter webpart and the a list view webpart but no matter how i connect them always i am getting this error
"Web Part Error: This page has exceeded its data fetch limit for connected Web Parts. Try disconnecting one or more Web Parts to correct the problem."
What should I do and what am I doing wrong
update:
i can connect to web parts on some other pgae, but getting this error on the DispForm.aspx page of a certain item , is webpart connections not allowed there ??!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当您不使用 Web UI 时(我假设您不使用 Web UI),在 sharepoint 中创建 QueryString 过滤器 Web 部件会出现问题。
这里的这个家伙有一篇关于这个问题的帖子以及他如何解决这个问题的。
http://social .msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/0328f1b2-20cd-427f-887a-e2925bd695e3/
另一种选择是根本不使用 QueryString 筛选器 Web 部件,而只是将查询字符串传递给常规 Web 部件。
http://mo.notono.us/ 2008/04/moss-filter-views-through-url-query.html
There is an issue with creating QueryString filter webparts in sharepoint, when you're not using the Web UI (I'm making an assumption that you aren't).
This fella here has a post about it and how he hacked around the issue.
http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/0328f1b2-20cd-427f-887a-e2925bd695e3/
Another option is not using the QueryString filter web part at all, and just passing querystrings to a regular web part.
http://mo.notono.us/2008/04/moss-filter-views-through-url-query.html
我也是,你看看这个网址
http://blogs.msdn.com/sharepointdesigner/archive/2008/03/26/sharepoint-conference-building-a-sharepoint-designer-mashup-part-1.aspx
Me too,you look this url
http://blogs.msdn.com/sharepointdesigner/archive/2008/03/26/sharepoint-conference-building-a-sharepoint-designer-mashup-part-1.aspx
我已经解决了这个问题。
问题
在共享点列表中,查询 strng fitlter 中的筛选列名称已被删除,并添加了同名的新列。
解决方案:删除过滤器并在 Web 部件属性中再次设置当前视图。 效果很好。
带着敬意,
马里斯
I have fixed this issue.
Problem
In the sharepoint list, filtered column name in query strng fitlter has been deleted and added new column with same name.
Solution: Remove filter and Set current view again in webpart properties. It works fine.
With Regards,
Marees
“DispForm.aspx”页面通常是 SharePoint 列表的一种形式,并且应用于列表形式页面的规则与不属于 Sharepoint 列表的页面不同(并且几乎没有记录差异)。 我通过变通办法解决了这个问题; 您可以不使用 ListViewWebPart,而是使用 DataViewWebPart (使用查询字符串和数据视图 WebPart),或者您可以通过使用 ListViewWebPart 理解的 URL 参数来避免使用 QueryStringFilterWebPart (ListViewWebPart 过滤器参数)。
The page 'DispForm.aspx' usually is a form of a SharePoint list and different rules apply to list-form pages than on pages that do not belong to a Sharepoint list (and the differences are hardly documented). I solved the problem by workarounds; you could use not a ListViewWebPart, but a DataViewWebPart (Using Query String and Data view WebPart), or you could avoid the QueryStringFilterWebPart by using URL parameters that the ListViewWebPart understands (ListViewWebPart Filter Param).