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