
Manivannan
Top achievements
Rank 1
Manivannan
asked on 06 Aug 2014, 05:45 PM
Hi
We use visual studio 2008 with Telerik 2014 Q2. We are facing few minor issues with Masked Text Box in Grid. This happens only in IE 11
Masked Text Box- when we enter first letter in the masked text box id disappears. when we enter second letter in the masked text box. it appears again.
How to fix this issue?
Advance Thanks.
We use visual studio 2008 with Telerik 2014 Q2. We are facing few minor issues with Masked Text Box in Grid. This happens only in IE 11
Masked Text Box- when we enter first letter in the masked text box id disappears. when we enter second letter in the masked text box. it appears again.
How to fix this issue?
Advance Thanks.
4 Answers, 1 is accepted
0
Hello,
I tried replicating the described behavior, however I was unable to. I am attaching a sample project I used for testing. It seems to work as expected on my end. Would you give it a try and let me know if it works for you? Would you also elaborate on what is different in your scenario?
Additionally, please try upgrading the controls to the latest version (currently 2014.2.724) and see if the behavior changes.
Regards,
Viktor Tachev
Telerik
I tried replicating the described behavior, however I was unable to. I am attaching a sample project I used for testing. It seems to work as expected on my end. Would you give it a try and let me know if it works for you? Would you also elaborate on what is different in your scenario?
Additionally, please try upgrading the controls to the latest version (currently 2014.2.724) and see if the behavior changes.
Regards,
Viktor Tachev
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0

Manivannan
Top achievements
Rank 1
answered on 11 Aug 2014, 12:50 PM
Thank you for your Sample program Viktor. I will try this and confirm.
Thanks once again.
Thanks once again.
0

Manivannan
Top achievements
Rank 1
answered on 12 Aug 2014, 01:40 PM
Issue resolved. I use following code in Maskedtext box.
just added this.
TextMode="MultiLine" Rows="1"
<telerik:RadMaskedTextBox ID="Phone" runat="server" TextMode="MultiLine" Rows="1" EnableSingleInputRendering="false" Mask="###-###-####">
</telerik:RadMaskedTextBox>
just added this.
TextMode="MultiLine" Rows="1"
<telerik:RadMaskedTextBox ID="Phone" runat="server" TextMode="MultiLine" Rows="1" EnableSingleInputRendering="false" Mask="###-###-####">
</telerik:RadMaskedTextBox>
0
Hello,
Please note that if you would use the RadMaskedTextBox in a single line mode you do not need to set the TextMode property to MultiLine. You could use the following markup:
Regards,
Viktor Tachev
Telerik
Please note that if you would use the RadMaskedTextBox in a single line mode you do not need to set the TextMode property to MultiLine. You could use the following markup:
<
telerik:RadMaskedTextBox
ID
=
"Phone"
runat
=
"server"
Mask
=
"###-###-####"
>
</
telerik:RadMaskedTextBox
>
Regards,
Viktor Tachev
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.