2

是否可以在 kendo-ui 中调整网格及其内容的大小?我想将它用于响应式 Web 应用程序。我的意思是可调整大小的列、行和里面的内容(文本、图像、..)

4

1 回答 1

2

只要您在最初制作网格时将 resizable 设置为 true,就可以调整剑道网格列的大小。

$("#grid").kendoGrid({
                    dataSource: {
                       //datasource stuff
                    },
                    height: 350,
                    sortable: true,
                    resizable: true, <--this is the one to be set to make resizing possible
                    pageable: true,
于 2013-01-18T21:25:30.113 回答