Flex DateField SelectedField 始终设置为 NULL

发布于 2024-10-21 21:36:29 字数 277 浏览 0 评论 0原文

我想将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-10-28 21:36:29

在 dateField 上设置 parseFunction 属性。

<mx:DateField id="startDateField" formatString="MM-YYYY" parseFunction="{null}" />

我认为 formatString 弄乱了 dateField 上的 selectedDate 值。

请查看此处以获得更深入的解释。

Set the parseFunction property on your dateField.

<mx:DateField id="startDateField" formatString="MM-YYYY" parseFunction="{null}" />

I think the formatString is messing up with the selectedDate value on the dateField.

Check here for much deeper explanation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文