Can Action ID's be Passed into Stratum.Viewer via URL's?

Yes. You can set up a URL that defines which view and corresponding action to run. The properties defined for the action, such as the action parameters values, will influence what data shows up when the view opens in the browser. Here is an example URL that will run action 12 for view 100 of the Stratum.Viewer instance server-xyz:60500. The text Default.aspx will cause the top frame and left panel to display in the browser along with the view.

http://server-xyz:60500/Default.aspx?ViewId=100&ActionId=12

You could hide the top frame and left panel by switching the Default.aspx text for ViewWindow.aspx as follows:

http://server-xyz:60500/ViewWindow.aspx?ViewId=100&ActionId=12

Additional types of syntax are available to control aspects of the grid display, including the display of the toolbar, name of the view and image above the grid, View Filter section, and view explorer. That syntax is summarized in the table at the end of this topic.

A few things to know about URL’s that include Action ID’s:

Note: For information about passing parameters into views via URL’s, see Passing Parameters into Views via URL's.

Syntax to Show or Hide Parts of the View Interface

Item

Format & Values

Top frame and left panel

To hide them, use ViewWindow.aspx in the query string

To show them, use Default.aspx in the query string

Grid toolbar

 

To hide it, use IsHideToolbar=True

To display it, either exclude this syntax from the URL all together or use IsHideToolbar=False

View name above grid

To hide it, use IsHideViewName=True

To display it, either exclude this syntax from the URL all together or use IsHideViewName=False

View image above grid

 

To hide it, use IsHideViewImage=True

To display it, either exclude this syntax from the URL all together or use IsHideViewImage=False

View Filter section

 

To hide it, use IsHideViewFilter=True

To display it, either exclude this syntax from the URL all together or use IsHideViewFilter=False

View explorer

 

To hide it, use IsHideExplorer=True

To display it, either exclude this syntax from the URL all together or use IsHideExplorer=False