Categories

ep.openWindow()

Categories: Utilities

ep.openWindow( url, [ windowName ], [ features ] )

Plugin: ep.openWindow

Description: Open a window.

  • ep.openWindow( url, [ windowName ], [ features ] )

    version added: 6.11.0

    url   A url to open in a window.

    windowName   A name for the window.

    features   A string of features for the window or a name of a predefined features.

The ep.openWindow() method open a window with specified features.

You can use predefined features instead of define features for the window, some predefined features set also a windowName.

Predefined features
  • PopUp
  • PopUpPrint
  • RTE
  • HelpWindow (windowName: WWHFrame)
  • StylePreview (windowName: StylePreview)
  • DetailedImageView (windowName: StylePreview)
  • CheckLink

If no windowName givn, ep.openWindow() set automatically a windowName.

  • Open windwows.

    Code:
    ep.openWindow( 'about:blank', 'RTE' );
    
    ep.openWindow( 'about:blank', 'PopUp' );
    
    ep.openWindow( 'about:blank', 'linkChecker', 'CheckLink' );
    
    ep.openWindow( 'about:blank', 'customWindow', 'width=1000, height=730, toolbar=no, status=no' );