WebSite X5Help Center

 
C. M.
C. M.
User

X5engine.cart.manager: object is null  en

Auteur : C. M.
Visité 1275, Followers 2, Partagé 0  

A quick question on the x5engine.cart.manager object:

When calling the x5engine.cart.manager.add() method from within an html button (see code snippet #1), all works fine and the product is added to the cart.

When calling the same method from within a custom html object (see code snippet #2), I get the following error (copy from the browser console) : “TypeError: x5engine.cart.manager is null”.

How can I instantiate the x5engine.cart.manager so that I can use the object through a custom object directly?

Thanks for your support.

C.M.

Snippet #1:

<input type="button" value="add to cart" onclick="atc()" />

<script>

function atc() {

x5engine.cart.manager.add('x9zp4mzf’, 1);

}

</script>

Snippet #2:

<script>

x5engine.cart.manager.add('x9zp4mzf’, 1);

</script>

Posté le
3 RéPONSES - 1 CORRECT
C. M.
C. M.
User
Auteur

Thanks. It is a sligthly different approach, might be indeed helpful.

I will check it out and come back in a few days.

Lire plus
Posté le de C. M.
C. M.
C. M.
User
Auteur

Sorry for the delayed confirmation. Just for the record, the approach that Ricardo recommended works.

Thanks.

Lire plus
Posté le de C. M.