Hello,
I have a standard RadMaskedTextBox on the same page as a RadFormDecorator. In IE 6+, it appears that the textbox is rendering the mask as plain text. When I type inside the textbox, it adds to the mask like so: (000) 00684460-0000. It also causes the textbox to accept alpha characters on a strictly numeric mask. Other features such as ResetCaretOnFocus aren't working either. Has anyone else experienced this?
My textbox resides within the same HTML element as my other standard textboxes so I don't think I can use the RadFormDecorators DecorationZoneID setting.
Here is an example:
Are there any known workarounds for this, or do I have something wrong going on?
Thanks!
-Derek
I have a standard RadMaskedTextBox on the same page as a RadFormDecorator. In IE 6+, it appears that the textbox is rendering the mask as plain text. When I type inside the textbox, it adds to the mask like so: (000) 00684460-0000. It also causes the textbox to accept alpha characters on a strictly numeric mask. Other features such as ResetCaretOnFocus aren't working either. Has anyone else experienced this?
My textbox resides within the same HTML element as my other standard textboxes so I don't think I can use the RadFormDecorators DecorationZoneID setting.
Here is an example:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="business_purchasing_orders_Default" %> |
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title>Untitled Page</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<telerik:RadFormDecorator ID="RadFormDecorator1" DecoratedControls="All" runat="server" /> |
<telerik:RadMaskedTextBox ID="RadMaskedTextBox1" Mask="(###) ###-####" PromptChar="0" runat="server"> |
</telerik:RadMaskedTextBox> |
</div> |
</form> |
</body> |
</html> |
Are there any known workarounds for this, or do I have something wrong going on?
Thanks!
-Derek