Hello Michael Stewart,
It seems that there is a common problem with the usage of the
document.all statement in Mozilla.
Still, there is a known workaround the issue. Please change the javascript script like this:
function OpenPdf() {
var silverlightApplication = parent.GetSilverlightApplication();
src = silverlightApplication.Content.MySilverlightPage.getName();
if (document.all && document.all.MyIFrame != null) {
document.all.MyIFrame.src = src;
}
else if (document.getElementById("MyIFrame")){
document.getElementById("MyIFrame").src = src;
}
}
This should solve the problem.
I am attaching the modified example if you want to take a look.
Please let us know if you need more info.
All the best,
Tina Stancheva
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.