superkumario64
04/27/2018, 7:41 PM/**
*@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.