我有kendo grid.And问题是网格标题,数据行列未正确对齐。
以下是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))
)
答案 0 :(得分:0)
这是Chrome浏览器中的kendo ui网格中的错误。 你在firefox中测试你的问题吗?
您可以在这个问题中详细了解它: