特定の行をグループ化するJQGridがあります。私はgroup
どの行をグループ化するかを定義するために使用します。たとえば、3つある場合、2
すべて2
の行をグループ化します。ただし、1つしかない可能性もあります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']
},