Hello,
I just ported my solution from .NET 3.5 to .NET 4.6.1 and updated Telerik from version 2012.2.912.35 to 2015.3.1104.5.
This code used to work fine, the setter of the property was called when the control lost focus:
<
telerik:RadNumericUpDown
Value
=
"{Binding UIExceeding, Mode=TwoWay}"
SmallChange
=
"0"
LargeChange
=
"0"
>
After the framework and Telerik was updated, the setter was never called anymore. To go back to how it used to work, I had to add UpdateSourceTrigger=LostFocus and UpdateValueEvent="PropertyChanged":
<
telerik:RadNumericUpDown
Value
=
"{Binding UIExceeding, Mode=TwoWay, UpdateSourceTrigger=LostFocus}"
SmallChange
=
"0"
LargeChange
=
"0"
UpdateValueEvent
=
"PropertyChanged"
>
Could you tell me what changed in between versions?
Thanks in advance