I need to set the value for ToDate to be the value of FromDate field when FromDate is selected by the user. both are FormDateControl controls. my code in fromDate.TextChange event handler is like toDate.DateValue(this.DateValue()), but it doesn't workout. from code degging the value of toDate is updated but it still shows the old value on the screen. In MSDN I found
"Note
This property (DateValue) is not used if the DataSource and DataField properties are set."
this means it doen't work to try to update the control, I need to update the datasource, which I can somehow get it from element.datasource() method. is this correct thinking? any advices are greatly appreciated.
*This post is locked for comments