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.
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.
Hi @tom4906,
You can probably use a div
with overflow set to scroll:
<div style="height:300px; overflow: scroll">
<RadzenDataGrid />
<RadzenDataGrid />
</div>
That works pretty nice. Thanx!