How to hide or disable save as dropdown options

Hi,

I want to hide/disable filter options which are not required while saving filter configuration.

I want to hide Save and Save As option from selection if possible can this changes be applicable for only one screen if not how to apply this changes for all screen.

I tried searching dropdown values in Jmix-ui but was unable to find.

filtersaveAs

You should specify all required actions as described in the docs:

<filter id="filter" dataLoader="usersDl">
    <properties include=".*"/>
    <actions>
        <action id="saveWithValues" type="filter_saveWithValues"/>
        <action id="edit" type="filter_edit"/>
        ...
    </actions>
</filter>
1 Like