This topic is locked

Vertical Layout

8/7/2011 7:07:12 AM
PHPRunner General questions
F
fpilot author

Is it possible not to repeat the field names in the vertical lay out?

C
cgphp 8/7/2011

In the visual editor, switch to the source code and remove the label column of each field name.
For example:
if the code is like the following:



{BEGIN yourfieldname_fieldcolumn}<TR>

<TD style="PADDING-LEFT: 10px" class=headerlistdown_v width="30%">field_name</TD>

<TD style="PADDING-LEFT: 10px" class=shade_b align=left>{$yourfieldname_value}&nbsp;</TD></TR>{END yourfieldname_fieldcolumn}



remove the first column:



{BEGIN yourfieldname_fieldcolumn}<TR><TD style="PADDING-LEFT: 10px" class=shade_b align=left>{$yourfieldname_value}&nbsp;</TD></TR>{END yourfieldname_fieldcolumn}