我想将DateField字符串格式化为“MM / YYYY”。但是,我注意到即使选择了有效日期,其selectedDate属性也始终设置为null。有人可以对此有所了解吗?
谢谢,
<mx:FormItem label="Start Date" required="true">
<mx:DateField id="startDateField" formatString="MM-YYYY"/>
</mx:FormItem>
答案 0 :(得分:1)
在dateField上设置parseFunction属性。
<mx:DateField id="startDateField" formatString="MM-YYYY" parseFunction="{null}" />
我认为formatString搞乱了dateField上的selectedDate值。
检查here以获得更深入的解释。