Hi,
We used the instructions of the following KB https://knowledge.opentext.com/knowledge/cs.dll?func=ll&objId=62409677&objAction=View to created a tabbed layout for a business workspace in 16.2.0. We now created a new 16.2.2 environment and are not able to use the same instructions to create the tabbed layout. How would we create a tabbed layout in 16.2.2?
Cheers,
Markus
Do you need it for a particular workspace type? You can use the hypelink on the workspace type administration page. It is the recommended way how to create a perspective specific to it.
Hi Ferdinand,
Not sure which hyperlink you are referring to as all the options I can find under Workspace administration only show which perspectives have been assign for a particular Workspace.
In our case we want to create a new perspective and we don't have the option to create a tabbed layout which is something we could do with 16.2.0.
There will be an update to the article soon with some changes. The Perspective Manager was converted from a CS Application to a Request Handler in the 16.2.2 update. This changed the URL request for the POST in the examples attached to the KB article . In the mean time you can make the following changes manually to fix the Custom View and WebReport.
WebReport
Change:
<form action="[LL_REPTAG_URLPREFIXFULL /]/open/perspectivemgr" method="POST">to:
<form action="[LL_REPTAG_URLPREFIXFULL /]/perspectivemgr" method="POST">
CustomView
var pmanURL = baseURL+"/open/perspectivemgr";
To:
var pmanURL = baseURL+"/perspectivemgr";
RegardsIan
You can navigate to the workspace type configuration using the menu bar in Classic UI:
Enterprise -> Connected Workspaces -> Workspace Types -> {your workspace type}
The hyperlink is almost at the bottom of the administration page. I attached a sample screenshot.
Awesome thanks Ian, that worked straight away.
Ahh that link Yeah I can open the perspective manager using that link but opening it that way it doesn't even give me the option to change the layout at all. Ian's change did the trick.