I have a MaskedEditExtender that doesn't drop the mask after i press tab, if i press enter or when it loads it works fine. The problem being that the mask now carries to the server side and all my calculations bomb out as the mask, not being dropped, fudges the decimals.
<asp:Textbox ID="txtDepositIncrease" runat="server" text="" Columns="5"/>
<cc1:MaskedEditExtender ID="txtDepositIncrease_MaskedEditExtender" runat="server" Enabled="True" TargetControlID="txtDepositIncrease" MaskType="Number" AutoComplete="true" ClearMaskOnLostFocus="true" ClearTextOnInvalid="True" Mask="999.99%" AcceptNegative="Left">
</cc1:MaskedEditExtender>
This never used to be a problem until i upgraded to the latest version. I use the mask in MANY places and as such, work arounds are going to be a massive pain. Is there a fix i dont know about, or one in the works.
<asp:Textbox ID="txtDepositIncrease" runat="server" text="" Columns="5"/>
<cc1:MaskedEditExtender ID="txtDepositIncrease_MaskedEditExtender" runat="server" Enabled="True" TargetControlID="txtDepositIncrease" MaskType="Number" AutoComplete="true" ClearMaskOnLostFocus="true" ClearTextOnInvalid="True" Mask="999.99%" AcceptNegative="Left">
</cc1:MaskedEditExtender>
This never used to be a problem until i upgraded to the latest version. I use the mask in MANY places and as such, work arounds are going to be a massive pain. Is there a fix i dont know about, or one in the works.