Wijmo ユーザーガイド > ウィジェット > Grid > 概念 > 列 > 列の移動 |
wijgrid ウィジェットでは、allowColMoving オプションを true に設定することで、列の移動を有効化できます。
次のサンプルスクリプトでは、列ヘッダをドラッグし、新たな位置にドロップすることで、列の位置を変更できます。
スクリプト |
コードのコピー |
---|---|
<script id="scriptInit" type="text/javascript"> require(["wijmo.wijgrid"], function () { $(document).ready(function () { $("#wijgrid").wijgrid({ cellClicked: function (e, args) { alert(args.cell.value()); }, allowSorting: true, allowColMoving: true, // allows movement of column data: [ [27, 'Canada', 'Adams, Craig', 'RW'], [43, 'Canada', 'Boucher, Philippe', 'D', 'R'], [24, 'Canada', 'Cooke, Matt', 'LW', 'L'], [87, 'Canada', 'Crosby, Sidney (C)', 'C', 'L'], [1, 'United States', 'Curry, John', 'G', 'L'], ], columns: [ {headerText: "Number", dataType:'number'}, {headerText: "Nationality", dataType:'string'}, {headerText: "Player", dataType:'string'}, {headerText: "Position", dataType:'string'}, ] }); }); }); </script> |