Login
Remember
Register
Ask a Question
How can you cancel a form submission through client script in ServiceNow?
0
votes
asked
Aug 28, 2020
in
Service Now
by
RShastri
How can you cancel a form submission through client script in ServiceNow?
#servicenow
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 28, 2020
by
RShastri
In the onSubmit function return false. function onSubmit() {
return false;
}
...