I have the following bit of configuration on a grid:
<filterable enabled="true" extra="true">
<operators>
<date isnotnull="Is set" isnull="Is not set" lt="Before" gte="On or after" />
</operators>
</filterable>
which results in the filter menu in the attached image. The problem is there is no obvious way for a user to select a single criteria. The And/Or dropdown doesn't have a "Just The Above" option. From looking at what is sent to the server side in the debugger, I found that if the user picks a second condition which requires an argument (such as equal, not equal, before, after, etc.) but doesn't provide the argument then the filter menu logic will only include the top condition. But that's not particularly intuitive to users. And given that the first condition in the list on my date columns (and hence the default) is "Is Not Set", then users would have to explicitly change the bottom condition in order to only have a single condition.