在 Flash Builder 4.6 中找不到 mx:DateChooser

发布于 2025-01-03 00:23:12 字数 636 浏览 1 评论 0原文

http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7d9b.html#WS2db454920e96a9e51e63e3d11c0bf63b33-7fd3

显示mx:DateChooser 控件可以在 Flash Builder 4.6 中使用

我在代码提示中找不到它。

请告知如何在 Flash Builder 4.6 更新中使用 DateChooser 控件

我确实找不到此屏幕截图中所示的 datechooser。 http://cl.ly/EJKp

当然我正在使用 sdk4.6 for flex 也显示在这里。 http://cl.ly/EJT0

http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7d9b.html#WS2db454920e96a9e51e63e3d11c0bf63b33-7fd3

Shows that mx:DateChooser control can be used in Flash Builder 4.6

I cannot find it in the codehint.

Please advise on how do I have a DateChooser control for use in Flash Builder 4.6

Update:

I really cannot find datechooser as seen in this screenshot.
http://cl.ly/EJKp

definitely I am using sdk4.6 for flex also shown here.
http://cl.ly/EJT0

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沩ん囻菔务 2025-01-10 00:23:12

确保您的脚本标头包含以下内容:

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx">

make sure your script header contains things as following:

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx">
最舍不得你 2025-01-10 00:23:12

如果 Flash Builder 项目设置的 Flex 构建路径配置了“仅 Spark”组件集,则像这样的 MX 组件将被配置。将不可用。解决此问题的一种方法是将组件集更改为“MX + Spark”。

然而,这种方法的一个缺点是该项目将能够编译 Web 应用程序,但不能编译移动应用程序。另一个解决方案是使用仅 Spark 的 DatePicker(实际上是 DateChooser 和 DateField)。例如,下面是一个 开源 DateChooser 组件。

If the Flash Builder project settings have the Flex Build Path configured with a component set of "Spark only" then MX components like <mx:DateChooser> will not be available. One way to fix this is to change the component set to "MX + Spark".

However, a trade-off of this approach is that the project will be able to compile a web application but not a mobile application. Another solution is to use a spark only DatePicker (actually, DateChooser and DateField). For example, here is an open source DateChooser component.

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