How to change the height of Kendo ui Grid

后端 未结 5 496
悲哀的现实
悲哀的现实 2021-01-07 16:04

How do I change the height of the Kendo Grid when using wrappers?

5条回答
  •  渐次进展
    2021-01-07 16:32

    To change height dynamically

    remove htmlattributes:

    .HtmlAttributes(new { style = "height:600px;" })

    Add scrollable with auto:

    .Scrollable(a => a.Height("auto"))

提交回复
热议问题