Pop-up Browser Window
The Pop-up Browser Window component is a wrapper of the JavaScript window.open()
command. It pops up a new browser window with configurable parameters,
such as size, location, and toolbars.
Properties
name
- Description: (REQUIRED) Enter unique name of the control. Must exactly match the name of the corresponding JavaScript object on the page.
- Type: String
- Default Value: PopUpWindow1
- Method: getName()
- Method: setName()
URL
- Description: Enter the URL of the document that should appear in the new window.
- Type: String
- Default Value: http://
toolbar
- Description: Should the toolbar be displayed in the new window?
- Type: Boolean
- Value Set: True | False
- Default Value: True
location
- Description: Should the location box be displayed in the new window?
- Type: Boolean
- Value Set: True | False
- Default Value: True
directories
- Description: Should the directory buttons be displayed in the new window?
- Type: Boolean
- Value Set: True | False
- Default Value: True
status
- Description: Should the status bar be displayed in the new window?
- Type: Boolean
- Value Set: True | False
- Default Value: True
menubar
- Description: Should the menu bar be displayed in the new window?
- Type: Boolean
- Value Set: True | False
- Default Value: True
scrollbars
- Description: Should scrollbars be displayed in the new window?
- Type: Boolean
- Value Set: True | False
- Default Value: True
resizable
- Description: Should the new window be resizable?
- Type: Boolean
- Value Set: True | False
- Default Value: True
width
- Description: Width of the new window, in pixels.
- Type: Number
height
- Description: Height of the new window,in pixels.
- Type: Number
top
- Description: Top (y) coordinate on the screen where the new window will be placed.
- Type: Number
left
- Description: Left (x) coordinate on the screen where the new window will be placed.
- Type: Number
testMode
- Description: Select the test mode.
- Value Set: off | alerts | text
- Type: String
- Default Value: off
Methods
Open
- Name: open()
- Description: Opens the new window.
Close
- Name: close()
- Description: Closes the window.
Events
On Open
- Name: onOpen()
- Description: Event fires after the window is opened.
On Close
- Name: onClose()
- Description: Event fires after the window is closed.
Other Information
Environment: Client