MicroStrategy ONE

Setting properties for the Filter Panel

The following parameter and value are used to set docking properties for the Filter panel and specify whether the Filter panel can be closed. You do not need to explicitly set default properties. These settings only target the web view; the mobile view ignores these settings.

This is a group-level UI setting. It can be overridden by a feature-level setting.

Example of ui.filter before encoding:

Copy
ui.filter={"dockedPosition":"left","canClose":false,"dockChangeable":false,"isDocked": true}

Example of ui.filter after encoding:

Copy
ui.filter=%7B%22dockedPosition%22%3A%22left%22%2C%22canClose%22%3A%20false%2C%22dockChangeable%22%3A%20false%2C%22isDocked%22%3A%20true%7D

If ui.navigation.filter = "false", the Filter panel is always be docked when it is open.

Parameter Setting Level Value Target Component Behavior
ui.filter

Group

dockedPosition

Only "left" or "right"(default) is accepted as the position of the docked panel.

 

canClose

Boolean of true (default) or false. If set to false, the panel is forced to appear and cannot be closed. If set to true, the panel does not appear by default and it can be closed using the "X".

 

dockChangeable

Boolean of true(default) or false. If set to false, the dock/pin button is hidden. The docked status of this panel is controlled by isDocked.

 

isDocked

Boolean of true or false (default). This configures whether the panel is docked.

Filter panel

Specifies properties for the Filter panel, such as docking properties and whether it can be closed.

The sample URLs below show how to set different properties for the Filter panel.

Sample URL for setting the docked position of the Filter panel to left

http(s)://webserver:port/webapp/app/<projectId>/<dashboardId>/[<pagekey?ui.filter=%7B%22dockedPosition%22%3A%22left%22%7D

Sample URL for specifying that the docked position of the Filter panel cannot be changed

http(s)://webserver:port/webapp/app/<projectId>/<dashboardId>/[<pagekey>]?ui.filter=%7B%22dockChangeable%22%3Afalse%7D

Sample URL for specifying that the Filter panel is docked

http(s)://webserver:port/webapp/app/<projectId>/<dashboardId>/[<pagekey>]?ui.filter=%7B%22isDocked%22%3A%20true%7D

Sample URL for specifying that the Filter panel cannot be closed

http(s)://webserver:port/webapp/app/<projectId>/<dashboardId>/[<pagekey>]?ui.filter=%7B%22canClose%22%3A%20false%7D