How do I save and submit form data in netsuite?
I need to save and submit the information for a form for enrollment > employees, each time it is filled out. I need to save and submit the information for a form for enrollment > employees each time it is filled out. I sent an image of where I want the information to be stored. I created a send button, but it doesn’t send
Hi,
You will need to process the data that is submitted. You can see the principle in this article:
https://netsuite.custhelp.com/app/answers/detail/a_id/94597
In summary, your script should have two sections:
if (context.request.method === 'GET') {
–> Displays the form.
if (context.request.method === 'POST') {
–> Processes the data and perhaps displays a confirmation.
Thanks,
Chris
thanks, Chris!
How do I get CancelButton to work? I want him to cancel the form submission.