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.
TIP: Change html page title on sales transactions
Hi, have you ever had 10 tabs with transactions open in firefox and clicking through them to find the one that you were working on?
Well, I did, then I added a custom transaction field and added it to my forms.... boom, instantly better page titles that displays [transactionnumber] - [customer]
Create a custom transaction field that has the type inserted HTML and set the standard value to below and check the formula checkbox.:
'<script> function init() { try { document.title = "' || {tranid} || ' - ' || {entity} || '"; } catch (e) { null; } } init(); </script>' 0