I have a text box field populated by a drop down list selection. My only problem is it I am trying to populate it with large amounts of data that I want to format. It is all "string" text if I am using the correct nomenclature. The trouble is I would like it to have line breaks...
Desired Result
Introduction
LiveCycle is the greatest software known to man......
But when I enter it in the source code, the only way I can do it is by the following:
"description":{description:"Introduction LiveCycle is the greatest software known to man....:},
How can I get the line break between Introduction and Live Cycle .... as in the above desired result example as above?
Thanks
To put a line break in add: \n in the string
so in my example above
"Introduction \nLiveCycle is the best ever...."
results in
Introduction
LiveCycle is the best ever....
Enjoy.