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

Boss picture Boss · Oct 31, 2013 · Viewed 14.4k times · Source
           <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....??

Answer

Brett Postin picture Brett Postin · Apr 9, 2014

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.