Don't show today : DateChooser « Components « Flex
- Flex
- Components
- DateChooser
Don't show today

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="init()">
<mx:Script>
private function init():void {
var d:Date = new Date();
var m:int = d.month;
dc1.displayedMonth = m;
}
</mx:Script>
<mx:DateChooser id="dc1" showToday="false"/>
</mx:Application>
Related examples in the same category