Sharepoint:Sharepoint 自定义列表验证

发布于 2024-12-27 22:23:07 字数 52 浏览 4 评论 0原文

谁能告诉我如何为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

空袭的梦i 2025-01-03 22:23:07

我想如果没有 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

孤城病女 2025-01-03 22:23:07

JQuery 再次救援我想:我在想要约束输入值的表单中使用这种类型的条目:

    $('input[title="MyColumnName"]').keyup(function () {
        this.value = this.value.replace(/[^a-zA-Z]/g, '');
    });

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:

    $('input[title="MyColumnName"]').keyup(function () {
        this.value = this.value.replace(/[^a-zA-Z]/g, '');
    });
吖咩 2025-01-03 22:23:07

试试这个代码

<%@ language="C#" %>
    <form id="form1" runat="server">
        <asp:TextBox ID="txtName" runat="server"/>
        <asp:Button ID="btnSubmit" runat="server" Text="Submit" />
        <asp:RegularExpressionValidator ID="regexpName" runat="server"     
                                        ErrorMessage="This expression does not validate." 
                                        ControlToValidate="txtName"     
                                        ValidationExpression="^[a-zA-Z'.\s]{1,40}$" />
    </form>

Try this code

<%@ language="C#" %>
    <form id="form1" runat="server">
        <asp:TextBox ID="txtName" runat="server"/>
        <asp:Button ID="btnSubmit" runat="server" Text="Submit" />
        <asp:RegularExpressionValidator ID="regexpName" runat="server"     
                                        ErrorMessage="This expression does not validate." 
                                        ControlToValidate="txtName"     
                                        ValidationExpression="^[a-zA-Z'.\s]{1,40}$" />
    </form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文