使用Kendo UI Grid填充问题

时间:2014-03-20 08:54:00

标签: jquery html css kendo-grid

我遇到了填充Kendo Ui Grid的问题,Grid涵盖了所有header。在footer上有一个Toogle按钮,当点击Toogle按钮时,会出现header。有关更具体的信息,请参阅下面的两张图片。before Toggle

after Toggle

@(Html.Kendo().Grid(Model)
.Name("Grid")
.Columns(columns =>
    {
        columns.Bound(c => c.ProductSubcategoryID).Width(140);
        columns.Bound(c => c.ProductCategoryID).Width(140);
        columns.Bound(c => c.NameofBike).Width(190);
        columns.Bound(c => c.isSelected).Width(120);
    })

    .Editable(edit => edit.Mode(GridEditMode.InCell))
    .Pageable(pageable => pageable
            .Refresh(true)
            .PageSizes(true)
            .ButtonCount(5))
    .Sortable()
    .Groupable()
    .ToolBar(tb => 
    {
        tb.Create();
        tb.Save();
    })

有谁知道它有什么问题?谢谢!

0 个答案:

没有答案