JqG​​rid中的多分组目前是否受支持?

时间:2012-08-15 20:03:20

标签: javascript jquery spring jqgrid

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

这只显示标题上的节目标题而不显示另一个节目标题。谁能告诉我这里我做错了什么?

1 个答案:

答案 0 :(得分:0)

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

这是一篇非常古老的帖子,2011年,但我认为它们是正确的,它不受支持。这就是他们想出这种多组方法的原因。查看this和此old answer。至少你会得到一些参考资料。