jqGridで指定した列の表示非表示を切り替えるサンプルです。
サンプルソース
例)ボタンを押すと「名称1」列の表示非表示を切り替える
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 |
<!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> jQuery(document).ready(function(){ //表示データ var dt = [ {cd:"01", nm1:"北海道", nm2:'札幌市'} ,{cd:"02", nm1:"青森県", nm2:'青森市'} ,{cd:"03", nm1:"岩手県", nm2:'盛岡市'} ]; //表示設定 jQuery("#grid01").jqGrid({ data: dt ,datatype: 'local' ,colNames:['CD', '名称1', '名称2'] ,colModel:[ {index:'cd', name:'cd', width:'50px', align:'center'} ,{index:'nm1', name:'nm1', width:'100px'} ,{index:'nm2', name:'nm2', width:'100px'} ] ,height:'auto' ,caption:'一覧' }); // 列を表示する $("#btn1").click(function() { $("#grid01").jqGrid('showCol', 'nm1'); }); // 列を隠す $("#btn2").click(function() { $("#grid01").jqGrid('hideCol', 'nm1'); }); }); </script> </head> <body> <table id="grid01"></table> <input type="button" id="btn1" value="表示"> <input type="button" id="btn2" value="非表示"> </body> </html> |
実行サンプル
解説
- 指定した列の表示非表示を切り替えるには、.jqGrid('showCol')、.jqGrid('hideCol') を使用します。
- 第2引数に対象列名を指定します。
- jqGridのその他のオプションについては以下ページをご覧ください。
⇒ [jqGrid] 主要オプション一覧