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.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Access to a custom record from a portlet
dear ug
I have a custom portlet that i have uploaded to show me reminder on approval i need to make on a custom record.
It shows me the internal id of the records, but when i click on the id it takes me to a fresh page instead of opening the record in edit form.
i want when i click on the id showing on the portlet it should open the record in edit form.
here are the code for the portlet
function reminderPortlet(portlet, column)
{
portlet.setTitle(column != 2 ? "Appraisal List" : "Pending Employee Appraisal List")
var col = portlet.addColumn('internalid','text', 'Record ID', 'LEFT');
0