In the table shown, the value is UTC while the label is showing Local. The filter applies only to the value, but that's not very intuitive for a user since they would expect the filter to match what they see, not the underlying UTC data.
Basically need to be able to apply the same "Manage time zones" option to the filter. There are a few other requests out there for options related to the filter component... hopefully that's the next one that gets some treatment!
Use JavaScript for Custom Filtering
Retool allows the use of JavaScript in queries or transformers. You can write custom logic to handle the conversion and apply the filter accordingly.
const localTime = new Date(yourTableData.timeField).toLocaleString('en-US', { timeZone: 'America/New_York' }); // Adjust as needed
We have a request in our backlog to better support different formatting in this table filter UI. I don't have a timeline yet, but I can reach out if it gets picked up
It may be easier to have a date separate component that triggers a setFilter query
No, the request is to apply the date column format to table filter
For the calendar input, can you share an example? Would you want the month to be written in the local language? Are you looking to transform {{calendarInput1.value}}