This question is locked. New answers and comments are not allowed.
I am using the RadMaskedTextBox in a binding scenario (real simple). And I set the EmptyContent property to "" as my datasource allows null values for the field. The setting of the EmptyContent for the null value works for the first time I open the childwindow, but for the second time I cannot edit inside the RadMaskedTextBox. No keystrokes are accepted. Is this a know bug or am I missing something that I don dot know?
Here my UI stuff:
<telerik:RadMaskedTextBox Width="100" x:Name="txtGrossPay" Grid.Row="24" Margin="165,2,478,2" MaskType="Numeric" Mask="n2" VerticalAlignment="Center" ValueChanging="balances_ValueChanging" SelectionOnFocus="SelectAll" EmptyContent=""></telerik:RadMaskedTextBox>
Here my code behind for the binding:
txtGrossPay.SetBinding(RadMaskedTextBox.ValueProperty, new Binding("BalancesUI.GrossPay") { Mode = BindingMode.TwoWay});
Here my UI stuff:
<telerik:RadMaskedTextBox Width="100" x:Name="txtGrossPay" Grid.Row="24" Margin="165,2,478,2" MaskType="Numeric" Mask="n2" VerticalAlignment="Center" ValueChanging="balances_ValueChanging" SelectionOnFocus="SelectAll" EmptyContent=""></telerik:RadMaskedTextBox>
Here my code behind for the binding:
txtGrossPay.SetBinding(RadMaskedTextBox.ValueProperty, new Binding("BalancesUI.GrossPay") { Mode = BindingMode.TwoWay});