does anyone know how to add date and time filter for sales order grid filter? Basically there can filter with date but no option to filter with time
Try to add below field to add date filter in sales order grid.
<column name="created_at" class="Magento\Ui\Component\Listing\Columns\Date" component="Magento_Ui/js/grid/columns/date">
<settings>
<filter>dateRange</filter>
<dataType>date</dataType>
<label translate="true">Created</label>
</settings>
</column>