是否可以在kendo-ui中调整网格及其内容?

时间:2013-01-18 21:21:52

标签: kendo-ui kendo-grid

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

1 个答案:

答案 0 :(得分:2)

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

$("#grid").kendoGrid({
                    dataSource: {
                       //datasource stuff
                    },
                    height: 350,
                    sortable: true,
                    resizable: true, <--this is the one to be set to make resizing possible
                    pageable: true,