ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: MEngelbyPQ on May 04, 2018, 03:00:02 am
-
Is there a way to retrieve the collapsed state of a group from within a toolbar item listener function? I have only 1 group and this is what I came up with, but it is pretty janky. All the commented out lines are things that I've tried.
{
type:'button',
label: 'Toggle Sites',
listener: function() {
//var $siteGrpOpts = this.groupOption('collapsed');
var $site = this.Group();
window.siteCollapsed = !window.siteCollapsed;
if (window.siteCollapsed) {
$site.collapse();
} else {
$site.expand();
}
//var $siteState = this.option('groupModel.collapsed[0]');
//var $siteState1 = $site.option.collapsed;
//var $siteState2 = $site.groupOption('collapsed');
//this.groupOption('collapsed', !$siteState1);
}
},
-
Please try this
listener: function () {
this.Group().option({
collapsed: [!this.option('groupModel.collapsed')[0]]
});
}
-
Many thanks! The answer seems obvious once it has been pointed out and I know where in the documentation to look. But for whatever reason, my mind wasn't figuring out how to read options for the groupModel.
Is there a way to contribute to the documentation? This may be helpful to add to the groupModel code examples section.
From:
Get or set the groupModel option, after initialization:
//getter
var groupModel = grid.option( "groupModel" );
//setter
//group by ShipCountry and keep it collapsed.
grid.Group()option({
dataIndx: ['ShipCountry'],
collapsed: [ true ]
});
To:
Get or set the groupModel option, after initialization:
//getter
var groupModel = grid.option( "groupModel" );
//setter
//group by ShipCountry and keep it collapsed.
grid.Group().option({
dataIndx: ['ShipCountry'],
collapsed: [ true ]
});
// Toggle the collapsed state of a group
// by JSON dataIndx
grid.Group().option({
collapsed: [ !this.option('groupModel.collapsed')[
this.option('groupModel.dataIndx').indexOf('ShipCountry')
] ]
});
// by Array Index
grid.Group().option({
collapsed: [!this.option('groupModel.collapsed')[0]]
});