Is it possible to re-submit a Suitelet SubmitButto...
# suitescript
c
Is it possible to re-submit a Suitelet SubmitButton? Coz now if Im going to re submit it there's a pop up message. "You have already submitted this form" Thanks.
b
its to prevent duplicate form posts
normally submitting a form would return a new page
if you are doing something like writing a file in your suitelet post logic, then you may want to add client script that reloads the page on a timeout during the saveRecord entry point
c
yes im writing a file with parameter isInline = false. But the client script saveRecord, runs first right?
b
Its what the setTimeout is for
c
hmmm, but the writeFile loads differently depending on how many data it needs.
b
Browsers download files independent from the page navigated to
c
Ohhh, will try. Thank you!
111 Views