[Add Button to a subtab] I created a custom recor...
# general
d
[Add Button to a subtab] I created a custom record 'ATTENDEE' and connected it to Project Record. When you open a project, you can view the list of Attendees from the custom subtab (as seen on the picture). The client wants a column containing a button 'Send mail' for each line of Attendee in the custom subtab. Is there a way to modify and add a button to the subtab? Thread in Slack Conversation
o
It is not possible to put a button, but yo can put an HTML hyperlink. That hyperlink can call the URL of a Suitelet you build, which will execute code and send an email.
d
Thank you Olivier . To add the hyperlink, is it to be done through the Netsuite UI or should I do it via a script? I have no idea how to add the hyperlink.
o
in the search you just add a text formula and type in the HTML, e.g. <a href="www.blabla.com">this is a hyperlink</a>
can can pipe in dynamic countent such as '<a href="www.blabla.com?id="'||{internalid}||'>' this is a hyperlink</a>'
mind your ' symbols to keep a consistent string
and || is used as a concatenation command
d
Hello @Olivier Gagnon (DXC) I created a custom field named 'Action'. Type of field is hyperlink. My custom record is a sublist in project (picture). However I am unable to pipe dynamic content in my field default value.
message has been deleted
o
Tick in "formula", and change your string to 'http://www.google.com?id='||{internalid} including the ' characters
d
Awesome...thanks