Hello,
I would like to Hide tab from view screen. Inside this tab there are some custom fields.
Attached pic with the tab.
Any idea how can I do it?
Daniel
Was anyone able to find a solution? With script runenr i can olny hide tabs with:
hideTab()
in transition screens, but not in the issue view.
Best Regards
Manuel
Hi @Alexey Matveev , @Leo
I prefer doing it with Announcement Banner.
This is the 'F12' lines, I need to hide the 'CRM' tab for loggen in user 'dmor':
var titleUser = document.getElementByClassName('hidden parameters');
var length= titleUser.length;
var i=0;
while (i<length)
{
if (titleUser[i].children().value=='dmor')
{
AJS.$('.tabs-menu .menu-item #aui-uid-4').parent().attr("style","visibility: hidden")
}
i++;
}
The hidden line (marked) worked itself, But with the condition it didn't work..
Can you see the problem?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You could do it with the Power Scripts add-on:
You could create a Live field with a code like this:
lfHideTab("my tab");
You can find more info about Live Fields here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.