- My goal:
I need a filter for a button who has to be disabled when the select input (eigentuemer3) is filled. - Issue:
{{ eigentuemer3.value !== '' || eigentuemer3.value !== null}}
As you see I have a normal syntax for the button but as you can see in the screenshot below the value is shown as any and because of that the syntax I tried isn´t working. - Retool version & hosting setup (Docker, K8s, cloud provider, etc.):
Version 3.196.22 - Error message(s) or screenshots:
- What I’ve tried so far:
I tried code as followed:
{{ eigentuemer3.value !== '' || eigentuemer3.value !== null || eigentuemer3.value === any}}
OR
{{ eigentuemer3.value !== '' || eigentuemer3.value !== null || eigentuemer3.value === 'any'}}
OR
{{ eigentuemer3.value !== '' || eigentuemer3.value !== null || eigentuemer3.value.any()}}
None of these worked so far and I would really appreciate any input.

