Question
Capgemini America Inc
US
Last activity: 26 Oct 2018 4:18 EDT
Scroll bar(vertical) missing after Pega version applciation update from 7.2.1 to 7.3.1
We have updated the Pega version from 7.2.1 to 7.3.1 for my application after which the vertical Scroll bar are missing when user launches a portal. When I run the primary section referenced in the harness of the user portal standalone, I am able to see the scroll bar but when I launch the user portal, the vertical Scroll bars are missing. Any suggestions on this?
***Edited by Moderator Marissa to update categories***
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Accepted Solution
Capgemini America Inc
US
We have applied the following CSS to resolve the issue:
.dc-main {
display: block;
flex: 900 100%;
overflow-y: auto;
}
Pegasystems Inc.
US
Hi,
Can you please try the below code in userworkform.
<style>
div[node_name="SectionName"]{
overflow-y:scroll !important;
}
</style>
Please share us the screenshots of the section at runtime in case the above solution does not work for you.
Regards,
Rachit
Capgemini America Inc
US
Thanks for your reply Rachit. I will try the suggested option and let you know if its helping in resolving the issue.
In addition to above, post my initial analysis on this issue, I see that a dynamic container is being used to launch a harness from a primary section(referenced in the portal). When I run/preview this section and harness standalone, I am able to observe the scrollbar but not at run time so I assume there could be an issue with dynamic container post Pega application update . Do we have any known issues with dynamic container at Pega 7.3 or with respect to Pega application update from 7.2. to 7.3.1 ?
Capgemini America Inc
US
Hello Rachit,
Just to elaborate, Please find the breadcrumb of the portal defined in my application:
New User Portal > Harness(used screen layout to reference section) > Section to have Scroll Bar to load user worklist (used dynamic container to reference a harness) > Harness to have Scroll Bar to load user worklist > Container > Section
I have tried referring the provided code in the userworkform of the application by giving the section name value(as shown below) but I don't see any scroll bar being reflected. Please find the user portal attachments reflected at run time with out any scroll bar.
<style>
div[node_name="PortalContent"]{
overflow-y:scroll !important;
}
< /style>
-
Rajeshwar Reddy
Accepted Solution
Capgemini America Inc
US
We have applied the following CSS to resolve the issue:
.dc-main {
display: block;
flex: 900 100%;
overflow-y: auto;
}
Maantic Inc
US
@HaritejaA6089, can you provide more information, exactly where you added the CSS code.
CollabPartnerz
IN
I have also tried this code it got worked for me.
Maantic Inc
US
where you added the CSS code, please provider details.
BankofSingapore
SG
Not Working
Wells Fargo N.A.
US
Just to echo Hari's question and concern ... is something up with either the Screen Layout or the usage of a Screen Layout with a Section rule that calls a Dynamic Container containing a Harness rule in 7.3.1? It is odd that this stopped rendering a scroll bar after the upgrade but works fine in 7.2.1. Odder still that by removing the Dynamic Container from the equation we can get the scroll bar back (but of course would have to refactor the UI to support this).