You are viewing limited content. For full access, please sign in.

Question

Question

Forms Submit Button

asked on October 11, 2015

Dear All

how to Disable & Enable Submit button ? scenario is if End User forget to sign the Submit Button to be Disable.

Thank You.

 

0 0

Replies

replied on October 11, 2015

You should be able to disable it by setting the "disabled" attribute on the button before the signature is applied and then removing it after the signature is applied:

$('.Submit').attr('disabled','disabled');

<event on signature field - signature is applied>
$('.Submit').removeAttr('disabled');

Or you can show and hide the submit button using $('.Submit').hide() and $('.Submit').show() in javascript.

0 0
replied on October 15, 2015

I normally make the signature field a required field.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.