Hi Stefan,
Thanks for contacting Syncfusion support.
For your requirement, we suggest you to enable the AllowScrolling property and set scroll settings height as “100%” like as follows,
Code example:
@Grid
@(Html.EJ().Grid<BasicMVCSample.Grid.OrdersView>("ForeignKey")
.Datasource((IEnumerable<object>)ViewBag.dataSource1)
.AllowPaging()
.AllowGrouping()
.IsResponsive()
.MinWidth(500)
.AllowScrolling()
.ScrollSettings(s=>s.Height("100%"))
. . .
.Columns(col =>
{
. . .
})) |
Please let us know if you have any further assistance on this?
Regards,
Venkatesh Ayothiraman.