ゲームの試合結果を取得するテーブルを作成しています。問題は、試合結果 (サブグリッド) を並べ替えようとすると、num 列と team 列のみが並べ替え可能であり、他の列は並べ替えられないことです。何か不足していますか?助けてください。
http://darkencraft.woobi.co.kr/DotA2Login/WinTablev2.php
以下は、ソートに問題があるサブグリッドです。
jQuery("#"+subgrid_table_id).jqGrid({
url:"get_match_detail.php?q=1&match_id="+(jQuery("#match_list").getRowData(row_id))['match'],
datatype: "json",
colNames: ['Num','Team','Name','Steam ID #', 'Hero', 'Hero', 'Image', 'Kills','Deaths','Assists','Creep Kills','Denies','Gold-per-Minute','Experience-per-Minute'],
colModel: [
{name:"num",index:"num",width:30,key:true},
{name:"team",index:"team",width:30},
{name:"name",index:"match_id",width:80},
{name:"steamid",index:"win",width:150,align:"right"},
{name:"hero_en",index:"match_id",width:80},
.....more columns
{name:"epm",index:"match_id",width:80}
],
sortname: 'num',
pager: pager_id,
rowNum:20,
height: '100%',
sortable: true,
loadonce: true,
sortorder: "asc",});