Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在动态地将列添加到 kendo ui 网格中。
当网格中有很多行时,这些行有边框并正确显示。
但是,当网格中的行很少时,最后一行或似乎不显示边框。
当网格中没有足够的行时,剑道网格上的单元格边界是否可以延伸到网格区域的底部
@(Html.Kendo().Grid<Model>() .Name("GirdName") .Scrollable(scr => scr.Height(100)) ... $(document).ready(function () { $("#GirdName>.k-grid-content>table").css("height", 100); })