- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2022 05:54 AM
Hi Team,
I want to create a Request ITEM but there should not be any order or submit or request button available on display? We just want to suggest users buy themself that ITEM.
but the request method is three drop-down options available. How can I select none ?
Thanks
Ashok
Solved! Go to Solution.
- Labels:
-
Request Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2022 01:25 PM
To me personally that is written in a bit of a chaotic way that does not make sense.
If you just want to for some reason have a catalog item out there and prevent users from ordering it, add a Catalog client script (on Submit) to it. And using this client script prevent form submission for that catalog item.
The script can go something like this
function onSubmit() {
//Type appropriate comment here, and begin script below
alert("You cannot order the item!");
return false;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2022 01:25 PM
To me personally that is written in a bit of a chaotic way that does not make sense.
If you just want to for some reason have a catalog item out there and prevent users from ordering it, add a Catalog client script (on Submit) to it. And using this client script prevent form submission for that catalog item.
The script can go something like this
function onSubmit() {
//Type appropriate comment here, and begin script below
alert("You cannot order the item!");
return false;
}