Hi Fco,
Thanks for using Syncfusion product.
We have checked the reported issue in our end and your requirement can be achieved by using the ValueChanged event of SfDateTimeEdit. Please find the code snippet from below.
this.sfDateTimeEdit1.DataBindings.Add("Value", bindingSource1, "EndTime", true,DataSourceUpdateMode.OnPropertyChanged);
sfDateTimeEdit1.ValueChanged += sfDateTimeEdit1_ValueChanged;
void sfDateTimeEdit1_ValueChanged(object sender, Syncfusion.WinForms.Input.Events.DateTimeValueChangedEventArgs e)
{
sfDateTimeEdit1.DataBindings["Value"].WriteValue();
}
|
Let us know whether this helps also if you need any further assistance on this.
Regards,
Jagadeesan