i want to be able to hide a set of columns that below to a particular column group.
i have configured the columns using the “column hierarchy” setting.
columns: [
{ text: 'Contract', columngroup: 'gtgroup', dataField: 'ContractGT', width: 100, filterable: false, cellclassname: cell
{ text: 'Long', columngroup: 'gtgroup', dataField: 'LongGT', width: 60, filterable: false, cellsformat: 'd',
{ text: 'Short', columngroup: 'gtgroup', dataField: 'ShortGT', widt
i can hide a column using a field name like this
$('#idTrackerGridALL').jqxGrid('hidecolumn', 'LongGT');
can i hide all three columns specifying the group id ‘gtgroup’ as follows
$('#idTrackerGridALL').jqxGrid('hidecolumn', 'gtgroup');