This question is locked. New answers and comments are not allowed.
I'm trying to use the scrolling and then I changed the First Look Razor View in telerik example project like that
...
@(Html.Telerik().Grid(Model)
.Name("Grid")
.Columns(columns =>
{
columns.Bound(o => o.OrderID).Width(200);
columns.Bound(o => o.ContactName).Width(200);
columns.Bound(o => o.ShipAddress);
columns.Bound(o => o.OrderDate).Format("{0:MM/dd/yyyy}").Width(200);
....
You can omit the width specification and everything works fine but
...
columns.Bound(o => o.OrderID).Width(400);
columns.Bound(o => o.ContactName).Width(400);
columns.Bound(o => o.ShipAddress);
columns.Bound(o => o.OrderDate).Format("{0:MM/dd/yyyy}").Width(400);
...
The scrollbar is visible but the third column disappear
Regards!