Relevance/Javascript and linefeed issues

(imported topic written by Bill.Ehardt)

So I’m hoping this is a very easy question. I’m doing something simple like trying to get names/space of drives like:

Local Disk Drives/Space

C:, 23252, 51199 D:, 94562, 153596

The relevance I’m trying to use is: td of (concatenation “%0D%0A” of (values of result (it, bes property “Local Disk Drives/Space”)) of bes computers whose (blah blah blah)

How do I get the C: and D: on different lines, like:

Local Disk Drives/Space

C:, 23252, 51199

D:, 94562, 153596

(imported comment written by Bill.Ehardt)

I’ve tried “\u000D\u000A”, “%0D%0A”, “\r\n”… etc

(imported comment written by Lee Wei 2)

The start of your Session Relevance statement of “td” suggests that we are trying to present this over HTML, so I would try the following.

td of (concatenation (html “
”) of …

We have to be careful with String versus HTML datatypes. If we get that wrong, the
will simply be escaped and treated as strings.

Lee Wei