2

Is possible resize grids and its content in kendo-ui? I want to use it for a responsive web application. I mean resizable columns, rows and the content inside (text, images, ..)

vicenrele
  • 971
  • 3
  • 19
  • 37

1 Answers1

2

The kendo grid columns can be resized as long as you set resizable to be true when making the grid initially.

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