Binding TTMSFMXDateTimeEdit

Hi, I have a TTMSFMXDateTimeEdit binding to a datatable. I am wondering if there is an element I can bind to to update my table DateTime value from either TDate or TTime. At present, I only bind it to TDate.DateTime. This binding only interacts with the TDate, not TTime. Is there a way to have both TDate and TTime interacting with my table through binding?
Thanks!
Gene

Hi, 


You could try to bind directly to the DateTime property of TTMSFMXDateTimeEdit but you would need to manually notify observers when the date changes.

Thanks! it is a one direct binding. It doesn't update the datatable values. It should be used to display values I believe. I came be to a old traditional way by using two separate fields for date and time. Then they can be updated separately.