Diderik
05/03/2023, 9:48 AMnlOpenWindow()
method) except the record I'm referring to already exists and is in edit mode. However, I would still like the window to close after the record has been submitted the same way the Phone Log and Task window close. Currently it just redirects back to the customer record (the pop-up is opened from a button on the customers activities sublist).
I'm aware I could redirect to a suitelet that handles closing the window but I would prefer not to use an extra script. I've tried looking through various modules, custom record and form settings but couldn't find anythingNElliott
05/03/2023, 10:19 AMDiderik
05/03/2023, 10:29 AMNElliott
05/03/2023, 10:30 AMDiderik
05/03/2023, 10:32 AMNElliott
05/03/2023, 10:33 AMDiderik
05/03/2023, 11:22 AMreturn true;
🤦♂️ Instead of window.close()
I ended op doing setTimeout(window.close, 2000)
so it feels a little more like the Phone Call and Task.
Thank you for the help!