Changing the Custom Footer Menu

The Custom Footer Menu options can be changed within the versaSRS Global Settings.

Within the versaSRS Global Settings locate the setting called CustomFooterMenuXML.

Each footer menu link is defined by the <footerMenu> xml as shown in the above image. The default menu options link to Views within versaSRS, however custom links can be added to external sites as well.

An external link can be added as per the following example which will launch versasrs.com in a new browser window:

Example

<FooterMenu> <MenuVisibility>Visible</MenuVisibility> <MenuText>versaSRS</MenuText> <MenuAction>javascript:window.open('http://www.versasrs.com/','_blank')</MenuAction> <MenuTarget></MenuTarget> <MenuIcon></MenuIcon> <MenuWidth>160</MenuWidth> </FooterMenu>

The link can also be loaded into the frames within versaSRS by changing _blank (shown in above example) to the name of the frame that should be the target. The below example would open the versasrs.com link in the bottom frame of versaSRS.

Example

<FooterMenu> <MenuVisibility>Visible</MenuVisibility> <MenuText>versaSRS</MenuText> <MenuAction>javascript:window.open('http://www.versasrs.com/','rightFrame2')</MenuAction> <MenuTarget></MenuTarget> <MenuIcon></MenuIcon> <MenuWidth>160</MenuWidth> </FooterMenu>

The following frame names can be used as the target:

Name Description
leftFrame Will load the link the left frame in versaSRS (where the Team and Skillgroups are listed)
rightFrameReading Will load the link the right frame (reading frame)
rightFrame2 Will load the link in the bottom frame (Hot News frame)

The main versaSRS panel (where the Cases are displayed) can also be targeted as per the below example:

Example

<FooterMenu> <MenuVisibility>Visible</MenuVisibility> <MenuText>versaSRS</MenuText> <MenuAction>javascript:cmdOpenWin('http://www.versasrs.com/')</MenuAction> <MenuTarget></MenuTarget> <MenuIcon></MenuIcon> <MenuWidth>160</MenuWidth> </FooterMenu>