Kendo UI Grid Last Row对齐是错误的。 Kendo UI Grid Row高度不起作用

时间:2014-09-03 20:21:58

标签: css kendo-grid

我是Kendo UI Core:

两个问题:

  1. Kendo Grid最后一行错误对齐
  2. Kendo Grid行高不起作用(我希望行高更短)
  3. 这是一个奇怪的问题。网格的最后一行将作为中心对齐,如下所示: enter image description here

    另一个问题:即使我使用了以下CSS代码,网格的高度也没有改变:我已经修改了Kendo.Common.css

    .k-grid td {
        padding: 0.1em 0.1em;
        line-height: 0.7em;
    }
    

    Kendo Grid初始化如下:

                 var grid = $("#grid").kendoGrid({
    
                    columns: [
    
                     { field: "Date", lockable: false, hidden: false, title: "Date", width: 135, template: "#= kendo.toString(kendo.parseDate(Date, 'dd-MMM-yy'), 'dd-MMM-yy') #" },
                     { field: "Status",  hidden: false, title: "Status", width: 120 }
                    ],
                    dataSource: {
                        data: data,
                        pageSize: 100
    
                    },
    
                    sortable: {
                        mode: "multiple",
                        allowUnsort: true
                    },
                    resizable: true,
                    filterable: true,
                    columnMenu: true,
                    scrollable: true
    
                }).data("kendoGrid");
    

0 个答案:

没有答案