I want to integrate a date picke开发者_如何学Gor component using action script for date of birth. any avialable components ? please give url's ?
Check the Calendar component @ minimalcomps
http://minimalcomps.com/
You need to use DateField
var dp:DateField = new DateField();
dp.yearNavigationEnabled = true; // enables you to move thru years quickly.
addElement(dp);
精彩评论