Current app selections
An essential part of the Qlik experience is filtering data through selections. Most charts support selections in the data they render, which then filters out data and affect other charts connected to the same data model.
Current app selections bar
The current app selections bar shows you the currently active selections in the
specified app. To render this bar you first need an HTMLElement
:
<div class="curr-selections"></div>
You can then mount
the selections UI into that element:
const n = embed(enigmaApp);
(await n.selections()).mount(document.querySelector(".curr-selections"));
Without any selections it should like this:
As you start applying selections in the various charts, the UI is updated to reflect the current state:
Multiple bars
If you are connected to multiple apps, you can show the current selections in each one by mounting the bar into different elements:
(await embed(enigmaApp).selections()).mount(
document.querySelector(".curr-selections")
);
(await embed(anotherApp, { context: { theme: "dark" } }).selections()).mount(
document.querySelector(".another-curr-selections")
);