InfoPath 与 SharePoint 列表
有没有一种方法可以检查 InfoPath 表单中的值是否已存在于 SharePoint 列表中,而无需隐藏代码?该表单启用了浏览器,因此我无法使用脚本或托管代码。
Is there a way to check if a value is already in a SharePoint list from an InfoPath form without code behind? The form is browser enabled so I can not use scripts or managed code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建到共享点列表的数据连接,并在呈现列表数据时将其加载到 InfoPath 表单中。然后,您可以使用 InfoPath“规则”来检查给定列表是否包含您要查找的值。
如果列表中有很多行,则规则可能会变得相当复杂。如果你能说得更具体一些,我也许可以给你更详细的答案。
You can create a data connection to the sharepoint list and load the list data into the InfoPath form when it's rendered. Then you can use InfoPath "rules" to check if the given list contains the value you're looking for.
If there are many rows in the list the rules can become quite complex. If you can be more specific I might be able to give you a more detailed answer.
就像 Tomso 所指出的那样,您必须使用接收数据连接将数据拉入 InfoPath,然后在 InfoPath 内执行必要的逻辑。
Like Tomso inidcates, you will have to pull the data into InfoPath with a receiving data connection and then perform the necessary logic inside InfoPath.