Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Solution descrn field loses html markup
I'm losing the html tags from the description field of solutions when i try to access that field with server code.
in view mode, the solution shows the description text with html tags ("...<BR><ul><li>Check...")
when i get a beforeload server script to copy that field into an inline html field on a task, the server code is getting the text stripped of tags
var solutionDescrn = nlapiLookupField('solution', record.getFieldValue('custevent_cns_solution'), 'description'); record.setFieldValue('custevent_cns_soln_display', solutionDescrn); in fact, if i log the value of 'solutionDescrn', it has no tags - it's not a problem with the inline html field
0