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.
我试过 grid.getColumns[index].width = <>。但是,这不会调整列的大小。
修改列宽后,您需要将列设置重新应用到网格。
$("#resize").click(function () { var cols = grid.getColumns(); cols[0].width = 120; grid.setColumns(cols); });
JSFiddle在这里