If you have one record where you want to display multiple columns of information, the 'Value Attribute Pairs - column' report template is pretty nifty.
Some of the packaged applications use this within the breadcrumb bar, above a region display selector, and it looks really tidy.
Note, I've modified region attribute setting 'Show null values as' to a tilde (~).
But what if I wanted to hide those null values for Mgr & Comm, similar to the 'show nulls' option within single row view of Interactive Reports?
Create an 'after refresh' dynamic action on the region. This is the default when doing so via the Page Designer.
And if you have another event that refreshes the region, the JavaScript will re-apply and hide any nulls (represented as a tilde - something to find and hide).
The
Thinking with my jQuery hat.
Some of the packaged applications use this within the breadcrumb bar, above a region display selector, and it looks really tidy.
![]() |
Nulls shown with tilde |
Note, I've modified region attribute setting 'Show null values as' to a tilde (~).
But what if I wanted to hide those null values for Mgr & Comm, similar to the 'show nulls' option within single row view of Interactive Reports?
Create an 'after refresh' dynamic action on the region. This is the default when doing so via the Page Designer.
// for each value cell found on the page, determine if contents = ~, then hide row if trueThen refresh your page. Done.
$('dd.t-AVPList-value').each(function() {
if ($(this).text().indexOf('~') > 0)
$(this).hide().prev().hide();
});
![]() |
Nulls hidden |
The
dd.t-AVPList-value
is a selector for the Universal Theme. It uses a different class in other themes, so you would have to investigate using Inspect Element browser tool to check.![]() |
Right-Click -> Inspect Element |
Thinking with my jQuery hat.