5

I have overridden magento SwatchRenderer.js file in app\code\Mydirectory\CustomSwatches\view\frontend\web\js\SwatchRenderer.js.

My problem is I get an error in my product page load:

Uncaught TypeError: Cannot read property 'updateData' of undefined

I found out that data('gallery') on SwatchRenderer.js's following function is undefined.

updateBaseImage: function (images, context, isProductViewExist) {
 var justAnImage = images[0];
 if (isProductViewExist) {
 context
 .find('[data-gallery-role=gallery-placeholder]')
 .data('gallery')
 .updateData(images);
 } else if (justAnImage && justAnImage.img) {
 context.find('.product-image-photo').attr('src', justAnImage.img);
 }
 }

I checked a Magento 2 demo site. On that site the above data attribute is set as a JavaScript object. The target element is a div with the above attribute. But in my site it is undefined and obviously I think that data attribute is not set on my site. Can anyone help me to find the setter function/view/file for above element? Any help would be appreciated. Thanks.

asked Mar 18, 2016 at 9:18
6
  • How you overwrite this SwatchRenderer.js. Show your overwrite script and all code SwatchRenderer.js Commented Jul 28, 2016 at 7:44
  • Which is exactly your Magento version? Commented Jul 29, 2016 at 12:57
  • @Khoa My magento version is 2.0.4 updated from 2.0.2. This issue is in both versions. Commented Aug 2, 2016 at 10:53
  • You can upload your full code on github or here. Commented Aug 2, 2016 at 14:16
  • Hi @JanakaDombawela are you have this on Product Page or Category Listings - are you trying to use Product image switching from colours? If so, please post full code and what your trying to do. The reason I am asking is I had the same issue but I coded around this to fix it and made an AJAX swatcher Commented Aug 3, 2016 at 11:27

1 Answer 1

1

We had this same issue until we realized we were hiding the price of products on our category listing page. Apparently, swatch-renderer.js relies on classes on the price box to determine if it is on the product view or product listing page. After re-enabling the price box, color swatch switching started working again.

answered Mar 8, 2018 at 16:54

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.