i cannot seem to set the width of the gridmaskededitcolumn in a radgrid when it's in edit mode - it always seems to go to some set size instead of the size I set it to - how do I set the width?
also does anyone know how to get rid of the "_" on the display of the values promptchar does not work - it always shows the underlines even when i put in the " " instead as seen above
<telerik:GridMaskedColumn DataField="contactcontent" UniqueName="contactcontent" |
FooterStyle-Width="90px" HeaderStyle-Width="90px" ItemStyle-Width="90px" Mask="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" |
HeaderText="Contact" ColumnEditorID="ContactContentGridTextBoxColumnEditor"> |
</telerik:GridMaskedColumn> |
<telerik:GridMaskedColumn DataField="contactsecondarycontent" UniqueName="contactsecondarycontent" |
FooterStyle-Width="25px" HeaderStyle-Width="25px" ItemStyle-Width="25px" Mask="aaaaa" |
HeaderText="Ext." ColumnEditorID="ContactContentGridTextBoxColumnEditor"> |
</telerik:GridMaskedColumn> |
<telerik:GridMaskedColumnEditor ID="ContactContentMaskedColumnEditor" runat="server" |
MaskedTextBox-PromptChar=" " MaskedTextBox-DisplayPromptChar=" " MaskedTextBox-DisplayMask="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" |
MaskedTextBox-Mask="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"> |
<MaskedTextBox runat="server" Width="90px" DisabledStyle-Width="90px" EmptyMessageStyle-Width="90px" |
EnabledStyle-Width="90px" FocusedStyle-Width="90px" HoveredStyle-Width="90px" |
InvalidStyle-Width="90px" ReadOnlyStyle-Width="90px" PromptChar=" " DisplayPromptChar=" " |
DisplayMask="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" |
Mask="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" /> |
</telerik:GridMaskedColumnEditor> |
<telerik:GridMaskedColumnEditor ID="SecondaryContentMaskedColumnEditor" runat="server" |
MaskedTextBox-PromptChar=" " MaskedTextBox-DisplayPromptChar=" " MaskedTextBox-DisplayMask="aaaaa" |
MaskedTextBox-Mask="aaaaa"> |
<MaskedTextBox runat="server" Width="25px" DisabledStyle-Width="25px" EmptyMessageStyle-Width="25px" |
EnabledStyle-Width="25px" FocusedStyle-Width="25px" HoveredStyle-Width="25px" |
InvalidStyle-Width="25px" ReadOnlyStyle-Width="25px" PromptChar=" " DisplayPromptChar=" " |
DisplayMask="aaaaa" Mask="aaaaa" /> |
</telerik:GridMaskedColumnEditor> |
also does anyone know how to get rid of the "_" on the display of the values promptchar does not work - it always shows the underlines even when i put in the " " instead as seen above