How to modify server side script to make every sentences of paragraph in a new line for portal ?

Rajat27
Tera Expert

I am trying to modify server script to make every sentences of paragraph in a new line of portal view and its not working as expected.
I tried below solutions but they are not working properly
1)
Rajat27_0-1698416650127.png

2)

I tried <br/> tag but its still not working as expected.

Rajat27_1-1698417499631.png

 

Rajat27_2-1698417655856.png

 

 

1 ACCEPTED SOLUTION

Raghav Sharma24
Giga Patron

When you are doing join in server side script it comes before the div tag which will not work correctly.

 

What you should try:

1. Store your strings in two different variables in server side code like data.categoryDesc1 and data.categoryDesc2 by using split or any other string functions as per your requirement.

2. in HTML use <br> tag after div like <div>{{data.categoryDesc1}}</div><br><div>{{data.categoryDesc2}}</div>


Please mark the answer correct/helpful accordingly.

View solution in original post

3 REPLIES 3

Raghav Sharma24
Giga Patron

When you are doing join in server side script it comes before the div tag which will not work correctly.

 

What you should try:

1. Store your strings in two different variables in server side code like data.categoryDesc1 and data.categoryDesc2 by using split or any other string functions as per your requirement.

2. in HTML use <br> tag after div like <div>{{data.categoryDesc1}}</div><br><div>{{data.categoryDesc2}}</div>


Please mark the answer correct/helpful accordingly.

Rajat27
Tera Expert

@Raghav Sharma24 Yes !! this approach is Working for me .Thank you!!

Rajat27_1-1698682782054.png

 

 

@Rajat27 you can mark the answer correct to close the thread.