I'm looking for some help regarding the following issue: In my AG-Grid I want to have a date column which I can filter by date and a dateTime column which I want to filter by date + time. The date and dateTime picker should be from a third party (e.g. MUI date and dateTime picker).
example date and dateTime columns
I created a custom date component and registered it like so
frameworkComponents: { agDateInput: CustomDateComponent }}
which will replace all AG-Grid's date input with the custom one (see https://www.ag-grid.com/react-data-grid/component-date/). Filtering by date works like a charm but I don't know how to implement the dateTime picker component correctly. Is the only possible way to create an additional custom dateTime filter and dateTime floating filter component for this use case?