https://breakdesigns.net/support/tickets/stockable-custom-fields/Ticket/8318-cannot-read-property-setselected-of-undefined The StockableObj[i] is undefined some times. *Check why If you cannot find why, fix it in the js code level ``` StockableObj[i].setSelected(); StockableObj[i].handleOutOfStock(); ``` becomes: ``` if (typeof StockableObj[i] != "undefined") { StockableObj[i].setSelected(); StockableObj[i].handleOutOfStock(); } ```
https://breakdesigns.net/support/tickets/stockable-custom-fields/Ticket/8318-cannot-read-property-setselected-of-undefined
The StockableObj[i] is undefined some times.
*Check why
If you cannot find why, fix it in the js code level
becomes: