Kendo Grid标头和数据行列未对齐

时间:2014-06-13 10:08:46

标签: asp.net-mvc-4 kendo-grid

我有kendo grid.And问题是网格标题,数据行列未正确对齐。

enter image description here

以下是kendo网格代码:

@(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))     
)  

1 个答案:

答案 0 :(得分:0)

这是Chrome浏览器中的kendo ui网格中的错误。 你在firefox中测试你的问题吗?

您可以在这个问题中详细了解它:

  

Bug in kendo ui grid lrt css in chrome