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はこちら