使用同一页面上另一个 Web 部件的值筛选内容查询 Web 部件
我的页面上有一个内容查询 Web 部件,它汇总了我的网站集中所有子网站的所有联系人列表。 这很好用。 我希望能够通过让用户单击页面顶部 aphhabet 的字母列表来动态过滤联系人汇总。 单击 A 并查看以 A 开头的联系人,等等...
我在页面上放置了各种过滤器 Web 部件,但不知道如何过滤 CQWP 的结果。 连接菜单没有太大帮助。
I have a Content Query Web Part on my page that rolls up all the contacts lists from all the sub-webs in my site collection. this works fine. I'd like to be able dynamically filter the contacts rollup by having the user click on a list of leters of the aphhabet at the top of the page. click A and see the contacts that start with A, etc...
I'm plopping various filter web parts on the page, but don't see how to filter the results of the CQWP. The connections menu is not much help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能像这样使用 OOB 过滤器 Web 部件或 CQWP。
您可以做的是扩展 CQWP 并向其添加一些功能 - 请查看增强型内容查询 Web 部件 请访问 codeplex.com 寻找灵感。
然后将单击的字母发送到查询字符串,并让您的扩展 CQWP 从查询字符串中读取过滤器值 - 这会执行得非常好
You can't use the OOB filter webparts or CQWP like that.
What you can do is extend the CQWP and add some functionality to it - take a look at Enhanced Content Query Web Part over at codeplex.com for inspiration.
Then send the clicked letter to the QueryString and have your extended CQWP read the filter value from the querystring - this would perform really well
一般来说,这种事情需要一些发展。 这是一个来源:
http://www.andrewconnell.com/blog/archive/2008/02/18/Subclassing-the-Content-Query-Web-Part-Adding-Dynamic-Filtering.aspx
Generally, this sort of thing requires some development. Here's one source:
http://www.andrewconnell.com/blog/archive/2008/02/18/Subclassing-the-Content-Query-Web-Part-Adding-Dynamic-Filtering.aspx
我不建议您使用 cqwp....而是尝试使用 dataview Web 部件,它允许您使用查询字符串参数过滤内容,而无需编码。
i would not recommend you to use a cqwp....instead try using a dataview web part it allows you to filter the content using querystring parameters without coding.