1) Share the view page or code example of Grid and Tab.
2) If possible modify the attached sample and replicate the issue.
3) Exact replication procedure for the issue
4) Share the screenshot for the issue.
5) Which version of Essential studio are you using ?
6) Have you given width to columns? Whether it has been given for some of the columns or all the columns?
7) You have quoted that the columns were not resize. It means whether the columns were hidden or reduced width?
Regards,
Seeni Sakthi Kumar S.
@(Html.EJ().Grid<object>("Grid1") .Datasource((IEnumerable<object>)ViewBag.datasource) .AllowPaging() .AllowScrolling(true) .MinWidth(500) .IsResponsive() .Columns(col => { col.Field("OrderID").Width(90).HeaderText("Order ID").Add(); col.Field("CustomerID").Width(90).HeaderText("Customer ID").Add(); col.Field("Freight").Width(90).HeaderText("Freight").Add(); col.Field("ShipCountry").Width(90).HeaderText("Ship Country").Add();
}) |