Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I have an issue with IE10 and Tea Commerce 2.1. When I click the Add to Basket button, I get the following error:
Does anyone know if there is a quick fix for this? Upgrading Tea Commerce isn't really an option.
Thanks,
Robert
Hi Robert,
What does your form post data look like? I'm very interested in what data you are sending to the server.
Only IE10?
/Rune
Hi Rune,
Yes, this is only a problem in IE10.
There doesn't appear to be any data in the post request (it's an AJAX call), but this is the same in both Firefox and IE, and it works in Firefox.
The URL that's being called by the AJAX is /tcbase/teacommerce/AddOrderLine/1562/1.aspx.
Hi!
I was having the same issue with one of our TeaCommerce 1.4.2.4-solutions today.
The problem came while adding orderlines without extra propteries. This resulted in TeaCommerce sending a call with formdata: undefined.
Adding a random proptery to the product solved the issue for me.
TeaCommerce.addOrderLine(productid, quantity, { async: true, successfn: function (data) { jQEle.removeClass('updating'); }, errorfn: function (data) { jQEle.removeClass('updating'); }, properties:{ 'productType': "Produuct" } });
-Ole Martin
Thanks Ole, that's worked for me.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Issue adding item to basket in IE10
Hi,
I have an issue with IE10 and Tea Commerce 2.1. When I click the Add to Basket button, I get the following error:
Does anyone know if there is a quick fix for this? Upgrading Tea Commerce isn't really an option.
Thanks,
Robert
Hi Robert,
What does your form post data look like? I'm very interested in what data you are sending to the server.
Only IE10?
/Rune
Hi Rune,
Yes, this is only a problem in IE10.
There doesn't appear to be any data in the post request (it's an AJAX call), but this is the same in both Firefox and IE, and it works in Firefox.
The URL that's being called by the AJAX is /tcbase/teacommerce/AddOrderLine/1562/1.aspx.
Robert
Hi!
I was having the same issue with one of our TeaCommerce 1.4.2.4-solutions today.
The problem came while adding orderlines without extra propteries. This resulted in TeaCommerce sending a call with formdata: undefined.
Adding a random proptery to the product solved the issue for me.
TeaCommerce.addOrderLine(productid, quantity,
{
async: true,
successfn: function (data) {
jQEle.removeClass('updating');
},
errorfn: function (data) {
jQEle.removeClass('updating');
},
properties:{
'productType': "Produuct"
}
});
-Ole Martin
Thanks Ole, that's worked for me.
Robert
is working on a reply...