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.
Suitelet Image field
Hi
I'm trying to add an image field in my suitelet.
I tried using the following:
form.addField( 'imagefield', 'image', 'Image');
This only outputs the label but not an option to select an image.
Is there something wrong here that I'm not seeing?
Also,
I'm trying to display an image on my suitelet.
I used the following code:
var s_img = form.addField( 'imagefield', 'inlinehtml' );
var imageUrl = "https://system.netsuite.com/core/media/media.nl?id=199amp;c=360822&h=c03db556160b6bf4162d";
s_img.setDefaultValue( '<img src="' + imageUrl + '">' );
I hardcoded the link to the image.
0