MicroStrategy ONE

Change the Selector on the Current Layout in iOS

The following parameters and values are used to change the attribute or attribute element that should be used as a selector to determine the content that is displayed on the current layout in a document or dashboard.

Parameter Value

evt

2048084

sKey

Selector control key: Key of the attribute or attribute element to use as the selector

You use either sKey or sName to specify the selector, but not both.

To get the value for sKey, open the document or dashboard in the Chrome browser, highlight the selector, click F12 to open developer mode, and get the value of the controller in the inspector.

sName

Selector control name: Name of the attribute or attribute element to use as the selector

You use either sKey or sName to specify the selector, but not both.

To get the value for sName, open the document in Design mode, right-click the selector and choose Properties and Formatting from the context menu, navigate to General -> Name, and get the value of Name. 

sIndex

Selector index: Index of the attribute or attribute element to use as the selector

sIndex means the element list starting from 0

You can specify single or multiple elements. To specify multiple elements, separate the values with a pipe (‘|)’. For example, "sIndex=1|2|3". "0" means uses all of the elements.

The sample URLs below show how to change the attribute or attribute element that should be used as a selector for the content displayed on the current layout in a document from inside your custom mobile application. MicroStrategyMobileServer is the name of your MicroStrategy Mobile Server.

Sample URL for displaying a specific document layout in a .NET environment

Copy
Main.aspx?evt=2048084&sName=Selector44&sIndex=0

Sample URL for displaying a specific document layout in a J2EE environment

Copy
mstrweb?evt=2048084&sName=Selector44&sIndex=0

When you execute a document and specify the selector from outside your custom mobile application, use the syntax shown below:

Sample URL for displaying a specific document layout from outside MicroStrategy Mobile

Copy
mstr://?evt=2048084&sName=Selector44&sIndex=0