Reputation: 971
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, ..)
Upvotes: 2
Views: 4582
Reputation: 2840
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,
Upvotes: 2