gpt4 book ai didi

date - Vaadin Grid 可排序日期列

转载 作者:行者123 更新时间:2023-12-05 01:54:22 25 4
gpt4 key购买 nike

我想在我的 vaadin 网格组件中添加一个可排序的日期列。不幸的是,它不适用于格式化日期,我认为在格式化日期对象之后它只是一个字符串,因此使用此列进行排序无法正常工作,但无论如何我需要一个解决方案。我已经尝试过这个解决方案,但它也不起作用:

    grid.addColumn(new LocalDateTimeRenderer<>(MyObject::getCreated,
DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT, FormatStyle.MEDIUM)
.withLocale(Locale.GERMANY).withZone(ZoneId.of("Europe/Paris"))))
.setHeader("Created").setSortProperty("created");

你有别的想法吗?

谢谢

最佳答案

你可以设置一个比较器

grid.addColumn(new LocalDateTimeRenderer<>(MyObject::getCreated,
DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT, FormatStyle.MEDIUM)
.withLocale(Locale.GERMANY).withZone(ZoneId.of("Europe/Paris"))))
.setHeader("Created")
.setSortProperty("created")
.setComparator(MyObject::getCreated);

另请查看文档:https://vaadin.com/docs/latest/ds/components/grid#sorting

关于date - Vaadin Grid 可排序日期列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70685061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com