Adobe Flex 日期
您好,我在约会时遇到问题。
我有一个自定义日期选择器。
在 dateChooser 组件中突出显示一些假期,同时在容器中列出假期。
问题是我在容器中显示的日期不是按升序排列的,有人可以帮忙吗?
启用查看源代码的演示应用程序的链接
http://125.22.254.206/clients/flexdemos/ calendardemo/calendardemo.html
上述逻辑在custome文件夹下的ExtendedDateChooser.as中实现。
Hi I am having a problem in date.
I am having a custom dateChooser.
In the dateChooser component highlights some holidays and at the same time lists the holidays in a container.
The Problem is the date I am displaying in the container is not in ascending order could some one please help.
Link for the demo application with view source enabled
http://125.22.254.206/clients/flexdemos/calendardemo/calendardemo.html
The said logic is implemented in ExtendedDateChooser.as under custome folder.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试对“holidayView”vbox 中的日期进行排序?
您无法对两个日期进行比较和排序。您可以使用下面给出的日期比较方法(网上搜索找到更好的方法)。如果vbox中显示假期的控件是datagrid,
在tag属性中使用将得到sortedDate
Are you trying to sort the date in the 'holidayView' vbox?
You cant compare and sort two dates. You can use the date comparison method given below (search the web to find a better one).If the control in the vbox to display holidays is a datagrid, using
in the tag attribute will result in sortedDate
我认为,你不能按日期排序。
首先,我在您的应用程序中看不到容器。
我的方法是将日期解析为自 1970 年以来的毫秒数
然后您可以通过某种逻辑对其进行排序。
BR
坦率
I think, you cant sort by Date.
First, I can't see the container in your app.
My way would be to parse the date in to milliseconds since 1970
Then you can sort it by some logic.
BR
Frank