Discussions
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.