Remove lookup action in lookuppickerfield which is configure as field in fieldgroup

I want to remove lookup action

lookupfield

Provided that you have a fieldGroup like this:

        <fieldGroup id="fieldGroup"
                    datasource="orderDs">
            <column width="250px">
                <field optionsDatasource="customersDs"
                       property="customer"/>
            </column>
        </fieldGroup>

you should inject the component into controller and remove the action:

@Named("fieldGroup.customer")
private LookupPickerField customerField;

@Override
public void init(Map<String, Object> params) {
    customerField.removeAction(PickerField.LookupAction.NAME);
}

Regards,
Konstantin

Thank you,Its working fine