Time search field in data grid (2.4)

2
I have an application containing orders that are reported 'ready' at some point. The change to this 'ready' state is recorded using a DateTime attribute. Now, our customer needs an overview showing all orders that have been reported ready until 16.00 hrs of today. Mendix 2.4 has no widget support for time, as far as I know. How should I handle this?
asked
1 answers
2

If you're not too worried about timezones, I'd make another String attribute that gets filled with a time String when the time is set. If you do need to have timezone-adjusted times, you can probably do that too with a virtual attribute which recalculates it based on the user locale.

answered