These are the available configuration methods for the secondary header.
setSecondaryHeaderStatus
Enabled by default, enable/disable the secondary header for the component.
1public function configure(): void
2{
3 $this->setSecondaryHeaderStatus(true);
4 $this->setSecondaryHeaderStatus(false);
5}
setSecondaryHeaderEnabled
Enable the secondary header on the component.
1public function configure(): void
2{
3 // Shorthand for $this->setSecondaryHeaderStatus(true);
4 $this->setSecondaryHeaderEnabled();
5}
setSecondaryHeaderDisabled
Disable the secondary header on the component.
1public function configure(): void
2{
3 // Shorthand for $this->setSecondaryHeaderStatus(false);
4 $this->setSecondaryHeaderDisabled();
5}
See also:
secondary header styling.
secondary header column configuration.