Hello,
I use two datepickers to filter a datagrid and it works as expected - but If I use the same datepickers to filter for the excelexport the date is not the same - it looks like the day and months is swapped
Grid filter date: '2022-01-03T14:27:39.1726740+01:00'
excel export filter date: '2022-03-01T14:27:39.1726740+01:00'
this is send to the server on button click to export die xls:
http://localhost:5000/export/pdb/pfuscherakterhebungs/excel(fileName='MeineErhebungen')?$filter=i => i.Ermittler_ID == 43 && i.Erhebungsdatum >= "03.01.2022 14:42:18" && i.Erhebungsdatum <= "10.01.2022 14:42:18"&$expand=Pfuscherakt,Ermittler&$select=Akt_ID,Pfuscherakt.Aktenzahl,Ermittler.Ermittler1 as Ermittler
robert