How to remove the attributes in the User Entity

Hi
I successfully extended the User Entity and i want to remove the default fields in the User edit screen. I want to extend the base screen of the user but i want to remove the First name, Middle Name, Last Name, Position and Masked IP fields… Please help me regarding this…

Hi,

If you create a new editor for the extended User entity, you can simply remove unnecessary fields from the fieldGroup in the edit screen descriptor, for example:

<fieldGroup id="fieldGroup"
                    datasource="extUserDs">
        <column width="250px">
               <field property="login"/>
                <field property="name"/>
                <field property="group"/>
                <field property="newAttr"/>
        </column>
</fieldGroup>

If you extend the base screen, you can set visible=false for the fields you don’t need.