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

Discussion

Discussion

Enable/Disable submit based on a dropdown value

posted 22 hours ago

I have a dropdown field with a Yes or No values. I assign 1 & 0 values to the dropdown for Yes & No

 

When the form loads it has one field which is the above dropdown values.

If the user selects Yes , submit button should be hidden and the user is displayed a message .

If the user selects No submit button should be visible and the user should be able to submit the form.

Below is what i have and it doesnt seem to work. 

$(function()    
  {
    alert("Code triggered");
      if ($('#q2 input').val() == 1)
    {
         alert("Submit Disabled");
      $('.Submit').hide();
    }
   else
    if ($('#q2 input').val() == 0)
      {
      alert("Submit enabled");
       $('.Submit').show();
    }
  });

 

Anything incorrect in the above?
    

0 0
replied 22 hours ago Show version history

If you're able to switch to the Modern Designer, I believe you should be able to achieve this using field rules. This is how it looks on Cloud.

2 0
replied 21 hours ago

Thanks for the suggestion!

0 0
replied 21 hours ago

No problem at all, happy to help!

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

Sign in to reply to this post.