Shiny mainPanel locking

I am trying to figure out if there is a way to freeze the mainPanel that displays table results.

As you scroll to fill out questions on the sidebar I want the table to scroll with it so you can contently seen the table results instead of having to scroll up at the end.

Is this possible in Shiny?

Yes, you would just supply the appropriate CSS code to make this happen. If you are using the sidebarLayout form, you can add a scroll option to the sidebarPanel to start, something like:

sidebarPanel(id = "my_panel, style = "overflow-y:scroll;position:relative;max-height:600px",...

You may have to tweak based on your specific app, but the concept is the same

It worked perfectly, thanks!