- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2017 11:35 AM
Hello All,
I have requirement to increase "Quantity" choices upto 100 for single Catalog Item.
1)I have added 100 choices in sc_cart_item table. But here challenge is it has updated for all Catalog items.
2)Is there any way to restrict it for particular catalog item?
Thanks
Monika
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2017 11:39 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2017 11:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2017 11:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2017 12:00 PM
Try the below in an onload catalog client script
function onLoad() {
//Type appropriate comment here, and begin script below
try{
var x = document.getElementById("quantity");
var option = document.createElement("option");
option.text = 12;
x.add(option);
}
catch(e)
{
alert("There is some error");
}
}
You can use it to add multiple options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-04-2017 11:42 AM
Anyone have this working for Service Portal? using $('quantity) or document.getElementByID('quantity') won't work for SP.