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 |
<!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:'200px'} ,{index:'price', name:'price', width:'150px', align:'right'} ] ,multiselect:true ,height:'auto' ,caption:'商品一覧' ,pager : 'pg01' ,rowList : [5, 10, 20] ,rowNum : 5 ,onPaging:function(pgButton){ //ページング処理時に呼ばれる alert('onPagingが呼ばれました'); console.log(pgButton); //ボタン名(records, next, last, prev, first) } }); }); </script> </head> <body> <table id="grid01"></table> <div id="pg01"></div> </body> </html> |
実行サンプル
解説
- グリッドロード完了時に処理を行うには、onPagingオプションにfunctionを指定します。
- jqGridのその他のオプションについては以下ページをご覧ください。
⇒ [jqGrid] 主要オプション一覧