Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to Horizontal Scroll Reports in SuiteCRM 8 #533

Open
pstevens71 opened this issue Jul 25, 2024 · 2 comments
Open

Unable to Horizontal Scroll Reports in SuiteCRM 8 #533

pstevens71 opened this issue Jul 25, 2024 · 2 comments
Labels
Area: Reports Issues & PRs related to all things regarding Reports Priority:Important Issues & PRs that are important; broken functions; errors; there are workarounds Severity: Moderate Minor Impact Type: Bug Something isn't working

Comments

@pstevens71
Copy link

pstevens71 commented Jul 25, 2024

Issue

When you create a report in the reports module in SuiteCRM 8 that is wider than the screen, you can’t horizontal scroll to the right in the browser and see the report with the bottom scroll bar (sorry I can’t add a screen shot as it’ live data).

In SuiteCRM 7 if you create a report wider than the screen you can horizontal scroll to the right and see the report.

image

Possible Fix

Just needs:

.list-view-rounded-corners { overflow-x: scroll; }
I just don't know how to add CSS in Ver 8

Steps to Reproduce the Issue

1.Create a report with a fair number of columns
2.View the report
3.You will see the columns go off the screen to the right
4. There is no way to horizontal scroll to see the report.
...

Context

This kind of is a problem as many reports often have more columns that fit on the screen.

Version

8.6.1

What browser are you currently using?

Chrome

Browser Version

Chrome and Firefox tested

Environment Information

PHP 8.2

Operating System and Version

Centos 7

@pstevens71 pstevens71 added the Type: Bug Something isn't working label Jul 25, 2024
@johnM2401 johnM2401 added Priority:Important Issues & PRs that are important; broken functions; errors; there are workarounds Area: Reports Issues & PRs related to all things regarding Reports Severity: Moderate Minor Impact labels Jul 31, 2024
@shubham-pawar
Copy link

Litterally just needs:

.list-view-rounded-corners {
overflow-x: scroll;
}
I just don’t know where to add CSS in SuiteCRM 8 - by paul

@shubham-pawar
Copy link

Update by Paul:

I found the right file:

\public\legacy\themes\suite8\css\Dawn\style.css

If you change:

#detailpanel_report .list-view-rounded-corners{margin:0px}

to this:

#detailpanel_report .list-view-rounded-corners{margin:0px;overflow-x:scroll;}

Then do a R&R it works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: Reports Issues & PRs related to all things regarding Reports Priority:Important Issues & PRs that are important; broken functions; errors; there are workarounds Severity: Moderate Minor Impact Type: Bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants