internet explorer 9 - script16386 no such interface supported error in IE9 browser -
we using ie8 our apps till now. got upgradation needed ie9 browser. features not working in ie9. when select radio button, based on button should enabled. not happening in ie9 browser. observe java script error "script16386 no such nterface supported" coming when click radio button. hope java script error causing issue. application jsf application. , app called inside iframe tag. googled possible solutions no progress. replaced richfaces-impl, richfaces-ui, richfaces-api jars 3.3.2.sr1 3.3.3 version. didn't work. followed below steps in link : http://vsomani.blogspot.com/2011/12/a4j-and-ie-9-issues-with.html -- didn't work :( project ant project. can on this. thanks.
i encountered same problem. me, error occured in line 1402 of ajax.js, window.document.importnode called.
ie9 support importnode seems incomplete, , throws error dom documents.
i patched ajax.js further, , in line 495 replaced:
if((typeof(document.importnode) == "undefined") && sarissa._sarissa_is_ie){ by
if((typeof(document.importnode) == "undefined") && sarissa._sarissa_is_ie || sarissa._sarissa_is_ie9 ){ it seems solve problem me. change defines sarissa importnode-by-hand ie9 , too.
Comments
Post a Comment