Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 kendo-ui 中调整网格及其内容的大小?我想将它用于响应式 Web 应用程序。我的意思是可调整大小的列、行和里面的内容(文本、图像、..)
只要您在最初制作网格时将 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,