This topic is locked
[SOLVED]

 phprunner v5 page-break

9/8/2008 5:34:58 PM
PHPRunner General questions
J
johan-v author

Hello,
How do we have to implement <P style="PAGE-BREAK-AFTER: always"></P> in the new version.

I see there is now a css class for it but how can we use it?
Lot's off things are different in the new visual editor print page.
Where can we find the documentation?
I would like to print about 2000 records. ( 3 times a year )

Each record should be on a separate page with exact the same layout.
Thank you,
Johan

J
Jane 9/9/2008

Hi,
turn onHTML mode on the Visual Editor tab, find this code:

{END grid_row}



and add following code just before:

<TR><TD><P style="PAGE-BREAK-AFTER: always"></P> </TD></TR>

J
johan-v author 9/10/2008

Hi,

turn onHTML mode on the Visual Editor tab, find this code:
and add following code just before:


Hello Jane,
I just tried this but it is not working over here with firefox 3.

Are you sure this should work.
I see some tables are nested.
Are you sure this should work?
Greetings,
Johan

J
Jane 9/11/2008

Johan,
Try to use this one:

<TR><TD style="PAGE-BREAK-AFTER: always"> </TD></TR>

J
johan-v author 9/11/2008

Johan,

Try to use this one:


Hello Jane,
This does not work either.

I think it does not work because off the surrounding table and page <div>.

I'm not an expert.

What tags can I delete to remove the surrounding table around the individual records.
I already tried to remove the page tag but that does not work.
greetings,

J
Jane 9/12/2008

Sorry for my fault.

Here is the correct code:

<TR style="PAGE-BREAK-AFTER: always"><TD> </TD></TR>