Grid edit, date field displaying only time

Hi,
I have a Grid that displays only the time based on date fields using below

grid.getColumn(“…”).setRenderer(new DateRenderer(“%1$tH:%1$tM”, locale));

When I make the Grid editable it shows date fields to select from.
How can I make it to show time edit?

You’ll need to configure the DateField, see: https://vaadin.com/docs/-/part/framework/components/components-grid.html#components.grid.editing.editorfields

Thank You