
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2021 07:56 AM
Dear all,
In an Order Guide, is it possible to grey out (disable) the 'Next' button from a Catalog Client Script ?
Thank you in advance for your help.
Best regards.
Solved! Go to Solution.
- Labels:
-
User Interface (UI)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2021 08:29 AM
Would this be in the Service Portal?
You can do this with a little jQuery. Add something like this to your catalog client script.
this.jQuery('#submit').prop('disabled', true);
Sometimes you need to wrap these in a timer if you're doing it onload.
setTimeout(function() {
this.jQuery('#submit').prop('disabled', true);
}, 500);
I hope this helps!
If this was helpful or correct, please be kind and remember to click appropriately!
Michael Jones - Proud member of the CloudPires team!
Michael D. Jones
Proud member of the GlideFast Consulting Team!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2021 08:15 AM
You may have to find the UI page and comment it out. However this will mess with future updates. If it is in the Portal you would find the widget and comment out the HTML

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2021 08:29 AM
Would this be in the Service Portal?
You can do this with a little jQuery. Add something like this to your catalog client script.
this.jQuery('#submit').prop('disabled', true);
Sometimes you need to wrap these in a timer if you're doing it onload.
setTimeout(function() {
this.jQuery('#submit').prop('disabled', true);
}, 500);
I hope this helps!
If this was helpful or correct, please be kind and remember to click appropriately!
Michael Jones - Proud member of the CloudPires team!
Michael D. Jones
Proud member of the GlideFast Consulting Team!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2021 11:16 PM
Hi Michael,
Thank you very much, it works fine with setTimeout in an onChange client script 🙂
And yes, it is for the Service Portal.
Have a nice day,
BR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2021 03:32 PM
This is awesome, and works great for disabling the 'Next' button in the UI Policy I have it in where it's disabling the Next button when one of the fields on the Describe Needs page has a specific value.
What can I put in my UI Policy to have it re-enable the Next button when that field has the opposite value??
Thanks,
Brandon