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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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