Jmix 2.2.0 Generic filter including multiple properties

Hi, i’m trying to include multiple properties in genericFilter

 <genericFilter id="genericFilter"
                               dataLoader="statiEsterisDl">
                    <properties include="descrizione, residenza"/>
...

Actually i’m able to include only a single property or all properties using “.*”

Thanks

include is a regexp, so the following value should work:

<properties include="descrizione|residenza"/>

Ok thanks, it would be a good idea to add a short suggestion/example in official documentation!