This topic is locked

Details preview page formating

8/24/2009 8:06:23 PM
PHPRunner General questions
V
vytb author

If I'm not wrong, some earlier posts confirm that the list pages cannot be fully formatted (from one line to two, etc.)
Do the same issues affect the details preview pages? In order to overcome issues mentioned in http://www.asprunner.com/forums/index.php?/topic/12299-detail-preview-window-to-big-overlays-original-link/pagehlpreviewfromsearch1 , I've tried to format them using visual editor with very inconsistent results. The fields in the first line are OK, the others cannot be seen.
Are there any solutions?

J
Jane 8/25/2009

Vitas,
just make sure all your fields are between {BEGIN details_row} and {END details_row} tags.

{BEGIN details_row}

<TR>

<TD>{$FieldName1_value}</TD>

<TD>{$FieldName2_value}</TD>

<TD>{$FieldName3_value}</TD>

</tr><tr>

<TD>{$FieldName4_value}</TD>

<TD>{$FieldName5_value}</TD>

<TD>{$FieldName6_value}</TD>

</TR>

{END details_row}

V
vytb author 8/25/2009

Thank you Jane,
This works just fine!