dashjoin / platform

Dashjoin Is an Open Source & Cloud Native Low Code Development and Integration Platform that helps teams deliver applications faster 🚀 Uses a data-driven approach inspired by Linked Data to make use of your existing assets
https://dashjoin.com
GNU Affero General Public License v3.0
89 stars 7 forks source link

Filter in Action Table for Date columns does not work #378

Closed pgrill79 closed 1 week ago

pgrill79 commented 1 week ago

If an actino table has a date column and you add a filter, no input is accepted:

image

You can type in something in the field but if you leave the field it is cleared again and also nithing is filterd

aeberhart commented 1 week ago

In order to avoid the table being empty as you type (since we filter on equality and not "startsWith"), we switched the filters to SelectInput (https://marmelab.com/react-admin/SelectInput.html).

This input allows you to enter a sub-string and it then shows the options. If the component loses focus (e.g. by hitting TAB), the sub-string is discarded.

You have to select one of the options in the dropdown in order for the filter to be set.

Does this solve your issue?

pgrill79 commented 1 week ago

Yes, understood - i havent selected the value in the select box... after selecting the value in the drop down it works.