I am trying to verify if the users select a date in my date chooser spark componet. I tried:
if(dateChooserBegin.selectedDate){
..........
}
I will get a run time null object error. I was wondering if anyone here know to do this. Thanks for the help.
You will probably need to extract the date from the
CalendarLayoutChangeEventevent object that is raised on choosing a particular date. See the example on Flex livedocs (particularly theuseDateevent handler.