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.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Inline HTML button not firing
In 1.0 we have a User Event and Client script that create buttons in a transaction form in the body of the form using an inlinehtml field. Has worked great. We want to make some changes/additions to the script and want to rewrite in 2.0.
So, I have created a User Event and Client script in 2.0 and the buttons are showing up but the on_click events are not firing and I have no idea why. I am probably forgetting something. Here is the code
Client Script
/**
* @NApiVersion 2.x
* @NScriptType ClientScript
* @NModuleScope SameAccount
*/
define(['N/currentRecord'],
function(currec) {
/**
* Function to be executed after page is initialized.
0