List Control Horizontal Scrollbar

Hi,
I have a form with a Child List Control.
The List is long and there are lots of columns we wish to display in the view.
The issue we have is that we have to scroll to the bottom of the list to get to the horizontal scroll bar. And then we have to scroll back up to see the items we were looking at. This just isn't practical.
Is there a way of fixing the scroll bar to the visible screen, or putting a limit of the records shown and then being able to select the next page of list items?

Dear @peter.harrison,
Please, try the following CSS:

.k-grid td, .k-grid .k-grid-content, .k-grid .k-grid-header-locked, .k-grid .k-grid-content-locked {
    transform: rotateX(180deg);
}

This might affect sorting somewhat, but if you sort elements by some specific column, it should still work properly.

That's great Nikita, thank you.
is it possible for it to have the scrollbar in display mode?
At the moment I only see the scrollbar once I edit an child item.

Thanks again!

Dear @peter.harrison,
Should work in either case, can you provide some screenshots to see the difference?