0
deltavision created
Hi,
using: Core, MVC, jQuery project - v7.2.2
is it possilble with: abp.message.info(message);
to show "message" with line breaks?
I have tried with
\n
\r\n
<br>
<br/>
but it is not working
4 Answer(s)
-
0
Hello deltavision,
Can you please try like this ?
var content = document.createElement('div'); content.innerHTML = 'There are some <strong>errors.</strong><br/>Please check and try again.'; swal({ content: content, icon: "error" });
-
0
Hi robert,
this works :-) with swal
but not in the context with abp.message.info(message);
-
0
Hi,
Could you try this;
abp.message.info("message", "title", {isHtml: true});
You can use html tags in message text.
-
0
Hi ismcagdas
this works :-)
Thank you.