这是我创建网格的代码:
@{ if (Model.GenericEntityList.Count > 0) { @(Html.Kendo().Grid(Model.GenericEntityList).Name(screenNames.ToString()).Columns( columns => { columns.Bound(a => a.ID).Title("<input id='checkAll' type='checkBox' />").ClientTemplate("<input type='checkBox' id=#=genericCheckBox(ID,ViewFlag)#").Width(7); columns.Bound(a => a.Name).Title(screen.ToString() + " Name").Width(93); } ).Selectable().Scrollable().DataSource( datasource => datasource.Ajax().Read(read => read.Action("CompSetHide","Compset")) ).Events(a => a.Change("rowclick") ) .HtmlAttributes(new {style = "height: 185px;"}) ) } }
如何禁用和启用自动出现在kendo网格内的垂直滚动条?
解决方法
你可以使用这样的东西来显示垂直滚动条:
$("#grid .k-grid-content").css({ "overflow-y": "scroll" });
这是为了隐藏它:
$("#grid .k-grid-content").css({ "overflow-y": "hidden" });
grid是网格元素的id.