Using SfCalendar and SfNumericTextBox version 19.2.0.62
I have a view in Xamarin Forms 5.0 that has an SfNumericTextBox bound to a nullable int and has AllowNulls = True
We also have an SfCalendar control bound to a DateTime field in the same ViewModel
- Initial View and ViewModel loads
- Edit value in Numeric Text box. ViewModel property does not get changed
- Tap a different date in the calendar control. Bound Current date property is updated but bound nullabale int does not get updated
- Tap another date in the calendar control. Bound Current date property is updated AND now the nullanble into property gets updated.
We need the binding of the numeric textbox to update at step 3 when the first Date is changed.
If the keybaord is dismissed before moving to the new date the binding is updated. Can the NumericTextbox be configured to update the binding on LostFocus?
Why doesn't it?
Thanks