Datepicker in english time format missing am or pm

I have this in webix 10.0.6:

{
  view: 'datepicker',
  id: 'appointment',
  hidden: true,
  name: 'appointment',
  timepicker: true,
  label: 'proposed',
  stringResult: true,
  format: '%d.%m.%Y %h:%i',
  labelWidth: 90
},

In the input field I’ve got : 20.07.2023 01:00

But I miss am or pm !! how to complete input field with am or pm ?

Thanks for a help

Michael

probably you need to add %A

%d.%m.%Y %h:%i %A
Date Formatting Methods of Guides, Auxiliary Resources Webix Docs

1 Like

Thank you so much… i’m so damn stupid…