Consider the following RadMaskedTextBox:
<rad:RadMaskedTextBox ID="radMaskedRateAdjustment" runat="server" DisplayMask="<|->#.####" DisplayPromptChar="" Mask="<|->#.####" MaxLength="5" NumericRangeAlign="Left" PromptChar=" " ResetCaretOnFocus="True" TextWithLiterals="-." Text='<%# DataBinder.Eval( Container, "DataItem.RateAdjustment") %>' LabelCssClass="radLabelCss_Default" Skin="" Width="125px"> </rad:RadMaskedTextBox>
When I set the DisplayMask as indicated, I get the following, in a pop-up box with Yes/No buttons:
Stop running this script?
A script on this page is causing Internet Explorer to run slowly. If it continues to run, your computer may become unresponsive.
When I change the DisplayMask to "#.####", the error stops appearing.
I need the <|-> so that a negative sign is allowed.
Can anyone help?