We can set year navigation of datafield control using the property yearNavigationEnabled and set it to true.
yearNavigationEnabled=”true”
And we can set the starting year in the datafield control using the property minYear and the final year using the property maxYear, as below.
minYear=”2007″
maxYear=”2010″
With these properties the DateField control looks like this.
<mx:DateField id=”dateField”
yearNavigationEnabled=”true”
minYear=”2000″
maxYear=”2010″ />
Try it usable properties of DateField control.

