Closes the Quickview
modal box.
Return the debug info about this component.
Disable the component. Normally this means that the component will not execute handlers for the framework events (query events, for example). Components are enabled by default on creation.
Enable the component. Normally this means that the component will execute handlers for the framework events (query events, for example). Components are enabled by default on creation.
Return the bindings, or environment, for the current component.
Opens the Quickview
modal box.
Get the bound component to the given HTMLElement. Throws an assert if the HTMLElement has no component bound, unless using the noThrow argument.
If there is multiple component bound to the current HTMLElement, you must specify the component class.
HTMLElement for which to get the bound component.
Optional component class. If the HTMLElement has multiple components bound, you must specify which one you are targeting.
Boolean option to tell the method to not throw on error.
Allows the component to bind events and execute them only when it is enabled.
Contains the state of options for different components. Mainly used by ResultLink.
Contains the state of different components (enabled vs disabled). Allows to get/set values. Triggers component state event when modified. Each component can listen to those events.
A disabled component will not participate in the query, or listen to ComponentEvents.
Allows component to log in the dev console.
Contains the singleton that allows to trigger queries.
Contains the state of the query. Allows to get/set values. Trigger query state event when modified. Each component can listen to those events.
A reference to the root HTMLElement (the SearchInterface).
A reference to the root of every component, the SearchInterface.
The static ID that each component needs in order to be identified.
For example, SearchButton -> static ID: SearchButton -> className: CoveoSearchButton
A reference to the Analytics.client.
Specifies whether to always show the Quickview
button/link, even when the index body of an item is empty.
In such cases, the contentTemplate
defines what appears in the
Quickview
modal box. Consequently, if there is no quickview for the item, you MUST specify a custom
contentTemplate
, otherwise the component will throw an error when opened.
Default value is false
.
data-always-show='true' data-always-show='false'
Specifies a custom template to use when displaying content in the Quickview
modal box.
Note:
You can use
CoreHelpers
methods in your content template.
You can specify a previously registered template to use either by referring to its HTML id
attribute or to a
CSS selector (see TemplateCache
).
Example:
id
attribute:<div class="CoveoQuickview" data-template-id="myContentTemplateId"></div>
<div class='CoveoQuickview' data-template-selector=".myContentTemplateSelector"></div>
If you do not specify a custom content template, the component uses its default template.
Specifies whether to enable the loading animation.
See also [loadingAnimation
]{Quickview.options.loadingAnimation}.
Default value is true
.
data-enable-loading-animation='true' data-enable-loading-animation='false'
If enableLoadingAnimation
is true
, specifies a custom
animation to display while the content of the quickview modal window is loading. You can either specify the CSS
selector of the HTML element you wish to display, or the id
of a previously registered template (see
TemplateCache
).
Examples:
<div class="CoveoQuickview" data-loading-animation-selector=".my-loading-animation"></div>
id
of a previously registered template:<div class="CoveoQuickview" data-loading-animation-template-id="my-loading-animation-template"></div>
By default, the loading animation is a Coveo animation, which you can customize with CSS (see Styling the Coveo JavaScript Search Framework).
Specifies whether to display the item date in the Quickview
modal box header.
Default value is true
.
data-show-date='true' data-show-date='false'
Specifies the title that should appear in the Quickview
modal box header.
Default value is undefined, which is equivalent to the empty string.
data-title='foo'
Specifies the emplacement of the tooltip in relation to the Quickview
HTML element.
Example:
Setting this option to
top-start
will make the tooltip appear on top of theQuickview
button, aligned to the left.
Creates a new Quickview
component.
The HTMLElement on which to instantiate the component.
The options for the Quickview
component.
The bindings that the component requires to function normally. If not set, these will be automatically resolved (with a slower execution time).
The result to associate the component with.
The quickview modal box.
The
Quickview
component renders a button/link which the end user can click to open a modal box containing certain information about a result. Most of the time, this component references aQuickviewDocument
in itscontentTemplate
.Notes:
Example:
[ ... ] <script class='result-template' type='text/underscore' id='myContentTemplateId'> <div> <span>This content will be displayed when then end user opens the quickview modal box. It could also include other Coveo component, and use core helpers.</span> <table class="CoveoFieldTable"> <tr data-field="@liboardshorttitle" data-caption="Board" /> <tr data-field="@licategoryshorttitle" data-caption="Category" /> <tr data-field="@sysauthor" data-caption="Author" /> </table> </div> </script> [ ... ] <div class='CoveoResultList'> <script class='result-template' type='text/underscore' id='myResultTemplateId'> [ ... ] <!-- The `myContentTemplateId` template applies when displaying content in the quickview modal box. --> <div class='CoveoQuickview' data-template-id='myContentTemplateId'> <!-- This changes the appearance of the Quickview button itself in the results --> <span>Click here for a quickview</span> </div> </script> [ ... ] <!-- Note that simply including `<div class='CoveoQuickview'></div>` in the markup will be enough most of the time, since the component includes a default template and a default button appearance. -->
This component is a result template component (see Result Templates).