Skip to main content

This content has been archived and is no longer being updated. Links may not function; however, this content may be relevant to outdated versions of the product.

Support Article

On resizing the screen the data is getting merged

SA-27950

Summary



When user resizes the screen of the portal, Screen get distorted and contents in the screen are getting merged.


Error Messages



Not Applicable


Steps to Reproduce



1. Run a report definition.

2. Resize the window. 


screenshot1.bmp


3. Observe the issue.

screenshot2.bmp


 


Root Cause



This is an expected behavior.

The below css has padding left set to 80.px which is required to be changed based on the number of characters:


@media screen and (max-width: 768px) {
    div.default .grid-responsive-default #gridBody_right .gridTable tr.cellCont td.gridCell {
        position:relative;
        height: auto !important;
        padding-left: 80.0px;
    }
}

Resolution



Include the below style in userworkform which will get applied to all the grids.

​Here the padding left is changed to 220.0 px

<style>

@media screen and (max-width: 768px) {
    div.default .grid-responsive-default #gridBody_right .gridTable tr.cellCont td.gridCell {
        position:relative;
        height: auto !important;
        padding-left: 220.0px !important;
    }
}

</style>

 

Published November 8, 2016 - Updated October 8, 2020

Was this useful?

0% found this useful

Have a question? Get answers now.

Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.

Did you find this content helpful?

Want to help us improve this content?

We'd prefer it if you saw us at our best.

Pega Community has detected you are using a browser which may prevent you from experiencing the site as intended. To improve your experience, please update your browser.

Close Deprecation Notice
Contact us