How can one edit/remove the tabs from a project card, within My Projects Space(WorkBench) ?

Oscar6
Tera Expert

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

1 ACCEPTED SOLUTION

Oscar6
Tera Expert

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 

 

 

View solution in original post

3 REPLIES 3

Mark Stanger
Giga Sage

There's no way to remove these to my knowledge.

Please mark this response correct if I've answered your question.  Thanks!

Oscar6
Tera Expert

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 

 

 

Shreya2
Giga Contributor

Hello Oscar, 

Can we edit the content of the pmview, for example, if I would want to remove only the "Financials Summary" from the "financials" view and not the entire financials tab? 

find_real_file.png