does anyone have any examples for a Client Script ...
# suitescript
u
does anyone have any examples for a Client Script that loads a Suitelet form, waits for said Suitelet form's Submit, and returns its values for processing onto the Client Script? for context, I'm currently trying to create a custom record that has all its input fields greyed out, and all the inputs will be done on a separate form. Any and all inputs that could point me in the right direction would be very appreciated.
b
use Window.open() to open your suitelet
this allows client sccript on the suitelet's form to access your original window via Window.opener
this will allow you to create a button on the suitelet that has access to the custom record's context
in particular, you can use
opener.require
to access suitescript modules
🙌 1