Completed
Last Updated: 26 May 2017 06:24 by ADMIN
ADMIN
Hristo
Created on: 15 Feb 2017 09:56
Category: Editors
Type: Bug Report
1
FIX. RadMaskedEditBox - incorrect initial text position when standard mask is used and the control has an increased font
How to reproduce:
 this.radMaskedEditBox1.Font = new System.Drawing.Font("Segoe UI", 20F);

 this.radMaskedEditBox1.MaskType = Telerik.WinControls.UI.MaskType.Standard;
 this.radMaskedEditBox1.Mask = "#####-######";
 this.radMaskedEditBox1.Value = "47997006886";


Workaround: 
this.radMaskedEditBox1.Font = new System.Drawing.Font("Segoe UI", 20F);

this.radMaskedEditBox1.MaskType = Telerik.WinControls.UI.MaskType.Standard;
this.radMaskedEditBox1.Mask = "#####-######";
this.radMaskedEditBox1.Text = "47997006886";
0 comments