Scrollbar for container containing some RadzenDataGrid components

Hi there, I am new to radzen. I have got some RadzenDataGrid components that I would like to put into a container with a specified height, e.g. 300 px. A scrollbar should appear to be able to scroll from grid to grid. Someone can help? Thanx, Tom.

1 Like

Hi @tom4906,

You can probably use a div with overflow set to scroll:

<div style="height:300px; overflow: scroll">
  <RadzenDataGrid />
  <RadzenDataGrid />
</div>
1 Like

That works pretty nice. Thanx!