I have created a grid with Syncfusion in a MVC application, and I madethat responsive by importing ej.grid.responsive.css. But when it's rendering in a mobile resolution, the scroll bar is not visible and I am unable to see other columns since not showing the scroll bar. How i enable that scroll bar in Syncfusion MVC Grid ?
<div class="box-body">
@(Html.EJ().Grid<ServiceRepairInspectionViewModel>("SriGrid")
.Datasource(ds => ds.URL(@Url.Action("GetActive", "ServiceRepairInspection")).Adaptor(AdaptorType.UrlAdaptor))
.AllowPaging()
.IsResponsive(true)
.EnableResponsiveRow(true)
.AllowScrolling(true)
.ScrollSettings(scroll => { scroll.EnableTouchScroll(true); })
.Columns(col =>
{
col.Field(p => p.Id).Visible(false).IsPrimaryKey(true).Add();
col.Field(p => p.SriName).HeaderText("Id").AllowFiltering(true).Add();
col.Field(p => p.CustomerFirstName).HeaderText("Name").AllowFiltering(true).FilterType(FilterOption.Menu).Add();
col.Field(p => p.JobDescription).HeaderText("Job Description ").ForeignKeyField("Value").ForeignKeyValue("Text").DataSource(EnumHelper.GetSelectList(typeof (EnumJobDescription))).AllowSorting(true).Add();
col.Field(p => p.Status).HeaderText("Status").Template("#statusTemplate").AllowSorting(true).Add();
}))
</div>
Note : The Gird is getting rolled when i render that window in mobile resolution, But only scroll bar not displayed .
We found that you have not set MinWidth property in grid. To show the scrollbar in grid when responsive we suggest you to set MinWidth propery in grid.
Please refer the below code example.
Please refer the documentation link:
Link: https://help.syncfusion.com/api/js/ejgrid#members:minwidth