Flex DateField SelectedField 始终设置为 NULL
我想将 DateField 字符串格式化为“MM/YYYY”。但是,我注意到即使选择了有效日期,其 selectedDate 属性也始终设置为 null。有人可以解释一下吗?
谢谢,
<mx:FormItem label="Start Date" required="true">
<mx:DateField id="startDateField" formatString="MM-YYYY"/>
</mx:FormItem>
I'd like to format the DateField string as "MM/YYYY". However, I notice that its selectedDate property is always set to null even if a valid date is selected. Can someone shed some light on this?
Thanks,
<mx:FormItem label="Start Date" required="true">
<mx:DateField id="startDateField" formatString="MM-YYYY"/>
</mx:FormItem>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 dateField 上设置 parseFunction 属性。
我认为 formatString 弄乱了 dateField 上的 selectedDate 值。
请查看此处以获得更深入的解释。
Set the parseFunction property on your dateField.
I think the formatString is messing up with the selectedDate value on the dateField.
Check here for much deeper explanation.