現在、jqGrid でマルチ グループ化を実装しようとしていますが、うまくいかないようです。以下のコードを参照してください。
colNames:['Programme','Course', 'Fee Type','Description','Apply', 'Amount', 'Discount', 'Discounted Amt','GATE Amount'],
colModel:[
{name:'programme',index:'programme', width: 25},
{name:'moduleInstance',index:'moduleInstance', width:30
},
{name:'feeType',index:'feeType', width:15
},
{name:'description',index:'description', width:15
},
{name:'isApplicable',index:'isApplicable', width:4, editable:true, edittype:'checkbox', editoptions: { value:"True:False"},formatter: "checkbox", formatoptions: {disabled : false}
},
{name:'amount',index:'amount', width:5
},
{name:'discount',index:'discount', width:5, editable:true},
{name:'discountAmount',index:'discountAmount', width:8},
{name:'gateAmountCovered',index:'gateAmountCovered', width:8, editable:true}
],sortname: 'moduleInstance',
grouping:true,
groupingView : {
groupField : ['programme', 'moduleInstance'],
groupColumnShow : [false, false],
groupText : ['<b>{0} - {1} Item(s)</b>', '{0}']
},
これは、ヘッダーに番組タイトルのみを表示し、他のタイトルは表示しません。ここで私が間違っていることを誰かに教えてもらえますか?