jqGridで列幅変更時に処理を行うサンプルです
サンプルソース
例)列幅変更時にアラート表示する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>jqGrid列幅変更時イベントサンプル</title> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script> <script src="https://js.cybozu.com/jqgrid/v5.1.1/js/jquery.jqGrid.min.js"></script> <script src="https://js.cybozu.com/jqgrid/v5.1.1/js/i18n/grid.locale-ja.js"></script> <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <link rel="stylesheet" href="https://js.cybozu.com/jqgrid/v5.1.1/css/ui.jqgrid.css"> <script> $(document).ready(function(){ //表示データ var dt = [ {cd:"A001", name:"りんご", price:150} ,{cd:"A002", name:"みかん", price:100} ,{cd:"A003", name:"ぶどう", price:500} ,{cd:"A004", name:"もも", price:300} ,{cd:"A005", name:"かき", price:200} ,{cd:"A006", name:"すいか", price:800} ,{cd:"A007", name:"メロン", price:1500} ,{cd:"A008", name:"いちご", price:400} ]; //表示設定 $("#grid01").jqGrid({ data: dt ,datatype: 'local' ,colNames:['コード', '名前', '金額'] ,colModel:[ {index:'cd', name:'cd', width:'50px', align:'center'} ,{index:'name', name:'name', width:'100px'} ,{index:'price', name:'price', width:'100px', align:'right'} ] ,multiselect:true ,height:'auto' ,caption:'商品一覧' ,resizeStart:function(event, index){ //列幅変更開始時に呼ばれる alert('resizeStartが呼ばれました'); console.log(event); //event console.log(index); //列番号 } ,resizeStop:function(newwidth, index){ //列幅変更終了時に呼ばれる alert('resizeStopが呼ばれました'); console.log(newwidth); //変更後幅 console.log(index); //列番号 } }); }); </script> </head> <body> <table id="grid01"></table> </body> </html> |
実行サンプル
解説
- グリッドロード完了時に処理を行うには、以下オプションにfunctionを指定します。
resizeStart:幅変更開始時
resizeStop:幅変更終了時 - jqGridのその他のオプションについては以下ページをご覧ください。
⇒ [jqGrid] 主要オプション一覧