Group data but hide groupLens band Default: When the groupLens is defined, data is grouped by a specific field. Also a group band is displayed if the grouping field is not visible in the grid. This boolean variable hides this group band.
This is particularly useful when you are grouping by a hidden field that you do not want to display, but want to show the subtotal bands. Normally you will see in the grid:
Group Band 1
Data Data Data
Data Data Data
total total total
Group Band 2
Data Data Data
Data Data Data
total total total
When groupHideBand = true, then you will only see:
Data Data Data
Data Data Data
total total total
Data Data Data
Data Data Data
total total total
Syntax
# to hide group band
$lens->groupHideBand = true;
# or to disable
$lens->groupHideBand = false; Basic:Yes Advanced/Enterprise:Yes DynamicEdit:Yes [Version 4.1]
|