Lookout

cancel
Showing results for 
Search instead for 
Did you mean: 

multiline html reports

Hi,

Does anyone know how to get a carriage return into an HTML element in the report object.

I am trying to do a report that is a list of results, but even though I am using HTML1, HTML2, HTML3 etc... they all come out on the same line.

I dont think there is a CR expression function, so do you use a different element ???

Thanks,

John
0 Kudos
Message 1 of 5
(3,868 Views)
You need a small amount of additional HTML code to indicate a new paragraph. Here is one way - you can begin the HTMLx datamember connection expression with <p> and end it with </p>. This will give you a new paragraph for each entry.
Message 2 of 5
(3,866 Views)
That works great, thanks.

So I guess this means that you can embed any HTML command within the text.

Cheers,

John
0 Kudos
Message 4 of 5
(3,866 Views)
Have you tried /R (backslash-R)?
It works for the ASCII object as a carriage return.
0 Kudos
Message 3 of 5
(3,866 Views)
In html you can use the <br /> command or <br> is also acceptable.  This is simply a break to the next line, instead of the creation of a new paragraph with <p>.  There's not much difference, just another method.

Message Edited by SteveAtBaldyMesaWaterDistrict on 03-02-2006 11:03 AM

0 Kudos
Message 5 of 5
(3,732 Views)