Question
KP
US
Last activity: 15 Nov 2019 7:31 EST
How to disable and hide the "currently Open" drop down in the user form
We have a requirement to hide and disable the "Currently Open" drop down (down arrow). That has close all option.
could some one please help how to achieve this?
Thank you.
***Edited by Moderator: Lochan to update platform capability tags***
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Pegasystems Inc.
FR
Hello,
Can you use "Live UI" option to check which MENU rule this is to change it?
KP
US
When i use live ui, its showing the Harness. Its an OOTB thing.
Thank you.
Pegasystems Inc.
US
I don't think this is configurable OOTB, as this is auto generated from the RUF GenerateTabbedSectionLayout.
With that said, perhaps adding some custom JS could rip it out?
KP
US
I have tried with some CSS but not able to achieve it. Could you please let me if you have something in your mind?
<style>
.textIn{
visibility:hidden;
}
.textIn_on, .textIn_disabled, .textIn{
visibility:hidden;
}
</style>
hank you.
Pegasystems Inc.
IN
HI Kiran,
Try to find out ,how this arrow was generated ,like is is from some menu or from tha tabbed layout or some other configuration.
The secon thign is just (be precise here ) right click on the icon and from the options select "inspect". It will open the devloper tools of the browser .
Try to modify the css form here or share the screenshot of this. We will see by screenshot if we could able to help you .
KP
US
Hello,
I have attached the screenshot with inspect element, please let me know if this help?
Thank you.
Pegasystems Inc.
IN
Hi ,
Please check with below code
<style>
.headerTabbed a#TABANCHOR span#TABSPAN SPAN{display:none;}
</style>
KP
US
BPM Company
NL
u should use:
<style>
.tsb-menu{
display: none !important;
}
</style>
KP
US
I have tried this but no luck.
Thank you.
BPM Company
NL
In the UserWorkForm? and with !important ?
KP
US
Tried with both.
Thank you,
BPM Company
NL
That's weird. On 7.3.1 it works (the snippet I provided above).
What version do you use?
KP
US
7.2.1
BPM Company
NL
then the only thing I could advice you is to focus on updating that element (not span, you highlighted)
BPM Company
NL
Plus, be aware, that by hiding this arrow from User's portal, you will also hide it from Developer's portal - they use the same implementation rules