0

この例を自分のコンピューターで動作させようとしているのは一日中です。

http://trirand.com/blog/jqgrid/jqgrid.html

これが正常に機能するまで眠ることができないので、どうしても助けが必要です! jqgrid をうまく使ったことがありますか?

これは私のHTMLファイルのコードです:

<table id="list2"> </table>
<div   id="pager2" > </div>

以下は私のjavascriptセクションのコードです:

var theURL = 'matter_parties_model/<?php echo $matterID;?>';
alert('Donato');

$("#list2").jqGrid({
url:'server.php?q=2',
datatype: "json",
colNames:['Inv No','Date', 'Client', 'Amount','Tax','Total','Notes'],
colModel:[
    {name:'id',index:'id', width:55},
    {name:'invdate',index:'invdate', width:90,editable:true},
    {name:'name',index:'name asc, invdate', width:100},
    {name:'amount',index:'amount', width:80, align:"right",editable:true,editrules:{number:true}},
    {name:'tax',index:'tax', width:80, align:"right",editable:true,editrules:{number:true}},        
    {name:'total',index:'total', width:80,align:"right"},       
    {name:'note',index:'note', width:150, sortable:false}       
],
rowNum:10,
rowList:[10,20,30],
pager: '#pcelltbl',
sortname: 'id',
viewrecords: true,
sortorder: "desc",
caption:"Cell Edit Example",
forceFit : true,
cellEdit: true,
cellsubmit: 'clientArray',
afterEditCell: function (id,name,val,iRow,iCol){
    if(name=='invdate') {
        jQuery("#"+iRow+"_invdate","#celltbl").datepicker({dateFormat:"yy-mm-dd"});
    }
},
afterSaveCell : function(rowid,name,val,iRow,iCol) {
    if(name == 'amount') {
        var taxval = jQuery("#celltbl").jqGrid('getCell',rowid,iCol+1);
        jQuery("#celltbl").jqGrid('setRowData',rowid,{total:parseFloat(val)+parseFloat(taxval)});
    }
    if(name == 'tax') {
        var amtval = jQuery("#celltbl").jqGrid('getCell',rowid,iCol-1);
        jQuery("#celltbl").jqGrid('setRowData',rowid,{total:parseFloat(val)+parseFloat(amtval)});
    }
}});

jQuery("#celltbl").jqGrid('navGrid','#pgwidth',{edit:false,add:false,del:false});

そして最後に、これは私のphpのコードです:

<?php
include("../../connections/xxxxxxxx");
$page = $_GET['page']; // get the requested page
$limit = $_GET['rows']; // get how many rows we want to have into the grid
$sidx = $_GET['sidx']; // get index row - i.e. user click to sort
$sord = $_GET['sord']; // get the direction
if(!$sidx) $sidx =1;
// connect to the database
$db = mysql_connect($dbhost, $dbuser, $dbpassword)
or die("Connection Error: " . mysql_error());

mysql_select_db("griddemo") or die("Error conecting to db.");
$result = mysql_query("SELECT COUNT(*) AS count FROM invheader a, clients b WHERE          a.client_id=b.client_id");
$row = mysql_fetch_array($result,MYSQL_ASSOC);
$count = $row['count'];

if( $count >0 ) {
    $total_pages = ceil($count/$limit);
} else {
    $total_pages = 0;
}
if ($page > $total_pages) $page=$total_pages;
$start = $limit*$page - $limit; // do not put $limit*($page - 1)
$SQL = "SELECT a.id, a.invdate, b.name, a.amount,a.tax,a.total,a.note FROM invheader a,     clients b WHERE a.client_id=b.client_id ORDER BY $sidx $sord LIMIT $start , $limit";
$result = mysql_query( $SQL ) or die("Couldn t execute query.".mysql_error());
$responce = new stdClass();
$responce->page = $page;
$responce->total = $total_pages;
$responce->records = $count;
$i=0;
while($row = mysql_fetch_array($result,MYSQL_ASSOC)) {
    $responce->rows[$i]['id']=$row[id];
    $responce->rows[$i] ['cell']=array($row[id],$row[invdate],$row[name],$row[amount],$row[tax],$row[total],$row[not e]);
    $i++;
}        
echo json_encode($responce);
?>

現在、グリッドにはヘッダーが表示されていますが、編集可能な行は表示されていません。何か案が?これは複雑な質問だと思いますが、以前にこの例を使用したことがありますか? ご協力ありがとうございました。

4

1 に答える 1

0

あなたのコードには、多くの問題があります。

  1. テーブル ID が list2 であるため、出現する #celltbl をすべて #list2 に置き換えます。
  2. 同じ理由で、#pgwidth と #pcelltbl をすべて #pager2 に置き換えます。
  3. put error_reporting(E_ALL & ~E_NOTICE); PHP 処理では、JSON 応答と互換性のない通知エラーがコードに含まれているため

json 出力が来ているかどうかにかかわらず、firebug > net > ajax response を使用してデバッグすることもできます。また、非常に使いやすいjqgrid php ラッパーhttp://www.phpgrid.orgもチェックしてください。

于 2013-03-03T19:54:14.597 に答える