Open Fullscreen in SAME WINDOW.... please help

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Nick

    Open Fullscreen in SAME WINDOW.... please help

    Hello,

    have the following code:

    {parent.window. location.href(' http://tsvnet01/Category_Webpar ts/Crystal%20Direc tory/ReportActiveX.c sp?PID=13699&ri d='
    + reportID + '&Title=Balance d%20Scorecard') }

    I want this report to open in the same screen, which it alread does,
    but FULL screen and with no toolbars...

    How? PLEASE HELP!

    Thanks

    Nick.
  • Grant Wagner

    #2
    Re: Open Fullscreen in SAME WINDOW.... please help

    Nick wrote:
    [color=blue]
    > Hello,
    >
    > have the following code:
    >
    > {parent.window. location.href(' http://tsvnet01/Category_Webpar ts/Crystal%20Direc tory/ReportActiveX.c sp?PID=13699&ri d='
    > + reportID + '&Title=Balance d%20Scorecard') }
    >
    > I want this report to open in the same screen, which it alread does,
    > but FULL screen and with no toolbars...
    >
    > How? PLEASE HELP!
    >
    > Thanks
    >
    > Nick.[/color]

    I very much doubt it does anything like what you said.

    window.location .href is a property, not a method, so if anything it would be parent.window.l ocation.hef = 'yourUrl';

    As for removing the toolbars of the current browser window, you can't in the default security environment in most
    browsers, you can't at all in other browsers.

    Regarding resizing the current browser window... you can, but don't.

    --
    | Grant Wagner <gwagner@agrico reunited.com>

    * Client-side Javascript and Netscape 4 DOM Reference available at:
    * http://devedge.netscape.com/library/...ce/frames.html
    * Internet Explorer DOM Reference available at:
    * http://msdn.microsoft.com/workshop/a...ence_entry.asp
    * Netscape 6/7 DOM Reference available at:
    * http://www.mozilla.org/docs/dom/domref/
    * Tips for upgrading JavaScript for Netscape 7 / Mozilla
    * http://www.mozilla.org/docs/web-deve...upgrade_2.html


    Comment

    Working...