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 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
How to remove Buttons from Forms using Code
Hi all
This will help anyone attempting to hide buttons which the standard NetSuite API does not allow you to hide.
This is what we have done before, it is a snippet from a Before Load User Event Script:
var htmlCode = ''; var htmlFieldObject = null; htmlCode = "<script>"; htmlCode += "document.getElementById('tbl_saveprint').style.display = 'none';"; // Save & Print (TOP BUTTON) htmlCode += "document.getElementById('tbl_autofill').style.display = 'none';"; // Copy Previous (TOP BUTTON) htmlCode += "document.getElementById('tbl_secondarysaveprint').style.display = 'none';"; // Save & Print (Bottom Button) htmlCode += "document.getElementById('tbl_secondaryautofill').style.display = 'none';"; // Copy Previous (Bottom Button) htmlCode += "</script>"; htmlFieldObject = form.addField("custpage_jshtml", 'inlinehtml', "Inline JS"); htmlFieldObject.setDefaultValue(htmlCode);
Tagged:
0