Replies: 1 comment 1 reply
-
Can you try this: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hallo,
wenn ich im Colum Editor ein LocalDateTime Renderer anlege wir mir dieser Code generiert:
this.grid.addColumn(new LocalDateTimeRenderer<>(User::getLastlogin,
DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM), ""));
Als fehlermeldung erhalte ich: Cannot infer type arguments for LocalDateTimeRenderer<>
Der Code müsste doch so heißen, oder?:
grid.addColumn(new LocalDateRenderer<>(User::getLastlogin,
() -> DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM)));
VG
Beta Was this translation helpful? Give feedback.
All reactions