Can anybody tell me how we write validation formula for "single line of text" fields in SharePoint list that it accepts characters only.

link|improve this question
1  
this belongs on sharepoint.stackexchange.com – Stefan Jan 18 at 18:26
feedback

3 Answers

up vote 2 down vote accepted

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

link|improve this answer
feedback

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, '');
    });
link|improve this answer
feedback

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>
link|improve this answer
1  
-1: What has this to do with SharePoint forms? – Stefan Jan 19 at 8:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.