Overview

This class represents a search being performed by the user. It allows you to get more information about the context of the search, as well as narrowing down the search results with additional conditions.

Example

This search handler adds an extra query condition to the SearchContext, in order to only show Contacts related to the selected Account.

global class MyContactSearch extends B25.SearchHandler {
    global override B25.SearchResultCollection getSearchResults(B25.SearchContext searchContext) {
        Id accountId = searchContext.getForm().getReservation().B25__Account__c;
        if (accountId != null) {
            searchContext.addCondition('AND Account = \'' + accountId + '\'');
        }
        return searchContext.getDefaultResults();
    }
}
CODE

Methods

getSearchTerm

String getSearchTerm()
CODE

Returns the search term that the user has typed.

Return value: String


getDefaultResults

B25.SearchResultCollection getDefaultResults()
CODE

Returns a Collection wrapping the results that would be generated by GoMeddo, modified by any conditions defined (also see addCondition).

To access the individual results, call getResults() on the Collection.

Return value: B25.SearchResult.Collection


getForm

B25.Form getForm()
CODE

Returns the Form object that the user has performed the search on. This can be useful to get more information about the other fields that have been filled in on the reservation, using the Form.getReservation method.

Return value: B25.Form


getConditions

List<String> getConditions()
CODE

Returns the conditions that have already been defined. These will narrow down the search results returned by getDefaultResults(). As this is a reference to the actual list, you can still manipulate this list (such as adding or removing entries) before calling getDefaultResults().

Return value: List<String>


addCondition

void addCondition(String condition)
CODE

Adds a condition to narrow down the search results returned by getDefaultResults(). Functionally identical to calling getConditions().add(condition).

Dynamic references to parameters (i.e. ‘Account = :accountId’) will not work. Make sure to escape ids in the following way:

addCondition('Account = \'' + accountId + '\'');
CODE

Parameters:

Name

Type

Description

condition

String

The condition that you want to add.


getSearchFields

List<String> getSearchFields()
CODE

Returns the fields that will be queried for the search term.

Return value: List<String>


addSearchField

void addSearchField(String fieldName)
CODE

Adds a field to be queried for the search term. For example, if you also want to search for contacts by phone number, do the following:

searchContext.addSearchField('HomePhone');
searchContext.addSearchField('MobilePhone');
CODE

If the user performing the search has no access to any of these fields, they are ignored. So if the user has no access to the MobilePhone field in the example above, only the HomePhone field is searched.

You can also search for fields on related records. For example, if you also want to search for contacts by account name, do the following:

searchContext.addSearchField('Account.Name');
CODE

Parameters:

Name

Type

Description

fieldName

String

The API name of a field that you want to be searched.


setLabelTemplate

void setLabelTemplate(String template, List<String> mergeFields)
CODE

This method lets you define what the label of each search result should be, based on one or more merge fields. For example, if you want to display your contact labels like this: LastName, FirstName (AccountName), you would do the following:

searchContext.setLabelTemplate('{0}, {1} ({2})', new List<String>{'LastName', 'FirstName', 'Account.Name'});
CODE

The above would result in an output like this:

If the user performing the search has no access to any of these fields, they are replaced with an empty string.

By default (so if you would never call this method) only the record name is displayed as the label. This is the same as doing the following:

searchContext.setLabelTemplate('{0}', new List<String>{'Name'});
CODE

Parameters:

Name

Type

Description

template

String

A string containing numbered placeholders which will be replaced with actual values in the final result.

mergeFields

List<String>

An ordered list of merge field API names. These will replace the matching placeholders in the template with each record’s actual values.


setMetaTemplate

void setMetaTemplate(String template, List<String> mergeFields)
CODE

Similar to the above method setLabelTemplate, except this method lets you define the meta text instead of the label. The meta text is displayed under the label, and can provide more information about a record. For example, you could use it to display a contacts phone number:

searchContext.setMetaTemplate('Mobile: {0}', new List<String>{'MobilePhone'});
CODE

The above would result in an output like this:

If the user performing the search has no access to any of these fields, they are replaced with an empty string.

Parameters:

Name

Type

Description

template

String

A string containing numbered placeholders which will be replaced with actual values in the final result.

mergeFields

List<String>

An ordered list of merge field API names. These will replace the matching placeholders in the template with each record’s actual values.


setDefaultIcon

void setDefaultIcon(String icon)
CODE

Sets the icons for the results generated through this context. You can use icons from this page: https://www.lightningdesignsystem.com/icons/ , except for the icons in the Action category. Reference icons by combining the category and the icon name, with a colon in between. For example, 'standard:contact' will give you the contact icon from the Standard category.

Return value: B25.SearchResult

searchContext.setDefaultIcon('utility:activity')
CODE

Parameters:

Name

Type

Description

icon

String

The name of the icon.