New line \n in event & alert description support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2017 02:11 PM
Does the event or alert description field support the use of the \n or \\n or some type of new line character.
The field just displays anything I place in as text.
Have also created a event rule to combine multiple event fields to compose a more meaningful description which does not work either.
It creates one long message.
e.g.
${MESSAGE1} \n ${MESSAGE} \\n ${MESSAGE3} \n\n ${MESSAGE4}
Build: Jakarta
Is this by design or is there specific character combination that is required.
Thanks
Gavin
- Labels:
-
User Interface (UI)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2017 04:00 PM
Try with
${MESSAGE1} + '\n'+ ${MESSAGE}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2017 09:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2017 09:56 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2020 06:08 AM
Hello,
you can use "<br\>" to make it in next line.
Ex message: "First line.Second line"
you should enter the string as "First line.<br\> <br\>second line"
output:
First line
Second Line
Note:Please accept the sution if it works for you.