Grey out Next Button in Order Guide
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2022 06:43 AM
Hi All,
I have a requirement that Next Button should be greyed out in Order Guide (Describe Needs) if all fields were selected as No. Attaching screenshot below:
How to achieve this?
Thanks in Advance!!
Labels:
- Labels:
-
Service Catalog
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2022 07:35 AM
Hello,
Please do the below:-
Use the below code in your onchange client script for the last variable once the user selects the last variable add the condition if all the variables are false then in bracket put the below code:-
setTimeout(function() {
this.jQuery('#submit').prop('disabled', true);
}, 500);
Please mark my answer as correct based on Impact.