I got a Problem with my DateChooser. When clicking the control directly it highlights the date as it should. When selecting the date programmatically it won't show.
var date:Date = notification.getBody() as Date;
_view.dcMiniCalendar.selectedDate = date;
trace tells me, that date
and _view.dcMiniCalendar.selectedDate
carry the correct values.
I already tried to use _view.dcMiniCalendar.invalidateDisplayList()
(and some other invalidate functions as well) but neither with nor without them I get that date to be shown selected in the control.
thx in advance. x_mtd