Hello,<br />
<br />
I have problem with my reports in Firefox 9 and IE9, here is sample code..<br />
<br />
<script><br />
function show()<br />
{<br />
alert("Hello");<br />
var param = "titles1.rptdesign";<br />
var paramString1 = "titles.rptdesign";<br />
window.location = "<a class='bbc_url' href='
http://wisdom.rockefeller.edu:8080/birt/frameset?__report='>http://wisdom.rockefeller.edu:8080/birt/frameset?__report="</a> +param+paramString1;<br />
}<br />
</script><br />
<br />
This is not working in Firefox 9.<br />
I have updated <strong class='bbc'>abstractreportcomponent.js</strong> with <br />
// Internet Explorer has a funky execScript method that makes this easy<br />
if ( window.execScript )<br />
{<br />
window.execScript( scripts
.innerHTML );<br />
<br />
}<br />
else if ( window.eval )<br />
{<br />
with( window )<br />
{<br />
window.eval( scripts.innerHTML );<br />
}<br />
}<br />
<br />
But still its not working..<br />
ANy suggestions please.I'm struggling for this since last 2 days.Please help me.<br />
<br />
Thank you.