OK...in ModalPanel.cs, ContentPart.cs, and ContentPagePart.cs, replace
var attribname = 'notdagger';
if (typeof firedobj.attributes['name'] != 'undefined')
attribname = firedobj.attributes['name'].value;
var firedobjName = ns6 ? attribname : firedobj.name;
if(firedobjName != 'dragger') return;
with
var attribname = 'notdragger';
if (ie)
{
if (typeof(firedobj.name) != 'undefined')
{
attribname = firedobj.name;
}
}
else
{
if (typeof(firedobj.attributes['name']) != 'undefined')
{
attribname = firedobj.attributes['name'].value;
}
}
//var firedobjName = ns6 ? attribname : firedobj.name;
//if(firedobjName != 'dragger') return;
if(attribname != 'dragger') return;
There remains one problem: Whatever is inserting the first code block into ShowProducts.aspx is not one of the three files above. It is likely in Sueetie.Commerce.
Dave, is there anywhere else using this code? I can't find it anywhere in the solution.
Edited by user Wednesday, April 18, 2012 4:13:19 PM(UTC)
| Reason: Not specified