Posts

Showing posts from April, 2020

Get Data from Multilines of Text Column using RestApi

"Multilines of Text"  allows users to store a large amount of data in different formats like : HTML, Images, Tables and links. It can store data up to 2 GB. I will not go to theory portion as it is easily available.  If you are here, it means you know that "Multilines of Text" returns data in HTML format and when we assign this data to any HTML field it will show like this. "<div> World is suffering from COVID-19 CORONA <br></div>" Steps to display this text on Page. 1. Add a HTML file some where in site contents. 2. Add Content Editor Web Part on page. 3. Edit a Web Part and enter above HTML file URL to Content Link. Sample HTML File : <html> <head> <style> .multiLine {    background-color : white; } </style> // Add required jquery library here <script>                function getData(){ // Here restApi returns multiline of text and assign this t...