I want to create a ITEM but there should not be any order or submit or request button available?

Ashok B
Kilo Contributor

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 ?

find_real_file.png

Thanks

Ashok

1 ACCEPTED SOLUTION

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;
}

View solution in original post

5 REPLIES 5

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;
}