Backspace or Delete key In TextBox with Masked Edit Extender in ASP.NET not working in Chrome

14,309

It seems this was a bug in the MaskedEditExtender. See this CodePlex issue.

You could try updating to the latest version at it states it was fixed in the April 2013 release.

Alternatively there is a small fix available here.

Share:
14,309
Boss
Author by

Boss

Updated on June 04, 2022

Comments

  • Boss
    Boss almost 2 years
               <asp:TextBox ID="txttime" runat="server" CssClass="TextBox">'
                     Width="60px" Enabled="false" ></asp:TextBox>
    
              <ajax:MaskedEditExtender ID="ajaxtime" runat="server" AcceptNegative="None"
             Enabled="True" TargetControlID="txttime" MaskType="Time" AcceptAMPM="true"
           ask="99:99" CultureName="en-CA"  AutoComplete="true" AutoCompleteValue="99:00"/>
    

    In Above code delete or backspace key in textbox working Firefox and IE but not working in Chrome.. Please Help..

    Any Suggestion....??

  • Boss
    Boss over 10 years
    chrome Version 30.0.1599.101 m
  • Vishwajeet Kulkarni
    Vishwajeet Kulkarni over 10 years
    Try using webkit(ajax compatible); hope will help.
  • Derek
    Derek over 10 years
    Can you elaborate further on this? The OP doesn't have a control with ID txtPhone - it sounds like you left out part of your answer.
  • JamesT
    JamesT over 7 years
    Why does this fix the issue? Please expand on your answer rather than just posting code.