- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2018 09:17 AM
How can one edit/remove the tabs from a project card, within My Projects Space(WorkBench) ?
In Project Workspace, from a card, there are 6 tabs. Analytics, Details, Planning, Resources, Financials, Status Report.
How can one remove/edit a tab? In this case I would like to remove Resources and Financials.
thank you,
Oscar
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2018 01:01 PM
After a lot of research we finally were able to figure this out, as its not an OOB modification.
This could be completed by modifying the UI Page “$pmview”and adding the below script to the Client Script.
addLoadEvent(function(){
$j('*[data-view="resources"]').find("a").css({"display": "none"});
$j('*[data-view="financials"]').find("a").css({"display": "none"});
});
-Oscar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2018 09:52 AM
There's no way to remove these to my knowledge.
Please mark this response correct if I've answered your question. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2018 01:01 PM
After a lot of research we finally were able to figure this out, as its not an OOB modification.
This could be completed by modifying the UI Page “$pmview”and adding the below script to the Client Script.
addLoadEvent(function(){
$j('*[data-view="resources"]').find("a").css({"display": "none"});
$j('*[data-view="financials"]').find("a").css({"display": "none"});
});
-Oscar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2019 08:52 AM