I have a question about the datefield component in Flex 4.5.1. How can I make the widget not show a date to start if this condition exists?
if( this.intent.equals(FormIntent.INTENT_CREATE) )
dtEndDate.selectedDate = dtStartDate.selectedDate;
}
<mx:DateField id="dtStartDate" width="100%" focusOut="dtStartDate_focusOutHandler(event)" editable="true" />
Thanks, for your help.