Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
rich text fields and nlapiGetFieldValue
Has anyone else noticed this problem.
I have a number of solution records which have HTML within the longdescription field. I then made the following changes:
Solution Record:
- set longdescription field to inline text
- add new Rich Text field 'details'
On page init, use a script to convert the 'old' long description contents to the 'new' rich text field 'details'.
Here are the problems:
1. nlapiGetFieldValue returns an empty value for longdescription. I also found that nlapiGetFieldValue only returned the first line of HTML code in a hidden field.
Workaround (use DOM):
1. document.getElementById('longdescription').value returns the correct contents in FireFox but returns empty value in IE.