0

我目前正在尝试在 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}']
                    },

这仅在标题上显示程序标题,而不在其他标题上显示。谁能告诉我我在这里做错了什么?

4

1 回答 1

0

我从未实现过分组,但我在示例中尝试了此代码并得到了与您相同的结果。然后我查看了谷歌,发现了这个

这是一个非常古老的帖子,在 2011 年,但我想他们是对的,它不受支持。这就是为什么他们会提出这种multipleGroup 方法的原因。看看这个和这个旧的答案。至少你会得到一些参考。

于 2012-08-16T03:08:31.057 回答