Class DwtTabViewPage
Extends
DwtPropertyPage.
DwtTabViewPage abstract class for a page in a tabbed view.
Tab pages are responsible for creating their own HTML and populating/collecting
data to/from any form fields that they display.
Defined in: DwtTabView.js.
Class Summary
Constructor Attributes |
Constructor Name and Description |
|
Creates a tab view page.
|
Method Summary
Method Attributes |
Method Name and Description |
|
Gets the content HTML element.
|
|
Hides the tab view page.
|
|
Resets the size.
|
|
Shows the tab view page.
|
- Methods borrowed from class DwtComposite:
- addChild, cleanupSeparators, clear, dispose, getChild, getChildren, getNumChildren, getTabGroupMember, removeChild, removeChildren
- Methods borrowed from class DwtControl:
- addClassName, addControlListener, addDisposeListener, addListener, appendElement, blur, clearContent, clearHandler, condClassName, delClassName, focus, getBounds, getClassName, getContent, getCursor, getData, getDragBox, getDragSource, getDropTarget, getEnabled, getFocusElement, getH, getHtmlElement, getHTMLElId, getInsetBounds, getInsets, getLocation, getMargins, getOpacity, getOuterSize, getPosition, getScrollContainer, getScrollStyle, getSize, getTooltipBase, getToolTipContent, getVisibility, getVisible, getW, getX, getXW, getY, getYH, getZIndex, hasFocus, isAlertShown, isDisposed, isInitialized, isListenerRegistered, notifyListeners, preventContextMenu, preventSelection, removeAllListeners, removeControlListener, removeDisposeListener, removeListener, reparent, reparentHtmlElement, replaceElement, setBounds, setClassName, setContent, setCursor, setData, setDisplay, setDisplayState, setDragBox, setDragSource, setDropTarget, setEnabled, setEventPropagation, setFocusElement, setHandler, setHtmlElementId, setLocation, setOpacity, setPosition, setScrollStyle, setSize, setToolTipContent, setVisibility, setVisible, setZIndex, showAlert, zShow
Class Detail
DwtTabViewPage(parent, className, posStyle, id)
Creates a tab view page.
- Parameters:
-
{DwtComposite} parent
- the parent widget
-
{string} className
- the CSS class
-
{constant} posStyle
- the positioning style (see DwtControl)
-
id
Method Detail
{Element}
getContentHtmlElement()
Gets the content HTML element.
- Returns:
- {Element} the element
hideMe()
Hides the tab view page.
resetSize(newWidth, newHeight)
Resets the size.
- Parameters:
-
{number|string} newWidth
- the width of the control (for example: 100, "100px", "75%", Dwt.DEFAULT)
-
{number|string} newHeight
- the height of the control (for example: 100, "100px", "75%", Dwt.DEFAULT)
showMe()
Shows the tab view page.
|