Power KPI
  • PowerKPI for Qlik Sense
  • What's new
  • Compatibility
  • Installation
  • Activation
    • Online activation
    • Offline activation
  • Getting started tutorial
    • Preparation steps
    • Template design
    • Measures binding
    • Formatting
    • Hypercubes
    • Visualizations
    • Actions
    • The final result
  • Video tutorial
  • Features overview
  • Properties
    • HyperCubes
    • Data
    • Sorting
    • Add-ons
    • Appearance
    • Visualizations
    • About
  • Visual editor
    • Cells
    • Data
    • Borders
    • Alignment
    • Font
    • Visual editor keyboard shortcuts
  • Actions
    • Apply symbol
    • Apply styles
    • Set Variable
    • Activate View
    • Go to sheet
    • Next sheet
    • Previous sheet
    • Go to story
    • Go to URL
    • Select values
    • Select all
    • Select match
    • Select alternative
    • Select possible
    • Select excluded
    • Toggle select
    • Clear
    • Clear other
    • Clear all
    • Lock
    • Unlock
    • Lock all
    • Unlock all
    • Create bookmark
    • Apply bookmark
    • Remove bookmark
    • Reload
    • Partial reload
    • Export data
    • Value color
    • Mini chart
    • Zoom in
    • Zoom out
    • Sort
    • Alternative dimensions/measures
    • Searchable dimension
    • Select dimension value
    • Show dialog
    • Show tooltip
    • Show sidebar
    • Show popover
  • Demo Apps
  • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. Actions

Show dialog

PreviousSelect dimension valueNextShow tooltip

Last updated 6 years ago

Was this helpful?

The action will open a popup dialog when a user clicks or taps on a particular cell on which the action has been applied.

The "Title" parameter can be used to define a dialog title. It can be formatted using HTML.

A Qlik expression can be used in the “Title” parameter by prefixing it with an equals sign, e.g.:

=if(GetPossibleCount(Year) > 1, '<h1>YTD Sales Analysis<h1>', '<h1>Sales Analysis</h1>')

The "Value" parameter defines the body of a dialog. HTML can be used to format a dialog content.

A Qlik expression can be used in the “Value” parameter by prefixing it with an equals sign and a text content should be enclosed with single quotes.

There is a special macro wich can be used to embedd a master visualization in a dialog:

$object_id{<css styles>}

See video below how to use hidden menu for developers.

For example, to embed a master visualization with appropriate Object ID (e.g., ed67d66d-022a-4755-9f2d-49cf2fda2abf) and set the width and height of the object the following macro can be used in the "Value" parameter:

$ed67d66d-022a-4755-9f2d-49cf2fda2abf{display: inline-block;width: 100%; height: 250px}

In such a way, unlimited number of master visualizations can be embedded in a dialog.

Video: Qlik Sense February 2018 - hidden menu for developers

object_id - is an Object ID. You can get it by using the "Embed chart" context menu or hidden "Developer" menu. As an alternative option, you can use "Single configurator" tool from Qlik Sense Dev Hub. See help for more details.

<css styles> - optional. It can contain valid Cascading Style Sheets (CSS) definitions. See for more details on this topic.

Single configurator
Mozilla Developer Network