Cireson - My Work - Hide Approval / Activities / Manual Activities
Dear All,
Is there anyway to hide:
My Work - Hide Approval / Activities / Manual Activities (all three of theses)?
Thanks
Daniel
Best Answers
-
Geoff_Ross Cireson Consultant O.G.
Hi Daniel,
If you are hiding those three, you might as well hide them all and then users will just get the default of 'Work Item' anyway. Here's some CSS, not fully tested so make sure it doesn't hide something else on another page.
.nav-pills > li { display: none; }
There's a basic introduction to CSS styling in the Cireson eLearning course of the Service Manager Portal.
Check out learning.cireson.com
Geoff
5 -
Shane_White Cireson Support Super IT Monkey ✭✭✭✭✭
I agree with Geoff in the fact that if you only have one tab left you might as well hide it, can you try the below code for me and let me know if this works better for you, it will hide all the ones you have asked and the my work items, and it shouldn't affect the incident forms!
[data-subtype="myworkitems"] {
display: none !important;
}
[data-subtype="myapprovals"] {
display: none !important;
}
[data-subtype="myactivities"] {
display: none !important;
}
[data-subtype="mymanualactivities"] {
display: none !important;
}
Thanks,
Shane
5
Answers
Hi Daniel,
If you are hiding those three, you might as well hide them all and then users will just get the default of 'Work Item' anyway. Here's some CSS, not fully tested so make sure it doesn't hide something else on another page.
There's a basic introduction to CSS styling in the Cireson eLearning course of the Service Manager Portal.
Check out learning.cireson.com
Geoff
That worked really well!
Thanks you
Daniel
Actually that removed all the tabs in the incident form now.
I have had to revert.
Daniel
I definitely only want to remove just these three items.
Thanks
Daniel
Why leave 1 tab? If there's only one option, why present it?
We need other tabs present in the incident form i.e history etc.
If i use your code it removed all tabs.
I only want to remove these on the grid view:
Approval / Activities / Manual Activities
Thanks
Daniel
Hi @CaterhamITSupport
I agree with Geoff in the fact that if you only have one tab left you might as well hide it, can you try the below code for me and let me know if this works better for you, it will hide all the ones you have asked and the my work items, and it shouldn't affect the incident forms!
[data-subtype="myworkitems"] {
display: none !important;
}
[data-subtype="myapprovals"] {
display: none !important;
}
[data-subtype="myactivities"] {
display: none !important;
}
[data-subtype="mymanualactivities"] {
display: none !important;
}
Thanks,
Shane
Hi Shane,
That worked for me!
Really appreciate the help.
Kind Regards
Daniel