This topic is locked

Reports - stop titles from repeating

4/1/2008 1:01:15 AM
PHPRunner General questions
bbarker author

How can I get the title (or Header line) to stop repeating before every new group?
My groupings are only 2 or 3 lines long, and to have the header info repeat is a waste of space.
I even went in and erased the text (for the bottom line - the second repeat of the header) in Visual Editor with very bad results.

J
Jane 4/1/2008

Bill,
you can move up header with field names editing this page in HTML mode on the Visual Editor tab.

Find this code:

<!--{foreach from=$rowinfo item=row}--><!------------------------------------- group headers -----------------------------------------><!--{if $row.newgroup_FieldName}-->

<TBODY>

<TR>

<TD class=header_1

colSpan=10>FieldName:&nbsp;

<FONT style="FONT-WEIGHT: 900">{$row.1FieldName_grval}</FONT></TD></TR>

<TR>

<TD class=group_1>&nbsp;</TD>

<TD class=blackshade>FieldName1</TD>

<TD class=blackshade>FieldName2</TD>

<TD class=blackshade>FieldName3</TD>

</TR><!--{/if}-->



and replace it with this one:

<TR>

<TD class=group_1>&nbsp;</TD>

<TD

class=blackshade>FieldName1</TD>

<TD class=blackshade>FieldName2</TD>

<TD class=blackshade>FieldName3</TD>

</TR><!--{foreach from=$rowinfo item=row}--><!------------------------------------- group headers -----------------------------------------><!--{if $row.newgroup_FieldName}-->

<TR>

<TD class=header_1 colSpan=10>FieldName:&nbsp; <FONT

style="FONT-WEIGHT: 900">{$row.1FieldName_grval}</FONT></TD></TR><!--{/if}-->