Are there any known issues with putting a RadMaskedTextBox inside the ItemTemplate of a RadComboBox?
Here is what I have:
| <telerik:RadComboBox ID="cmbConferenceInformation_ConferencePhone" runat="server" Width="250" HighlightTemplatedItems="true" DataTextField="Text" DataValueField="Name" OnItemDataBound="cmbConferences_ConferencePhones_ItemDataBound" OnSelectedIndexChanged="cmbConferences_ConferencePhones_SelectedIndexChanged" AutoPostBack="true"> |
| <ItemTemplate> |
| <table border="0" cellpadding="0"> |
| <tr> |
| <td><telerik:RadMaskedTextBox ID="txtConferenceInformation_ConferencePhone_OtherPhone" runat="server" Width="80" Mask="(###) ###-####"></telerik:RadMaskedTextBox></td> |
| </tr> |
| </table> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
What i am experiencing, only in IE8, is that when i put the cursor into the beginning of the masked text box and start typing, it takes one character and then jumps the cursor to the end. I cant type anymore and i cant backspace at that point since i am at the end of the masking. Has anyone else experienced this?
Just to note: This combobox is within a RadPanelBar, that is within a splitter. which is within a RadAjaxPanel in a RadWindow.