This content has been marked as final.
Show 1 reply
-
1. Re: No such interface supported 3_3_1.GAorg.ajax4jsf.javascript.AjaxScript.seam
mirec.zatko Oct 10, 2012 11:20 AM (in response to mcas.uvaraj)Had same error and was not able to fix it until now.
You need to override XMLSerializer.serializeToString(node) function after whole page is loaded.
Something like this:
jQuery(document).ready(function(){
XMLSerializer.prototype.serializeToString=function(oNode)
{
if(oNode.xml)
{
return oNode.xml;
}
else if(oNode.outerHTML)
{
return oNode.outerHTML;
}
return oNode;
}
}
It works for IE9,FF16,Opera12,Chrome22,Safari4Win5.1.7