FWIW this is what mine looks like
# suitescript
e
FWIW this is what mine looks like
j
I’ve done something like this:
Copy code
var html = '\
<script>\
	var css_link = document.createElement("link");\
	css_link.rel = "stylesheet";\
	css_link.href = "path/to/my/css/file/in/file/cabinet.css";\
	document.head.appendChild(css_link);\
</script>';				
						
var html_field = form.addField({
	id: 'html',
	type: serverWidget.FieldType.INLINEHTML,
	label: 'html'
});

html_field.defaultValue = html;
basically adding an HTML form field,, filling it with JS that runs on page load that adds CSS to the top of the page. It’s clunky but seems to work