Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2019 08:04 AM
Try this out:
Make sure you uncheck Isolate script field on the record.
function onLoad() {
var str = "5 - Exceeds" +"\n"+ "4 - Meets";
alert(str);
var controlID = g_form.getControl('u_review').id + '_fieldmsg';
g_form.showFieldMsg('u_review', str);
document.getElementById(controlID).style.whiteSpace = 'pre-wrap';
callback(saveAndClose);
}
Please mark my response as correct and helpful if it helped solved your question.
-Thanks