How to display 100 results per page in datatable but use browser scroll not datatable scroll

I want to display 100 results on a page. When i set this with various height settings if it goes below my browser bottom there are no scroll bars in my browser, only the datatable. I want to have no scroll bars in the datatable and just allow the user to scroll in the browser to the bottom of the 100 results where they can then click to the next page of results if they want. Is this possible? If so what combination of settings must I use? Thanks in advance!

I have figured out that my pager script is when it breaks and no longer allows me to scroll down in the browser.

var pager = {
view:“pager”,
id:“pager”,
size:100,
group:5
};

I will research into this more and see if I can figure out why.

I updated my pager script to the following and now i can scroll down the page.

var pager = {
id:“pager”,
view:“pager”,
template:"{common.prev()} {common.pages()} {common.next()}",
container:“paging_here”,
size:100,
group:5
};