在 Flash Builder 4.6 中找不到 mx:DateChooser
显示mx:DateChooser 控件可以在 Flash Builder 4.6 中使用
我在代码提示中找不到它。
请告知如何在 Flash Builder 4.6 更新中使用 DateChooser 控件
:
我确实找不到此屏幕截图中所示的 datechooser。 http://cl.ly/EJKp
当然我正在使用 sdk4.6 for flex 也显示在这里。 http://cl.ly/EJT0
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您的脚本标头包含以下内容:
make sure your script header contains things as following:
如果 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.