我有一个 JQGrid 将某些行组合在一起。我group
用来定义应该将哪些行分组在一起,例如,如果有三个2
s,它将所有2
s 分组在一起。但是,可能只有一个2
,在这种情况下,我不希望将它分组,即将行放在一个组下。
我的问题是,是否可以将分组仅应用于某些行而让其他行不理会?
以下是我目前拥有的:
colNames:['group', 'Description', 'File Sent to Customer', 'Date/Time', 'ATS', '# of Bib Records', '# of Items', 'Customer DB', 'Customer ID'],
colModel:[
{name:'group', index:'group'},
{name:'description', index:'description'},
{name:'fileSent', index:'fileSent', width:150},
{name:'date', index:'date', width:160},
{name:'ats', index:'ats', width:100},
{name:'bibRecords', index:'bibRecords', width:100},
{name:'items', index:'items', width:100},
{name:'customerDB', index:'customerDB', width:240},
{name:'customerID', index:'customerID', width:150}
],
grouping:true,
groupingView : {
groupField : ['group'],
groupColumnShow : [false],
groupText : [''],
groupCollapse : true,
groupOrder: ['desc']
},