showWikiPage

Displays a wiki page in the right sidebar.

Parameters

  1. pageName - The name of the wikie page (e.g. "function_showWikiPage")

  2. global - Set this to true, if you want to display a page from the global wiki instead of a wiki page from your workspace wiki. The default is global=false.

Example Usages

Global documents

app.showWikiPage("function_setVisibility", true);

Workspace documents

app.showWikiPage("appConfigManual_address", false);
app.showWikiPage("appConfigManual_address"); //2. parameter is false by default, so both lines give the same result

Return Values

Function does not explicitly produce return value.

Last updated