Hello,
I need to validate numericUD value when typing, so i have the following code:
But it doesn't call setter when i type (only when i click up/down arrows). What should i do to allow numericUD call setter of AdditionalCosts property when i type?
Thanks.
I need to validate numericUD value when typing, so i have the following code:
<
telerik:RadNumericUpDown
HorizontalAlignment
=
"Center"
Value="{Binding
Path
=
AdditionalCosts
,
Mode
=
TwoWay
,
UpdateSourceTrigger
=
PropertyChanged
,
ValidatesOnDataErrors
=
True
}"
IsEditable
=
"True"
AutoReverse
=
"False"
Minimum
=
"0"
SmallChange
=
"1"
LargeChange
=
"5"
ValueFormat
=
"Numeric"
IsInteger
=
"True"
/>
But it doesn't call setter when i type (only when i click up/down arrows). What should i do to allow numericUD call setter of AdditionalCosts property when i type?
Thanks.