I have kendo grid.And problem is grid's header and data rows columns are not aligned properly.
Below is the kendo grid code :
@(Html.Kendo().Grid(Model.Product)
.Name("Grid")
.Scrollable(a => a.Height("auto"))
.Columns(columns =>
{
columns.Bound(o => o.ProductId).Sortable(true)
.ClientTemplate("<a href='/Product/ProductEntry/#=ProductID#' target='_blank'>#=Product#</a>")
.Title("Order #");
columns.Bound(p => p.Name);
columns.Bound(p => p.LastName);
columns.Bound(p => p.Insurance);
columns.Bound(p => p.LastUpdate);
})
.Pageable()
.Sortable()
.Resizable(resize => resize.Columns(false))
.Reorderable(reorder => reorder.Columns(false))
)