[Index.cshtml]
@(Html.EJ().Grid<object>("Grid")
...
.MinWidth(400)
.IsResponsive(true)
...
.Columns(col =>
{
...
}))
|
[Index.cshtml]
@(Html.EJ().Grid<object>("Grid")
...
.MinWidth(400)
.IsResponsive(true)
.AllowScrolling(true)
.ScrollSettings(scroll => scroll.Height("100%"))
.Columns(col =>
{
...
})
) |