public interface InfoPopupProperties
InfoPopupProperties
interface represents the properties passed to the Javascript window.open() statement
used to create the popup window for field help texts.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getHeight()
Window height.
|
java.lang.String |
getLeftPosition()
The x position of the window's top-left corner.
|
java.lang.String |
getTopPosition()
The y position of the window's top-left corner.
|
java.lang.String |
getWidth()
Window width.
|
boolean |
isLocation() |
boolean |
isMenuBar()
Returns
true if the popup window should display the browser menu bar, otherwise returns false . |
boolean |
isResizable()
Returns
true if the popup window should be resizable, otherwise returns false . |
boolean |
isScrollBar()
Returns
true if the popup window should display scroll bars when applicable, otherwise returns false . |
boolean |
isStatusBar()
Returns
true if the popup window should display the browser status line, otherwise returns false . |
boolean |
isToolBar()
Returns
true if the popup window should display the browser tool bar with forward and back buttons etc,
otherwise returns false . |
void |
setHeight(java.lang.String height)
Sets the window height.
|
void |
setLeftPosition(java.lang.String leftPosition)
Sets the x position of the window's top-left corner.
|
void |
setLocation(boolean location) |
void |
setMenuBar(boolean menuBar)
Sets whether or not the browser menu bar should be displayed.
|
void |
setResizable(boolean resizable)
Sets whether or not the popup window can be resized by the user.
|
void |
setScrollBar(boolean scrollBar)
Sets whether or not the popup window should display scroll bars when applicable.
|
void |
setStatusBar(boolean statusBar)
Sets whether or not the browser status line should be displayed.
|
void |
setToolBar(boolean toolBar)
Sets whether or not the browser tool bar should be displayed.
|
void |
setTopPosition(java.lang.String topPosition)
Sets the y position of the window's top-left corner.
|
void |
setWidth(java.lang.String width)
Sets the window width.
|
boolean isScrollBar()
true
if the popup window should display scroll bars when applicable, otherwise returns false
.void setScrollBar(boolean scrollBar)
boolean isMenuBar()
true
if the popup window should display the browser menu bar, otherwise returns false
.void setMenuBar(boolean menuBar)
boolean isStatusBar()
true
if the popup window should display the browser status line, otherwise returns false
.void setStatusBar(boolean statusBar)
boolean isToolBar()
true
if the popup window should display the browser tool bar with forward and back buttons etc,
otherwise returns false
.void setToolBar(boolean toolBar)
boolean isLocation()
void setLocation(boolean location)
boolean isResizable()
true
if the popup window should be resizable, otherwise returns false
.void setResizable(boolean resizable)
java.lang.String getLeftPosition()
setLeftPosition(String)
void setLeftPosition(java.lang.String leftPosition)
java.lang.String getTopPosition()
void setTopPosition(java.lang.String topPosition)
java.lang.String getWidth()
setWidth(String)
for details of supported values when setting this property.void setWidth(java.lang.String width)
Any valid value for the CSS width property can be specified e.g. 300px
java.lang.String getHeight()
setHeight(String)
for details of supported values when setting this property.void setHeight(java.lang.String height)
Any valid value for the CSS height property can be specified e.g. 300px