- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2023 07:45 AM - edited 10-27-2023 07:46 AM
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)
2)
I tried <br/> tag but its still not working as expected.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2023 08:34 AM
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.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2023 08:34 AM
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.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2023 08:59 AM - edited 10-30-2023 09:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2023 10:36 AM
@Rajat27 you can mark the answer correct to close the thread.
Raghav
MVP 2023