Height of last page in datagrid to be consistent

My datagrid is set to show 10 items per page, and each page is the same height, all except the last page. If the last page has only 1 item then the grid shrinks up to fit just the one item, but this makes the whole page jump around. Can the last page have dummy rows or some kind of padding to keep the whole grid the same height regardless of what page you are on?
Thanks
C10B

Hi @C10B,

You can set height via CSS that will keep the height of the DataGrid consistent regardless of the number of rows on page, for example:

<RadzenDataGrid  ... Style="height: 500px;">

Thanks - I've tried that at it's OK as a workaround, but I have to finetune the number of pixels to match the number of rows I'm showing, and any change in padding, number of rows, etc and I have to do it again. Would be great to have it as an option at some point in the future. Thanks. C10B.