[FIXED] [2.3] Remote Validation loading icon issue

  1. #1

    [FIXED] [2.3] Remote Validation loading icon issue

    I think you fixed this bug (http://forums.ext.net/showthread.php...ote-validation) in 2.3, but not enough, in the post 2# I say
    Additional, If remote validation invoke, the loading icon will appear, when validation over, the loading icon will disappear, and any IndicatorText will disappear together.

    Run below code, when remote validtion invoke over, the red "*" will disapear.
    You can run below code, the issue not fixed.

    <%@ Page Language="C#" %>
     
    <script runat="server">
        protected void TextField_Validation(object sender, RemoteValidationEventArgs e)
        {
            if (Convert.ToString(e.Value) == "abc")
                e.Success = true;
        }
    </script>
     
    <!DOCTYPE html>
     
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
        <style>
            .red {
                color:red;
            }
        </style>
    </head>
    <body>
        <ext:ResourceManager runat="server"></ext:ResourceManager>
        <ext:Viewport ID="Viewport1" runat="server">
            <Items>
                <ext:TextField ID="TextField1" runat="server" FieldLabel="Name"
                    IsRemoteValidation="true" IndicatorText="*" IndicatorCls="red">
                    <RemoteValidation OnValidation="TextField_Validation">
                    </RemoteValidation>
                </ext:TextField>
            </Items>
        </ext:Viewport>
    </body>
    </html>
    Last edited by Daniil; Oct 17, 2013 at 2:25 PM. Reason: [FIXED] [2.3]
  2. #2
    Thanks again for the report, now it is finally fixed
  3. #3
    Thank you, and is your fixed include this http://forums.ext.net/showthread.php...lidation-issue ?

Similar Threads

  1. Replies: 7
    Last Post: Mar 05, 2014, 9:42 AM
  2. [CLOSED] FormPanel textfield w/remote validation reset issue
    By jwhitmire36 in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Mar 04, 2013, 3:21 PM
  3. FileUploadField and Remote validation
    By fisher in forum 1.x Help
    Replies: 0
    Last Post: Aug 16, 2011, 10:20 AM
  4. Replies: 3
    Last Post: Jul 11, 2011, 9:43 AM
  5. Remote Validation
    By olimpia in forum 1.x Help
    Replies: 0
    Last Post: Jun 12, 2009, 7:39 PM

Tags for this Thread

Posting Permissions