Question

How to add line break in Aurena toast message

  • 21 December 2022
  • 3 replies
  • 177 views

Userlevel 7
Badge +20
  • Superhero (Partner)
  • 671 replies

Hi All,

 

I want to have a line break in the toast message.

 

It results in following

 

Is there any syntax to add a line break between the lines?

 

Cheers!

Damith

 


3 replies

Userlevel 7
Badge +28

Try <br> ??

 

 

<html>   <body>      <script>         <!--            document.write("Hello World!");            document.write("<br>");            document.write("Demo<br><br>Text!");          //-->      </script>   </body></html>

 

Hello World!

Demo

 

Text!

Userlevel 7
Badge +20

Thanks for the comment @ShawnBerk,. Unfortunately <br> didn’t work. I then tried the common newline (\n) but it didn’t work as well.

As a solution I used two toast messages 

 and the result looks promising and I could carry with my developments :)

 

But I’d still like to know what’s the syntax for adding a line break in a toast message since it could be useful.

 

Cheers!

Damith

Userlevel 3
Badge +7

I have registered a request with Idea to enable line breaks in toast messages.

https://community.ifs.com/ideas/toast-message-does-not-break-line-ifs-cloud-47396

 

Reply