对Kendo Grid进行排序会更改其列宽

时间:2013-02-08 10:49:59

标签: asp.net-mvc sorting kendo-ui kendo-grid gridview-sorting

我有一个像这样的剑道网格:

    <%: Html.Kendo()
           ...
            .Pageable()                 
            .Columns(c => {
                c.Bound(x => x.ProductId).Width(80);
                c.Bound(x => x.ProductCode).Width(40);
                c.Bound(x => x.ProductName).Width(80);
                c.Bound(x => x.Created).Format("{0:yyyy-MM-dd}").Width(70);
                c.Bound(x => x.CreatedBy).Width(80);
            })
            .Sortable()
            .Selectable()               
            ...

单击列标题时,会出现向上或向下箭头以指示排序。到目前为止,排序箭头使列扩展其宽度非常烦人。我想避免列改变宽度,你是怎么做到的?

1 个答案:

答案 0 :(得分:1)

将css规则添加到网格表:table-layout:fixed应解决您的问题。