Edit a View URL

The default syntax of a URL copied from the View URL window can optionally be modified to control what parts of Viewer show when someone uses the URL. Here is an example URL, which by default will run the specified view with the left panel hidden and with these parts of the view displayed: the View Filter section, any image associated with the view if applicable, the view name, the view toolbar, and view explorer.

http://server-xyz:55001/ViewWindow.aspx?ViewId=386&IsHideViewFilter=false&IsHideViewImage=false&IsHideViewName=false&IsHideToolbar=false&IsHideExplorer=false

Changing the ‘false’ for any of the ‘IsHide’ items in a URL to ‘true’ will hide the applicable item when someone uses the URL to run a view. For example, changing IsHideExplorer=false to =true would cause view explorer to be hidden from view then the view is run from this URL. See the table below for a description of all parameters of a URL that can be modified.

See also 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