Multiple selection of workshop filters

I have received a request from a user to not display the “Include/Exclude” field in the multi-selection of the workshop filter as it is confusing to the user.

image

2 Likes

I had the same user request!

1 Like

Unfortunately, i think it is not possible. The workaround is either:

  • You put the available values in an array variable (using Array variable > String array < Object Set Aggregation < Unique values). Then you use a String selector > Dynamic to surface those values to user so that he can select. And then, you use the output of the String selector to actually filter your Object Set. Downside: you need to do this for every property you want to filter and there should be less than 500 unique values in your property (that’s the max an array can contain in Workshop) otherwise it will take the first 500 values
  • Otherwise, you can turn your filter list widget into “keywork search”. But you lose the auto-completion and the user knowing what the values are in that property.
1 Like

Thank you for your detailed reply!