openAdministration() is calling an External DynamicData website with the openAdministration javascript function. The site appears fine in the iFrame except some pages are larger than the iFrame size and there are no scroll bars. Using Firebugs I modified the iFrame to scroll, however, I do not know how to change the iFrame in the code above to set the iFrame to have scrollbars.
Is the parent.right.document an iFrame and is there a jquery and javascript attribute I can set to turn on scroll bar.
iFrame in Custom Section
I have created a custom section and the aspx page is larger than the area of the iFrame. Is there a way to turn on scroll bars.
public override void RenderJS(ref System.Text.StringBuilder Javascript)
{
Javascript.Append(
@"
function openAdministration()
{
parent.right.document.location.href = 'http://localhost:52523/Sabert1/default.aspx';
}
");
}
What are you using to render the content in the right frame? Are you utilizing the umbraco.uicontrols? Like:
-- Nik
openAdministration() is calling an External DynamicData website with the openAdministration javascript function. The site appears fine in the iFrame except some pages are larger than the iFrame size and there are no scroll bars. Using Firebugs I modified the iFrame to scroll, however, I do not know how to change the iFrame in the code above to set the iFrame to have scrollbars.
Is the parent.right.document an iFrame and is there a jquery and javascript attribute I can set to turn on scroll bar.
Thanks,
Did you manage to solve this? I have a similar issue.
That should do the trick.
is working on a reply...