Adobe Flex 日期

发布于 2024-10-15 18:14:07 字数 385 浏览 3 评论 0原文

您好,我在约会时遇到问题。

我有一个自定义日期选择器。

在 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 技术交流群。

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

发布评论

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

评论(2

-柠檬树下少年和吉他 2024-10-22 18:14:07

您是否尝试对“holidayView”vbox 中的日期进行排序?
您无法对两个日期进行比较和排序。您可以使用下面给出的日期比较方法(网上搜索找到更好的方法)。如果vbox中显示假期的控件是datagrid,

<mx:DataGridColumn
      headerText="Created Date"
      date="createdDt"
      sortCompareFunction="date_sortCompareFunc">
</mx:DataGridColumn>

在tag属性中使用将得到sortedDate

private function date_sortCompareFunc(itemA:Object, itemB:Object):int
       {
           /* Date.parse() returns an int, but
              ObjectUtil.dateCompare() expects two
              Date objects, so convert String to
            int to Date. */

           var dateA:Date=isoToDate(itemA.createdDt);
           var dateB:Date=isoToDate(itemB.createdDt);
           return ObjectUtil.dateCompare(dateB, dateA);
       }

 private function isoToDate(value:String):Date {
            var dateStr:String = value;
            dateStr = dateStr.replace(/\-/g, "/");
            dateStr = dateStr.replace("T", " ");
            dateStr = dateStr.replace("Z", " GMT-0000");
            return new Date(Date.parse(dateStr));
        }

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

<mx:DataGridColumn
      headerText="Created Date"
      date="createdDt"
      sortCompareFunction="date_sortCompareFunc">
</mx:DataGridColumn>

in the tag attribute will result in sortedDate

private function date_sortCompareFunc(itemA:Object, itemB:Object):int
       {
           /* Date.parse() returns an int, but
              ObjectUtil.dateCompare() expects two
              Date objects, so convert String to
            int to Date. */

           var dateA:Date=isoToDate(itemA.createdDt);
           var dateB:Date=isoToDate(itemB.createdDt);
           return ObjectUtil.dateCompare(dateB, dateA);
       }

 private function isoToDate(value:String):Date {
            var dateStr:String = value;
            dateStr = dateStr.replace(/\-/g, "/");
            dateStr = dateStr.replace("T", " ");
            dateStr = dateStr.replace("Z", " GMT-0000");
            return new Date(Date.parse(dateStr));
        }
新一帅帅 2024-10-22 18:14:07

我认为,你不能按日期排序。

首先,我在您的应用程序中看不到容器。

我的方法是将日期解析为自 1970 年以来的毫秒数

parse(date:String):Number

然后您可以通过某种逻辑对其进行排序。

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

parse(date:String):Number

Then you can sort it by some logic.

BR
Frank

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