How to change the columns count in filter with JMIX v2.2

Hi Jmix Team,

We are developing an application in JMIX V2.2 and we want to show 3 fields inside the filter for the same row. In previous version there was the option to use

jmix.ui.component.filter-columns-count

I cannot find this option in the UI Properties for V2 and it is displaying 2 fields when zoom at 100%.

Filter_Fields_per_Row

Best Regards.

Hi!

Due to the fact that a formLayout is used to display the fields in the genericFilter component, the same configuration API is used to configure the columns.

You need to use the responsiveSteps setting for the geneticFilter.

        <genericFilter id="genericFilter"
                       dataLoader="tasksDl">
            <properties include=".*"/>
            <responsiveSteps>
                <responsiveStep minWidth="0" columns="3"/>
            </responsiveSteps>
        </genericFilter>

See live demo: FormLayout with ResponsiveSteps

Regards,
Dmitriy