Hi,
I have a sfTimePicker with a format of HH:mm:ss.fff
It is binded to a DateTime viewModel property.
The value of the control is updating correctly when I run the code for the HH:mm:ss but the .fff is not changing.
Is my setup wrong somehow? XAML below, value is binding to property Timestamp.
<syncfusion:SfTimePicker SelectorItemWidth="70"
SelectorItemHeight="70"
FormatString="HH:mm:ss.fff"
IsEnabled="{Binding Path=CanEditSimulator}"
Value="{Binding Path=Timestamp, Mode=TwoWay}"/>