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!
Inline Editor Sublist in Suitelet 2.0
Hi All,
I am facing an issue when trying to add Inline Editor type sublist in Suitelet (SuiteScript 2.0). Here is the code I am using to add the sublist to the form:
form.addSublist({
id : 'custpage_tm',
type : ui.SublistType.INLINEEDITOR,
label : 'Time Entries',
tab: 'custpage_tab'
});
When I run the Suitelet, the body fields get populated but the list does not show. Instead "Loading..." is shown. There is also an error in the browser's console as well. However, when I change the INLINEEDITOR to LIST, the list shows up with "No records to show." and there is no error in the console.