I deployed this portlet. On the Script record I ha...
# suitescript
s
I deployed this portlet. On the Script record I have: Portlet Type: Inline HTML Script contents:
Copy code
/**
 *@NApiVersion 2.x
 *@NScriptType Portlet
 */
define([],
    function() {
        function render(params) {
            params.portlet.title = 'My Portlet';
            var content = '<td><span><b>Hello!!!</b></span></td>';
            params.portlet.html = content;
        }
        return {
            render: render
        };
    });
But when I try and add the portlet to my dashboard I don’t see Hello Portlet in the source dropdown.