无需代码即可过滤信息路径中的共享点列表
我正在创建一个启用浏览器的表单,我想根据用户输入过滤共享点列表中的结果。如果用户搜索业务部门“A”,我想要一个包含业务部门“A”的所有位置的列表。
我已经使用代码实现了这一点,但是进行部署的小伙子希望在没有表单代码的情况下完成此任务。这可以做到吗?如果可以的话怎么做?
我正在使用 sharepoint 2007 和 infopath 2007
我唯一真正的想法是创建一个查询 SP 列表的 Web 服务
I am creating a browser enabled form and I would like to filter the results from a sharepoint list based on user input. if the user searches for the business unit "A" I would like a list of all locations that have a business unit of "A".
I have achieved this using code but the chaps that do the deployment want the from done without form code. can this be done and if so how?
I am using sharepoint 2007 and infopath 2007
my only real thought would be to create a web service that queries the SP list
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我现在已经解决了这个问题。
我根据 SP 列表的数据连接在表单上添加了带有控件的重复部分。然后,我在重复部分添加了条件格式,以隐藏来自数据源的业务不等于表单上的搜索关键字的控件。
I have looked to of solved the issue now.
I added a repeating section with controls on the form based on the data connection to the SP list. I then added conditional formatting on the repeating section to hide the control where business from data source does not equal search key word on the form.