Configuring the Web Server web.config File - Collaboration - Foundation 23.1 - Foundation 23.1 - Ready - OnBase - Premier - external - Standard - Premier - Standard

Collaboration

Platform
OnBase
Product
Collaboration
Release
Foundation 23.1
License
Premier
Standard

The Collaboration module uses the Web Server's web.config file to control specific settings:

  • Collaboration Context button

  • My Workspaces Control Bar

  • Workspace Retrieval Control Bar

To activate any of the above items, ensure that the enabled switch is set to true. See example below:

<OutlookBar> <ControlDef> <Context>
<ContextInfo> <name><![CDATA[Collaboration]]></name> <displayName><![CDATA[Collaboration]]></displayName> <displayOrder>4</displayOrder> <icon><![CDATA[CollaborationUp.gif]]></icon> <enabled> true </enabled> <!--Turns Collaboration Context Button on-off--> </ContextInfo>
<ControlBar> <name><![CDATA[AllWorkspaces]]></name> <displayName><![CDATA[My Workspaces]]></displayName> <path><![CDATA[./Collaboration/AllWorkspaces.aspx]]></path> <icon><![CDATA[AllWorkspaces.gif]]></icon> <enabled> true </enabled> <!--Turns AllWorkspaces Control Bar on-off--> </ControlBar>
<ControlBar> <name><![CDATA[FindWorkspace]]></name> <displayName><![CDATA[Workspace Retrieval]]></displayName> <path><![CDATA[./Collaboration/FindWorkspace.aspx]]></path> <icon><![CDATA[SearchWorkspaces.gif]]></icon> <enabled> true </enabled> <!--Turns FindWorkspace Control Bar on-off--> </ControlBar>
</Context>