gapi.cloudsearch.widget.resultscontainer.Builder
Results container builder. Use a builder and do not directly call the container constructor.
Constructor
Builder
new Builder()
Example
// Builds a results container.
function onload() {
  gapi.client.init({
    'apiKey': '<your api key>',
    'clientId': '<your client id>',
    // Add additional scopes if needed
    'scope': 'https://www.googleapis.com/auth/cloud_search.query',
    'hosted_domain': '<your G Suite domain>',
  });
  const resultscontainer =
      new gapi.cloudsearch.widget.resultscontainer.Builder()
        .setSearchResultsContainerElement(document.getElementById('search_result'))
        .build();
  const searchBox = new gapi.cloudsearch.widget.searchbox.Builder()
    .setInput(document.getElementById('input'))
    .setAnchor(document.getElementById('input').parentElement)
    .setResultsContainer(resultscontainer);
    .build();
}
gapi.load('client:cloudsearch-widget', onload);Methods
build
build() returns ResultsContainer
Builds the results container.
- Returns
- 
                  non-null ResultsContainer
setAdapter
setAdapter(adapter) returns Builder
Optional. Sets the adapter to customize the user experience.
| Parameter | |
|---|---|
| adapter | Value must not be null. | 
- Returns
- 
                  non-null Builderthis
setFacetResultsContainerElement
setFacetResultsContainerElement(facetResultsContainerElement) returns Builder
Sets the container Element for facet results. Must be a valid Element that can contain child nodes.
| Parameter | |
|---|---|
| facetResultsContainerElement | Element Value must not be null. | 
- Returns
- 
                  non-null Builderthis
setIncludePagination
setIncludePagination(includePagination) returns Builder
Optional. Default true. Includes a default pagination UI in the results container, if set to true.
| Parameter | |
|---|---|
| includePagination | boolean | 
- Returns
- 
                  non-null Builderthis
setResultsContainer
setResultsContainer(resultsContainer) returns Builder
Required. Sets the Element of the container. Must be a valid Element that can contain child nodes.
| Parameter | |
|---|---|
| resultsContainer | Element Value must not be null. | 
- Deprecated
- Returns
- 
                  non-null Builderthis
setSearchApplicationId
setSearchApplicationId(searchApplicationId) returns Builder
Optional. Sets the search application ID to use for requests. Must be prefixed with 'searchapplications/'.
| Parameter | |
|---|---|
| searchApplicationId | string | 
- Returns
- 
                  non-null Builderthis
setSearchResultsContainerElement
setSearchResultsContainerElement(searchResultsContainerElement) returns Builder
Required. Sets the Element of the container. Must be a valid Element that can contain child nodes.
| Parameter | |
|---|---|
| searchResultsContainerElement | Element Value must not be null. | 
- Returns
- 
                  non-null Builderthis