When I use this control or the numeric control I can only type 3 digits and 2 are positioned after the decimal, if I keep typing digits it just overwrites the last decimal place. Initial value is zero, decimal property, version 2015.2.623.45.
<telerik:RadMaskedCurrencyInput Width="100" InputBehavior="Replace" Mask="c9.2" SelectionOnFocus="SelectAll" Value="{Binding TotalAmount}" Culture="en-CA" Grid.Column="5" Grid.Row="1" HorizontalContentAlignment="Right" HorizontalAlignment="Left" VerticalAlignment="Top" />public decimal TotalAmount{ get { return workDetail.Total; } set { if (workDetail.Total != value) { workDetail.Total = value; OnPropertyChanged("TotalAmount"); } }}