Unplanned
Last Updated: 26 Oct 2017 05:47 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 26 Dec 2016 11:07
Category: Editors
Type: Bug Report
2
FIX. RadMaskedEditBox - the ValueChanging/ValueChanged event is fired twice with MaskType.Numeric and the user changes the initial 0 value
To reproduce: use the following code snippet  and try to input some numeric value

public RadForm1()
 {
     InitializeComponent(); 
     this.radMaskedEditBox1.MaskType = Telerik.WinControls.UI.MaskType.Numeric; 
     this.radMaskedEditBox1.ValueChanged += radMaskedEditBox1_ValueChanged;
 }

 private void radMaskedEditBox1_ValueChanged(object sender, EventArgs e)
 {
     Console.WriteLine(this.radMaskedEditBox1.Value);
 }
0 comments