customization for the search from the list in hybris backoffice

206 Views Asked by At

I am trying to customize the search results for the search from list option for B2BUnit in usergroups. By default it searches using id and name. I want to add a new attribute through which I can see the results directly.

I tried to add the values in the advance search option but it does not change the way the results are displayed directly.

I want the results to be displayed without using advance search. Image attached at the link 1

1

There are 1 best solutions below

0
On

In this case you probably need to define fields you'd like to use in Advance Search explicitly for your type (B2BUnit)

Like this:

<context type="Product" component="advanced-search">
    <as:advanced-search xmlns:as="http://www.hybris.com/cockpitng/config/advancedsearch" connection-operator="AND">
        <as:field-list disable-attributes-comparator="false" disable-subtypes-checkbox="false">
           <!-- ... your other attributes -->
           <as:field name="usergroups" operator="contains" selected="true"/>
        </as:field-list>
    </as:advanced-search>
</context>

See this article for details.