Sharepoint:Sharepoint 自定义列表验证
谁能告诉我如何为 SharePoint 列表中的“单行文本”字段编写仅接受字符的验证公式。
Can anybody tell me how we write validation formula for "single line of text" fields in SharePoint list that it accepts characters only.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想如果没有 SP Designer 这是不可能的。有以下功能可用:
ISBLANK ISERR ISERROR ISLOGICAL ISNA ISNONTEXT ISNULL ISNUMBER ISTEXT
请参阅此参考:
http://office.microsoft.com/en -us/sharepoint-foundation-help/is-functions-HA100405908.aspx
I think without SP Designer is this not possible. There are following functions available:
ISBLANK ISERR ISERROR ISLOGICAL ISNA ISNONTEXT ISNULL ISNUMBER ISTEXT
See this reference:
http://office.microsoft.com/en-us/sharepoint-foundation-help/is-functions-HA100405908.aspx
JQuery 再次救援我想:我在想要约束输入值的表单中使用这种类型的条目:
JQuery to the rescue again I'd have thought: I use this this type of entry in forms where I want to constrain input values:
试试这个代码
Try this code