Hello - does anyone know how to write up a suitele...
# suitescript
j
Hello - does anyone know how to write up a suitelet with iframe? We're looking to display some data in NetSuite from an external BI application.
l
You can add a html field like that:
Copy code
form.addField({
                id: 'custpage_htmlfield',
                type: serverWidget.FieldType.INLINEHTML
                });

            scriptLoad.defaultValue = '<iframe> </iframe>';
j
I'll give that a try - thanks!