Facets - whitelist (auto-completion)

Description

This option specifies the facets which will provide the values for search based auto-completion.

The value is a comma separated java script array of facets names.

this is an experimental feature and should be used with caution.

Default value

Display category values from all facets

facets: {
    whitelist: [],
}

Examples

Display category values only from 'Date' facet

facets: {
    whitelist: ['Date'],
}

Display category values only from 'Date' and 'Author' facets.

facets: {
    whitelist: ['Date', 'Author'],
}