我遇到了填充Kendo Ui Grid的问题,Grid
涵盖了所有header
。在footer
上有一个Toogle
按钮,当点击Toogle
按钮时,会出现header
。有关更具体的信息,请参阅下面的两张图片。
@(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();
})
有谁知道它有什么问题?谢谢!