This page has moved to Google Developers. Welcome! Learn more Dismiss

Google Apps Script
Feedback on this document

Ui Services

Build and control a custom user inteface.

Base Classes:

ClassDescription
DateTimeFormatConstantsDate and time format constants for DateBox.
FileTypeConstantsFile type constants for the DocsListDialog.
HorizontalAlignmentConstantsHorizontal alignment constants.
UiInstanceA representation of a user interface.
UiAppCreate user interfaces for use inside Google Apps or as standalone services.
VerticalAlignmentConstantsVertical alignment constants.
AbsolutePanelAn absolute panel positions all of its children absolutely, allowing them to overlap.
AnchorA widget that represents a simple <a> element. That is, a hyperlink to a different page.
ButtonA standard push-button widget.
CaptionPanelA panel that wraps its contents in a border with a caption that appears in the upper left corner of the border.
CheckBoxA standard check box widget.
ClientHandlerAn event handler that runs in the user's browser without needing a call back to the server.
DateBoxA text box that shows a DatePicker when the user focuses on it.
DatePickerA date picker widget.
DeckPanelA panel that displays all of its child widgets in a 'deck', where only one can be visible at a time.
DecoratedPopupPanelA PopupPanel that wraps its content in a 3x3 grid, which allows users to add rounded corners.
DecoratedStackPanelA StackPanel that wraps each item in a 2x3 grid (six box), which allows users to add rounded corners.
DecoratedTabBarA TabBar that wraps each tab in a 2x3 grid (six box), which allows users to add rounded corners.
DecoratedTabPanelA TabPanel that uses a DecoratedTabBar with rounded corners.
DecoratorPanelA SimplePanel that wraps its contents in stylized boxes, which can be used to add rounded corners to a Widget.
DialogBoxA form of popup that has a caption area at the top and can be dragged by the user.
DockPanelA panel that lays its child widgets out "docked" at its outer edges, and allows its last widget to take up the remaining space in its center.
DocsListDialogA file picker for files saved in Google Docs.
FileUploadA widget that wraps the HTML <input type='file'> element.
FlexTableA flexible table that creates cells on demand.
FlowPanelA panel that formats its child widgets using the default HTML layout behavior.
FocusPanelA simple panel that makes its contents focusable, and adds the ability to catch mouse and keyboard events.
FormPanelA panel that wraps its contents in an HTML <FORM> element.
GridA rectangular grid that can contain text, html, or a child widget within its cells.
HiddenRepresents a hidden field for storing data in the user's browser that can be passed back to a handler as a "callback element".
HorizontalPanelA panel that lays all of its widgets out in a single horizontal column.
HTMLA widget that contains arbitrary text, which is interpreted as HTML.
HyperlinkA widget that serves as an "internal" hyperlink.
ImageA widget that displays the image at a given URL.
InlineHyperlinkA widget that serves as an "internal" hyperlink.
InlineLabelA widget that contains arbitrary text, not interpreted as HTML.
LabelA widget that contains arbitrary text, not interpreted as HTML.
LayoutPanelA panel that lays its children out in arbitrary layers.
ListBoxA widget that presents a list of choices to the user, either as a list box or as a drop-down list.
MenuBarA standard menu bar widget.
MenuItemAn entry in a MenuBar.
MenuItemSeparatorA separator that can be placed in a MenuBar.
PasswordTextBoxA text box that visually masks its input to prevent eavesdropping.
PopupPanelA panel that can "pop up" over other widgets.
PushButtonA normal push button with custom styling.
RadioButtonA mutually-exclusive selection radio button widget.
ResetButtonA standard push-button widget which will automatically reset its enclosing FormPanel if any.
RichTextAreaA rich text editor that allows complex styling and formatting.
ScrollPanelA panel that wraps its contents in a scrollable element.
ServerHandlerAn event handler that runs on the server.
SimpleCheckBoxA simple checkbox widget, with no label.
SimplePanelA panel that can contain only one widget.
SimpleRadioButtonA simple radio button widget, with no label.
SplitLayoutPanelA panel that adds user-positioned splitters between each of its child widgets.
StackPanelA panel that stacks its children vertically, displaying only one at a time, with a header for each child which the user can click to display.
SubmitButtonA standard push-button widget which will automatically submit its enclosing FormPanel if any.
SuggestBoxA SuggestBox is a text box or text area which displays a pre-configured set of selections that match the user's input.
TabBarA horizontal bar of folder-style tabs, most commonly used as part of a TabPanel.
TabPanelA panel that represents a tabbed set of pages, each of which contains another widget.
TextAreaA text box that allows multiple lines of text to be entered.
TextBoxA standard single-line text box.
ToggleButtonA ToggleButton is a stylish stateful button which allows the user to toggle between up and down states.
TreeItemAn item that can be contained within a Tree.
TreeA standard hierarchical tree widget.
VerticalPanelA panel that lays all of its widgets out in a single vertical column.

class DateTimeFormatConstants

Members:

MemberTypeDescription
ISO_8601EnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
RFC_2822EnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_FULLEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_LONGEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_MEDIUMEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_SHORTEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
TIME_FULLEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
TIME_LONGEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
TIME_MEDIUMEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
TIME_SHORTEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_TIME_FULLEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_TIME_LONGEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_TIME_MEDIUMEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DATE_TIME_SHORTEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
HOUR_MINUTEEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
HOUR_MINUTE_SECONDEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
HOUR24_MINUTEEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
HOUR24_MINUTE_SECONDEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
MINUTE_SECONDEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
MONTHEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
MONTH_ABBREnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
MONTH_ABBR_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
MONTH_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
MONTH_NUM_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
MONTH_WEEKDAY_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAREnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_MONTHEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_MONTH_ABBREnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_MONTH_ABBR_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_MONTH_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_MONTH_NUMEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_MONTH_NUM_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_MONTH_WEEKDAY_DAYEnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_QUARTEREnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.
YEAR_QUARTER_ABBREnumConstants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox.

class FileTypeConstants

Members:

MemberTypeDescription
ALLEnumConstants to use with UiApp.
ALL_DOCSEnumConstants to use with UiApp.
DRAWINGSEnumConstants to use with UiApp.
DOCUMENTSEnumConstants to use with UiApp.
SPREADSHEETSEnumConstants to use with UiApp.
FOLDERSEnumConstants to use with UiApp.
RECENTLY_PICKEDEnumConstants to use with UiApp.
PRESENTATIONSEnumConstants to use with UiApp.
FORMSEnumConstants to use with UiApp.
PHOTOSEnumConstants to use with UiApp.
PHOTO_ALBUMSEnumConstants to use with UiApp.
PDFSEnumConstants to use with UiApp.

class HorizontalAlignmentConstants

Members:

MemberTypeDescription
LEFTEnumConstants to use with setHorizontalAlignment methods in UiApp.
RIGHTEnumConstants to use with setHorizontalAlignment methods in UiApp.
CENTEREnumConstants to use with setHorizontalAlignment methods in UiApp.
DEFAULTEnumConstants to use with setHorizontalAlignment methods in UiApp.
JUSTIFYEnumConstants to use with setHorizontalAlignment methods in UiApp.
LOCALE_STARTEnumConstants to use with setHorizontalAlignment methods in UiApp.
LOCALE_ENDEnumConstants to use with setHorizontalAlignment methods in UiApp.

class UiInstance

Members:

MemberTypeDescription
getIdStringReturns the id that has been assigned to this object.
setTitleUiInstanceSets the title of the application.
addUiInstanceAdds a new widget to this application.
setWidthUiInstanceSets the application's width.
setHeightUiInstanceSets the application's height.
closeClose the app.
setStyleAttributeUiInstanceSets one of the application's style attributes to a new value.
createAbsolutePanelAbsolutePanelCreates a new AbsolutePanel.
createAnchorAnchorCreates a new Anchor.
createAnchorAnchorCreates a new Anchor.
createButtonButtonCreates a new Button.
createButtonButtonCreates a new Button.
createButtonButtonCreates a new Button.
createCaptionPanelCaptionPanelCreates a new CaptionPanel.
createCaptionPanelCaptionPanelCreates a new CaptionPanel.
createCaptionPanelCaptionPanelCreates a new CaptionPanel.
createCheckBoxCheckBoxCreates a new CheckBox.
createCheckBoxCheckBoxCreates a new CheckBox.
createCheckBoxCheckBoxCreates a new CheckBox.
createClientHandlerClientHandlerCreates a new ClientHandler.
createDateBoxDateBoxCreates a new DateBox.
createDatePickerDatePickerCreates a new DatePicker.
createDeckPanelDeckPanelCreates a new DeckPanel.
createSimplePanelSimplePanelCreates a new SimplePanel.
createPopupPanelPopupPanelCreates a new PopupPanel.
createPopupPanelPopupPanelCreates a new PopupPanel.
createPopupPanelPopupPanelCreates a new PopupPanel.
createDecoratedPopupPanelDecoratedPopupPanelCreates a new DecoratedPopupPanel.
createDecoratedPopupPanelDecoratedPopupPanelCreates a new DecoratedPopupPanel.
createDecoratedPopupPanelDecoratedPopupPanelCreates a new DecoratedPopupPanel.
createStackPanelStackPanelCreates a new StackPanel.
createDecoratedStackPanelDecoratedStackPanelCreates a new DecoratedStackPanel.
createTabBarTabBarCreates a new TabBar.
createDecoratedTabBarDecoratedTabBarCreates a new DecoratedTabBar.
createTabPanelTabPanelCreates a new TabPanel.
createDecoratedTabPanelDecoratedTabPanelCreates a new DecoratedTabPanel.
createDecoratorPanelDecoratorPanelCreates a new DecoratorPanel.
createDialogBoxDialogBoxCreates a new DialogBox.
createDialogBoxDialogBoxCreates a new DialogBox.
createDialogBoxDialogBoxCreates a new DialogBox.
createDockPanelDockPanelCreates a new DockPanel.
createDocsListDialogDocsListDialogCreate a new DocsListDialog.
createFileUploadFileUploadCreates a new FileUpload.
createFlexTableFlexTableCreates a new FlexTable.
createFlowPanelFlowPanelCreates a new FlowPanel.
createFocusPanelFocusPanelCreates a new FocusPanel.
createFocusPanelFocusPanelCreates a new FocusPanel with a specified child Widget.
createFormPanelFormPanelCreates a new FormPanel.
createGridGridCreates a new Grid.
createGridGridCreates a new Grid with a specified size.
createLabelLabelCreates a new Label with no text.
createLabelLabelCreates a new Label with the specified text.
createLabelLabelCreates a new Label with the specified text.
createHiddenHiddenCreates a new Hidden.
createHiddenHiddenCreates a new Hidden with a specified name.
createHiddenHiddenCreates a new Hidden with a specified name and value.
createHorizontalPanelHorizontalPanelCreates a new HorizontalPanel.
createHTMLHTMLCreates a new HTML with no text.
createHTMLHTMLCreates a new HTML with the specified text.
createHTMLHTMLCreates a new HTML with the specified text.
createImageImageCreates a new Image.
createImageImageCreates a new Image with the specified URL.
createImageImageCreates a new Image with the specified URL and clipping rectangle.
createInlineLabelInlineLabelCreates a new InlineLabel with no text.
createInlineLabelInlineLabelCreates a new InlineLabel with the specified text.
createListBoxListBoxCreates a new ListBox.
createListBoxListBoxCreates a new ListBox.
createMenuBarMenuBarCreates a new MenuBar.
createMenuBarMenuBarCreates a new MenuBar.
createMenuItemMenuItemCreates a new MenuItem.
createMenuItemMenuItemCreates a new MenuItem.
createMenuItemSeparatorMenuItemSeparatorCreates a new MenuItemSeparator.
createTextBoxTextBoxCreates a new TextBox.
createPasswordTextBoxPasswordTextBoxCreates a new PasswordTextBox.
createPushButtonPushButtonCreates a new PushButton.
createPushButtonPushButtonCreates a new PushButton.
createPushButtonPushButtonCreates a new PushButton.
createPushButtonPushButtonCreates a new PushButton.
createPushButtonPushButtonCreates a new PushButton.
createRadioButtonRadioButtonCreates a new RadioButton.
createRadioButtonRadioButtonCreates a new RadioButton.
createRadioButtonRadioButtonCreates a new RadioButton.
createResetButtonResetButtonCreates a new ResetButton.
createResetButtonResetButtonCreates a new ResetButton.
createResetButtonResetButtonCreates a new ResetButton.
createRichTextAreaRichTextAreaCreates a new RichTextArea.
createScrollPanelScrollPanelCreates a new ScrollPanel.
createScrollPanelScrollPanelCreates a new ScrollPanel with a specified child Widget.
createSimpleCheckBoxSimpleCheckBoxCreates a new SimpleCheckBox.
createSimpleRadioButtonSimpleRadioButtonCreates a new SimpleRadioButton.
createSplitLayoutPanelSplitLayoutPanelCreates a new SplitLayoutPanel.
createSubmitButtonSubmitButtonCreates a new SubmitButton.
createSubmitButtonSubmitButtonCreates a new SubmitButton.
createTextAreaTextAreaCreates a new TextArea.
createToggleButtonToggleButtonCreates a new ToggleButton.
createToggleButtonToggleButtonCreates a new ToggleButton.
createToggleButtonToggleButtonCreates a new ToggleButton.
createToggleButtonToggleButtonCreates a new ToggleButton.
createTreeTreeCreates a new Tree.
createTreeItemTreeItemCreates a new TreeItem.
createTreeItemTreeItemCreates a new TreeItem with the given text.
createTreeItemTreeItemCreates a new TreeItem with the given widget.
createVerticalPanelVerticalPanelCreates a new VerticalPanel.
createServerHandlerServerHandlerCreates a new ServerHandler.
createServerHandlerServerHandlerCreates a new ServerHandler.
setStandardsModeUiInstanceSet whether the UiApp displays in HTML 'standards' mode or in 'quirks' mode.
loadComponentGenericWidgetLoad a GUI Builder component into UiApp, by name.
loadComponentGenericWidgetLoad a GUI Builder component into UiApp, by name.
getElementByIdGenericWidgetRetrieves a generic reference to an element stored in the application, by its id.
removeUiInstanceRemove the widget with the given index from the application.
removeUiInstanceRemove the given widget from the application.

class UiApp

Members:

MemberTypeDescription
createApplicationUiInstanceCreate a new UiInstance, which you can use to build a UI.
getActiveApplicationUiInstanceGets the active UiInstance.
getUserAgentStringReturn the browser user-agent string, so that you can tailor your app as needed.

class VerticalAlignmentConstants

Members:

MemberTypeDescription
TOPEnumConstants to use with setVerticalAlignment methods in UiApp.
MIDDLEEnumConstants to use with setVerticalAlignment methods in UiApp.
BOTTOMEnumConstants to use with setVerticalAlignment methods in UiApp.

class AbsolutePanel

Members:

MemberTypeDescription
setWidgetPositionAbsolutePanelSet the position of a widget that is already a child of the AbsolutePanel.
addAbsolutePanelAdd a widget to the AbsolutePanel.
setIdAbsolutePanelSets the id of this AbsolutePanel.
setSizeAbsolutePanelSets the size of this AbsolutePanel.
setStyleAttributeAbsolutePanelSets one of this AbsolutePanel's style attributes to a new value.
setStyleAttributesAbsolutePanelSets this AbsolutePanel's style attributes.
setTitleAbsolutePanelSets the hover title of this AbsolutePanel.
setHeightAbsolutePanelSets the height of this AbsolutePanel.
setVisibleAbsolutePanelSets whether this AbsolutePanel is visible.
setPixelSizeAbsolutePanelSets the size of this AbsolutePanel in pixels.
setWidthAbsolutePanelSets the width of this AbsolutePanel.
setStylePrimaryNameAbsolutePanelSets the primary style name of this AbsolutePanel.
addStyleDependentNameAbsolutePanelSets the dependent style name of this AbsolutePanel.
setStyleNameAbsolutePanelSets the style name of this AbsolutePanel.
addStyleNameAbsolutePanelAdds a style name to this AbsolutePanel.
getIdStringReturns the id that has been assigned to this object.
clearAbsolutePanelRemove all widgets from the AbsolutePanel.
getTagStringGets the text tag of this AbsolutePanel.
setTagAbsolutePanelSets the text tag of this AbsolutePanel.
addAbsolutePanelAdd a widget to the AbsolutePanel.
removeAbsolutePanelRemove the widget with the given index from the AbsolutePanel.
removeAbsolutePanelRemove the given widget from the AbsolutePanel.

class Anchor

Members:

MemberTypeDescription
setSizeAnchorSets the size of this Anchor.
setStyleAttributeAnchorSets one of this Anchor's style attributes to a new value.
setStyleAttributesAnchorSets this Anchor's style attributes.
setTitleAnchorSets the hover title of this Anchor.
setHeightAnchorSets the height of this Anchor.
setVisibleAnchorSets whether this Anchor is visible.
setPixelSizeAnchorSets the size of this Anchor in pixels.
setWidthAnchorSets the width of this Anchor.
setStylePrimaryNameAnchorSets the primary style name of this Anchor.
addStyleDependentNameAnchorSets the dependent style name of this Anchor.
setStyleNameAnchorSets the style name of this Anchor.
addStyleNameAnchorAdds a style name to this Anchor.
addClickHandlerAnchorAdd a handler for click events.
setHTMLAnchorSets the HTML content of this Anchor.
getTagStringGets the text tag of this Anchor.
setTagAnchorSets the text tag of this Anchor.
setHrefAnchorSet the URL that this Anchor links to.
setTargetAnchorSet the target of this link.
setNameAnchorSet the name of this link, rather than the target.
setEnabledAnchorSets whether the Anchor is enabled.
setIdAnchorSets the id of this Anchor.
addMouseDownHandlerAnchorAdd a handler for mouse down events.
addMouseMoveHandlerAnchorAdd a handler for mouse move events.
addMouseOutHandlerAnchorAdd a handler for mouse out events.
addMouseOverHandlerAnchorAdd a handler for mouse move events.
addMouseUpHandlerAnchorAdd a handler for mouse up events.
addMouseWheelHandlerAnchorAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
setNameAnchorSets the name of the Anchor, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
addKeyDownHandlerAnchorAdd a handler for key down events.
addKeyPressHandlerAnchorAdd a handler for key press events.
addKeyUpHandlerAnchorAdd a handler for key up events.
setFocusAnchorExplicitly focus/unfocus this Anchor.
setTabIndexAnchorSets the Anchor's position in the tab index.
setTextAnchorSet the display text of this Anchor.
addFocusHandlerAnchorAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerAnchorAdd a handler for blur events (losing keyboard focus).

class Button

Members:

MemberTypeDescription
setSizeButtonSets the size of this Button.
setStyleAttributeButtonSets one of this Button's style attributes to a new value.
setStyleAttributesButtonSets this Button's style attributes.
setTitleButtonSets the hover title of this Button.
setHeightButtonSets the height of this Button.
setVisibleButtonSets whether this Button is visible.
setPixelSizeButtonSets the size of this Button in pixels.
setWidthButtonSets the width of this Button.
setStylePrimaryNameButtonSets the primary style name of this Button.
addStyleDependentNameButtonSets the dependent style name of this Button.
setStyleNameButtonSets the style name of this Button.
addStyleNameButtonAdds a style name to this Button.
addClickHandlerButtonAdd a handler for click events.
setHTMLButtonSets the HTML content of this Button.
getTagStringGets the text tag of this Button.
setTagButtonSets the text tag of this Button.
setEnabledButtonSets whether the Button is enabled.
setIdButtonSets the id of this Button.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerButtonAdd a handler for mouse down events.
addMouseMoveHandlerButtonAdd a handler for mouse move events.
addMouseOutHandlerButtonAdd a handler for mouse out events.
addMouseOverHandlerButtonAdd a handler for mouse move events.
addMouseUpHandlerButtonAdd a handler for mouse up events.
addMouseWheelHandlerButtonAdd a handler for mouse wheel events.
addKeyDownHandlerButtonAdd a handler for key down events.
addKeyPressHandlerButtonAdd a handler for key press events.
addKeyUpHandlerButtonAdd a handler for key up events.
setFocusButtonExplicitly focus/unfocus this Button.
setTabIndexButtonSets the Button's position in the tab index.
addFocusHandlerButtonAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerButtonAdd a handler for blur events (losing keyboard focus).
setTextButtonSet the display text of this Button.

class CaptionPanel

Members:

MemberTypeDescription
addCaptionPanelAdd a widget to the CaptionPanel. This is a synonym for setWidget(Widget).
setSizeCaptionPanelSets the size of this CaptionPanel.
setStyleAttributeCaptionPanelSets one of this CaptionPanel's style attributes to a new value.
setStyleAttributesCaptionPanelSets this CaptionPanel's style attributes.
setTitleCaptionPanelSets the hover title of this CaptionPanel.
setHeightCaptionPanelSets the height of this CaptionPanel.
setVisibleCaptionPanelSets whether this CaptionPanel is visible.
setPixelSizeCaptionPanelSets the size of this CaptionPanel in pixels.
setWidthCaptionPanelSets the width of this CaptionPanel.
setStylePrimaryNameCaptionPanelSets the primary style name of this CaptionPanel.
addStyleDependentNameCaptionPanelSets the dependent style name of this CaptionPanel.
setStyleNameCaptionPanelSets the style name of this CaptionPanel.
addStyleNameCaptionPanelAdds a style name to this CaptionPanel.
getTagStringGets the text tag of this CaptionPanel.
setTagCaptionPanelSets the text tag of this CaptionPanel.
setIdCaptionPanelSets the id of this CaptionPanel.
getIdStringReturns the id that has been assigned to this object.
clearCaptionPanelRemove all widgets from the CaptionPanel.
addCaptionPanelAdd a widget to the CaptionPanel.
setTextCaptionPanelSet the display text of this CaptionPanel.
setWidgetCaptionPanelSets the widget inside this CaptionPanel, removing anything previously there.

class CheckBox

Members:

MemberTypeDescription
setSizeCheckBoxSets the size of this CheckBox.
setStyleAttributeCheckBoxSets one of this CheckBox's style attributes to a new value.
setStyleAttributesCheckBoxSets this CheckBox's style attributes.
setTitleCheckBoxSets the hover title of this CheckBox.
setHeightCheckBoxSets the height of this CheckBox.
setVisibleCheckBoxSets whether this CheckBox is visible.
setPixelSizeCheckBoxSets the size of this CheckBox in pixels.
setWidthCheckBoxSets the width of this CheckBox.
setStylePrimaryNameCheckBoxSets the primary style name of this CheckBox.
addStyleDependentNameCheckBoxSets the dependent style name of this CheckBox.
setStyleNameCheckBoxSets the style name of this CheckBox.
addStyleNameCheckBoxAdds a style name to this CheckBox.
addClickHandlerCheckBoxAdd a handler for click events.
setHTMLCheckBoxSets the HTML content of this CheckBox.
getTagStringGets the text tag of this CheckBox.
setTagCheckBoxSets the text tag of this CheckBox.
setFormValueCheckBoxSet the value property on the input element that backs this CheckBox.
setValueCheckBoxSets whether the CheckBox should be checked.
setValueCheckBoxSets whether the CheckBox should be checked and optionally fires an event if the value changes as a result of this call.
setEnabledCheckBoxSets whether the CheckBox is enabled.
addValueChangeHandlerCheckBoxAdd a handler for value change events.
setIdCheckBoxSets the id of this CheckBox.
addMouseDownHandlerCheckBoxAdd a handler for mouse down events.
addMouseMoveHandlerCheckBoxAdd a handler for mouse move events.
addMouseOutHandlerCheckBoxAdd a handler for mouse out events.
addMouseOverHandlerCheckBoxAdd a handler for mouse move events.
addMouseUpHandlerCheckBoxAdd a handler for mouse up events.
addMouseWheelHandlerCheckBoxAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
setNameCheckBoxSets the name of the CheckBox, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
addKeyDownHandlerCheckBoxAdd a handler for key down events.
addKeyPressHandlerCheckBoxAdd a handler for key press events.
addKeyUpHandlerCheckBoxAdd a handler for key up events.
setFocusCheckBoxExplicitly focus/unfocus this CheckBox.
setTabIndexCheckBoxSets the CheckBox's position in the tab index.
setTextCheckBoxSet the display text of this CheckBox.
addFocusHandlerCheckBoxAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerCheckBoxAdd a handler for blur events (losing keyboard focus).

class ClientHandler

Members:

MemberTypeDescription
setIdClientHandlerSets the id of this ClientHandler.
getIdStringReturns the id that has been assigned to this object.
getTagStringGets the text tag of this ClientHandler.
setTagClientHandlerSets the text tag of this ClientHandler.
setStyleAttributeClientHandlerA directive to set a style attribute on a grid element.
setStyleAttributeClientHandlerA directive to set a style attribute on the widgets the handler is targeted to.
setStyleAttributesClientHandlerA directive to set style attributes on a grid element.
setStyleAttributesClientHandlerA directive to set style attributes on the widgets the handler is targeted to.
forEventSourceClientHandlerSets the target of this handler for subsequent directives to be whatever widget triggered the event that this handler was called for.
setVisibleClientHandlerA directive to set the visibility of the widgets this handler is targeted to.
setEnabledClientHandlerA directive to set the enabled/disabled state of the widgets this handler is targeted to.
setTextClientHandlerA directive to set the text of the widgets this handler is targeted to.
setHTMLClientHandlerA directive to set the html text of the widgets this handler is targeted to.
setValueClientHandlerA directive to set the boolean value of the widgets this handler is targeted to.
forTargetsClientHandlerSets the target of this handler for subsequent directives to be the given widgets.
validateLengthClientHandlerSets this handler to fire only if the given widget's value is a string whose length is between min and max.
validateNotMatchesClientHandlerSets this handler to fire only if the given widget's value does not match this regular expression.
validateNotMatchesClientHandlerSets this handler to fire only if the given widget's value does not match this regular expression.
validateNotRangeClientHandlerSets this handler to fire only if the given widget's value cannot be interpreted as a number that is between min and max.
validateEmailClientHandlerSets this handler to fire only if the given widget's value is a valid email address.
validateRangeClientHandlerSets this handler to fire only if the given widget's value can be interpreted as a number and is between min and max.
validateMatchesClientHandlerSets this handler to fire only if the given widget's value matches this regular expression.
validateMatchesClientHandlerSets this handler to fire only if the given widget's value matches this regular expression.
validateIntegerClientHandlerSets this handler to fire only if the given widget's value can be interpreted as an integer.
validateNotEmailClientHandlerSets this handler to fire only if the given widget's value is not a valid email address.
validateNotNumberClientHandlerSets this handler to fire only if the given widget's value cannot be interpreted as an number.
validateNotLengthClientHandlerSets this handler to fire only if the given widget's value is a string whose length is less than min or greater than max.
validateNotSumClientHandlerSets this handler to fire only if the given widgets have values that are not numbers, or that do not sum up to the given value.
validateOptionsClientHandlerSets this handler to fire only if the given widget's value is one of the strings given in the options parameter.
validateNotOptionsClientHandlerSets this handler to fire only if the given widget's value is not one of the strings given in the options parameter.
validateNumberClientHandlerSets this handler to fire only if the given widget's value can be interpreted as a number.
validateNotIntegerClientHandlerSets this handler to fire only if the given widget's value cannot be interpreted as an integer.
validateSumClientHandlerSets this handler to fire only if the given widgets have values that are numbers and sum up to the given value.

class DateBox

Members:

MemberTypeDescription
setEnabledDateBoxSets whether the DateBox is enabled.
addValueChangeHandlerDateBoxAdd a handler for value change events.
setIdDateBoxSets the id of this DateBox.
setSizeDateBoxSets the size of this DateBox.
setStyleAttributeDateBoxSets one of this DateBox's style attributes to a new value.
setStyleAttributesDateBoxSets this DateBox's style attributes.
setTitleDateBoxSets the hover title of this DateBox.
setHeightDateBoxSets the height of this DateBox.
setVisibleDateBoxSets whether this DateBox is visible.
setPixelSizeDateBoxSets the size of this DateBox in pixels.
setWidthDateBoxSets the width of this DateBox.
setStylePrimaryNameDateBoxSets the primary style name of this DateBox.
addStyleDependentNameDateBoxSets the dependent style name of this DateBox.
setStyleNameDateBoxSets the style name of this DateBox.
addStyleNameDateBoxAdds a style name to this DateBox.
getIdStringReturns the id that has been assigned to this object.
showDatePickerDateBoxParses the current DateBox's value and shows that date.
setFormatDateBoxSets the format used to control formatting and parsing of dates in this DateBox.
hideDatePickerDateBoxHide the date picker.
setValueDateBoxSets the date shown by this DateBox.
getTagStringGets the text tag of this DateBox.
setTagDateBoxSets the text tag of this DateBox.
setFocusDateBoxExplicitly focus/unfocus this DateBox.
setTabIndexDateBoxSets the DateBox's position in the tab index.
setNameDateBoxSets the name of the DateBox, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.

class DatePicker

Members:

MemberTypeDescription
setCurrentMonthDatePickerSets the DatePicker to show the given month without selecting a particular date.
addValueChangeHandlerDatePickerAdd a handler for value change events.
setIdDatePickerSets the id of this DatePicker.
setSizeDatePickerSets the size of this DatePicker.
setStyleAttributeDatePickerSets one of this DatePicker's style attributes to a new value.
setStyleAttributesDatePickerSets this DatePicker's style attributes.
setTitleDatePickerSets the hover title of this DatePicker.
setHeightDatePickerSets the height of this DatePicker.
setVisibleDatePickerSets whether this DatePicker is visible.
setPixelSizeDatePickerSets the size of this DatePicker in pixels.
setWidthDatePickerSets the width of this DatePicker.
setStylePrimaryNameDatePickerSets the primary style name of this DatePicker.
addStyleDependentNameDatePickerSets the dependent style name of this DatePicker.
setStyleNameDatePickerSets the style name of this DatePicker.
addStyleNameDatePickerAdds a style name to this DatePicker.
getIdStringReturns the id that has been assigned to this object.
setValueDatePickerSets the date shown by this DatePicker.
getTagStringGets the text tag of this DatePicker.
setTagDatePickerSets the text tag of this DatePicker.
setNameDatePickerSets the name of the DatePicker, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.

class DeckPanel

Members:

MemberTypeDescription
setAnimationEnabledDeckPanelEnable or disable animations when changing the visible widget.
setSizeDeckPanelSets the size of this DeckPanel.
setStyleAttributeDeckPanelSets one of this DeckPanel's style attributes to a new value.
setStyleAttributesDeckPanelSets this DeckPanel's style attributes.
setTitleDeckPanelSets the hover title of this DeckPanel.
setHeightDeckPanelSets the height of this DeckPanel.
setVisibleDeckPanelSets whether this DeckPanel is visible.
setPixelSizeDeckPanelSets the size of this DeckPanel in pixels.
setWidthDeckPanelSets the width of this DeckPanel.
setStylePrimaryNameDeckPanelSets the primary style name of this DeckPanel.
addStyleDependentNameDeckPanelSets the dependent style name of this DeckPanel.
setStyleNameDeckPanelSets the style name of this DeckPanel.
addStyleNameDeckPanelAdds a style name to this DeckPanel.
getTagStringGets the text tag of this DeckPanel.
setTagDeckPanelSets the text tag of this DeckPanel.
setIdDeckPanelSets the id of this DeckPanel.
getIdStringReturns the id that has been assigned to this object.
clearDeckPanelRemove all widgets from the DeckPanel.
setAnimationEnabledDeckPanelSets whether opening and closing the DeckPanel is animated.
addDeckPanelAdd a widget to the DeckPanel.
removeDeckPanelRemove the widget with the given index from the DeckPanel.
removeDeckPanelRemove the given widget from the DeckPanel.

class DecoratedPopupPanel

Members:

MemberTypeDescription
setSizeDecoratedPopupPanelSets the size of this DecoratedPopupPanel.
setStyleAttributeDecoratedPopupPanelSets one of this DecoratedPopupPanel's style attributes to a new value.
setStyleAttributesDecoratedPopupPanelSets this DecoratedPopupPanel's style attributes.
setTitleDecoratedPopupPanelSets the hover title of this DecoratedPopupPanel.
setHeightDecoratedPopupPanelSets the height of this DecoratedPopupPanel.
setVisibleDecoratedPopupPanelSets whether this DecoratedPopupPanel is visible.
setPixelSizeDecoratedPopupPanelSets the size of this DecoratedPopupPanel in pixels.
setWidthDecoratedPopupPanelSets the width of this DecoratedPopupPanel.
setStylePrimaryNameDecoratedPopupPanelSets the primary style name of this DecoratedPopupPanel.
addStyleDependentNameDecoratedPopupPanelSets the dependent style name of this DecoratedPopupPanel.
setStyleNameDecoratedPopupPanelSets the style name of this DecoratedPopupPanel.
addStyleNameDecoratedPopupPanelAdds a style name to this DecoratedPopupPanel.
getTagStringGets the text tag of this DecoratedPopupPanel.
setTagDecoratedPopupPanelSets the text tag of this DecoratedPopupPanel.
setIdDecoratedPopupPanelSets the id of this DecoratedPopupPanel.
getIdStringReturns the id that has been assigned to this object.
addCloseHandlerDecoratedPopupPanelAdd a handler for close events.
clearDecoratedPopupPanelRemove all widgets from the DecoratedPopupPanel.
setAnimationEnabledDecoratedPopupPanelSets whether opening and closing the DecoratedPopupPanel is animated.
setPopupPositionAndShowDecoratedPopupPanelSet the popup position.
setModalDecoratedPopupPanelSets whether this DecoratedPopupPanel is in "modal" mode.
setGlassEnabledDecoratedPopupPanelEnable or disable a "glass" pane.
setAutoHideEnabledDecoratedPopupPanelEnable or disable the autoHide feature.
setPreviewingAllNativeEventsDecoratedPopupPanelWhen enabled, the DecoratedPopupPanel will preview all native events, even if another popup was opened after this one.
setPopupPositionDecoratedPopupPanelSets the popup's position relative to the browser's client area.
addDecoratedPopupPanelAdd a widget to the DecoratedPopupPanel.
setWidgetDecoratedPopupPanelSets the widget inside this DecoratedPopupPanel, removing anything previously there.

class DecoratedStackPanel

Members:

MemberTypeDescription
setSizeDecoratedStackPanelSets the size of this DecoratedStackPanel.
setStyleAttributeDecoratedStackPanelSets one of this DecoratedStackPanel's style attributes to a new value.
setStyleAttributesDecoratedStackPanelSets this DecoratedStackPanel's style attributes.
setTitleDecoratedStackPanelSets the hover title of this DecoratedStackPanel.
setHeightDecoratedStackPanelSets the height of this DecoratedStackPanel.
setVisibleDecoratedStackPanelSets whether this DecoratedStackPanel is visible.
setPixelSizeDecoratedStackPanelSets the size of this DecoratedStackPanel in pixels.
setWidthDecoratedStackPanelSets the width of this DecoratedStackPanel.
setStylePrimaryNameDecoratedStackPanelSets the primary style name of this DecoratedStackPanel.
addStyleDependentNameDecoratedStackPanelSets the dependent style name of this DecoratedStackPanel.
setStyleNameDecoratedStackPanelSets the style name of this DecoratedStackPanel.
addStyleNameDecoratedStackPanelAdds a style name to this DecoratedStackPanel.
getTagStringGets the text tag of this DecoratedStackPanel.
setTagDecoratedStackPanelSets the text tag of this DecoratedStackPanel.
addDecoratedStackPanelAdds a widget to the stack with the given header text.
addDecoratedStackPanelAdds a widget to the stack with the given header text.
setStackTextDecoratedStackPanelSets the text associated with a child by its index.
setStackTextDecoratedStackPanelSets the text associated with a child by its index.
setIdDecoratedStackPanelSets the id of this DecoratedStackPanel.
getIdStringReturns the id that has been assigned to this object.
clearDecoratedStackPanelRemove all widgets from the DecoratedStackPanel.
addDecoratedStackPanelAdd a widget to the DecoratedStackPanel.
removeDecoratedStackPanelRemove the widget with the given index from the DecoratedStackPanel.
removeDecoratedStackPanelRemove the given widget from the DecoratedStackPanel.

class DecoratedTabBar

Members:

MemberTypeDescription
setSizeDecoratedTabBarSets the size of this DecoratedTabBar.
setStyleAttributeDecoratedTabBarSets one of this DecoratedTabBar's style attributes to a new value.
setStyleAttributesDecoratedTabBarSets this DecoratedTabBar's style attributes.
setTitleDecoratedTabBarSets the hover title of this DecoratedTabBar.
setHeightDecoratedTabBarSets the height of this DecoratedTabBar.
setVisibleDecoratedTabBarSets whether this DecoratedTabBar is visible.
setPixelSizeDecoratedTabBarSets the size of this DecoratedTabBar in pixels.
setWidthDecoratedTabBarSets the width of this DecoratedTabBar.
setStylePrimaryNameDecoratedTabBarSets the primary style name of this DecoratedTabBar.
addStyleDependentNameDecoratedTabBarSets the dependent style name of this DecoratedTabBar.
setStyleNameDecoratedTabBarSets the style name of this DecoratedTabBar.
addStyleNameDecoratedTabBarAdds a style name to this DecoratedTabBar.
getTagStringGets the text tag of this DecoratedTabBar.
setTagDecoratedTabBarSets the text tag of this DecoratedTabBar.
setTabEnabledDecoratedTabBarSet whether the given tab is enabled.
addTabDecoratedTabBarAdd a tab with the given title.
addTabDecoratedTabBarAdd a tab with the given widget as its title.
addTabDecoratedTabBarAdd a tab with the given title.
setIdDecoratedTabBarSets the id of this DecoratedTabBar.
getIdStringReturns the id that has been assigned to this object.
setTabTextDecoratedTabBarSet the header text of a given tab.
selectTabDecoratedTabBarSelect a tab by index.
addSelectionHandlerDecoratedTabBarAdd a handler for selection events.

class DecoratedTabPanel

Members:

MemberTypeDescription
setSizeDecoratedTabPanelSets the size of this DecoratedTabPanel.
setStyleAttributeDecoratedTabPanelSets one of this DecoratedTabPanel's style attributes to a new value.
setStyleAttributesDecoratedTabPanelSets this DecoratedTabPanel's style attributes.
setTitleDecoratedTabPanelSets the hover title of this DecoratedTabPanel.
setHeightDecoratedTabPanelSets the height of this DecoratedTabPanel.
setVisibleDecoratedTabPanelSets whether this DecoratedTabPanel is visible.
setPixelSizeDecoratedTabPanelSets the size of this DecoratedTabPanel in pixels.
setWidthDecoratedTabPanelSets the width of this DecoratedTabPanel.
setStylePrimaryNameDecoratedTabPanelSets the primary style name of this DecoratedTabPanel.
addStyleDependentNameDecoratedTabPanelSets the dependent style name of this DecoratedTabPanel.
setStyleNameDecoratedTabPanelSets the style name of this DecoratedTabPanel.
addStyleNameDecoratedTabPanelAdds a style name to this DecoratedTabPanel.
getTagStringGets the text tag of this DecoratedTabPanel.
setTagDecoratedTabPanelSets the text tag of this DecoratedTabPanel.
addDecoratedTabPanelAdds a widget to the stack with the given header text.
addDecoratedTabPanelAdds a widget to the stack with the given header text.
setAnimationEnabledDecoratedTabPanelSets whether changing tabs DecoratedTabPanel is animated.
setIdDecoratedTabPanelSets the id of this DecoratedTabPanel.
getIdStringReturns the id that has been assigned to this object.
setAnimationEnabledDecoratedTabPanelSets whether opening and closing the DecoratedTabPanel is animated.
addDecoratedTabPanelAdd a widget to the DecoratedTabPanel.
selectTabDecoratedTabPanelSelect a tab by index.
addDecoratedTabPanelAdd a widget to this DecoratedTabPanel with the given widget as its tab header.
addSelectionHandlerDecoratedTabPanelAdd a handler for selection events.

class DecoratorPanel

Members:

MemberTypeDescription
setIdDecoratorPanelSets the id of this DecoratorPanel.
setSizeDecoratorPanelSets the size of this DecoratorPanel.
setStyleAttributeDecoratorPanelSets one of this DecoratorPanel's style attributes to a new value.
setStyleAttributesDecoratorPanelSets this DecoratorPanel's style attributes.
setTitleDecoratorPanelSets the hover title of this DecoratorPanel.
setHeightDecoratorPanelSets the height of this DecoratorPanel.
setVisibleDecoratorPanelSets whether this DecoratorPanel is visible.
setPixelSizeDecoratorPanelSets the size of this DecoratorPanel in pixels.
setWidthDecoratorPanelSets the width of this DecoratorPanel.
setStylePrimaryNameDecoratorPanelSets the primary style name of this DecoratorPanel.
addStyleDependentNameDecoratorPanelSets the dependent style name of this DecoratorPanel.
setStyleNameDecoratorPanelSets the style name of this DecoratorPanel.
addStyleNameDecoratorPanelAdds a style name to this DecoratorPanel.
getIdStringReturns the id that has been assigned to this object.
clearDecoratorPanelRemove all widgets from the DecoratorPanel.
getTagStringGets the text tag of this DecoratorPanel.
setTagDecoratorPanelSets the text tag of this DecoratorPanel.
addDecoratorPanelAdd a widget to the DecoratorPanel.
setWidgetDecoratorPanelSets the widget inside this DecoratorPanel, removing anything previously there.

class DialogBox

Members:

MemberTypeDescription
setSizeDialogBoxSets the size of this DialogBox.
setStyleAttributeDialogBoxSets one of this DialogBox's style attributes to a new value.
setStyleAttributesDialogBoxSets this DialogBox's style attributes.
setTitleDialogBoxSets the hover title of this DialogBox.
setHeightDialogBoxSets the height of this DialogBox.
setVisibleDialogBoxSets whether this DialogBox is visible.
setPixelSizeDialogBoxSets the size of this DialogBox in pixels.
setWidthDialogBoxSets the width of this DialogBox.
setStylePrimaryNameDialogBoxSets the primary style name of this DialogBox.
addStyleDependentNameDialogBoxSets the dependent style name of this DialogBox.
setStyleNameDialogBoxSets the style name of this DialogBox.
addStyleNameDialogBoxAdds a style name to this DialogBox.
setHTMLDialogBoxSets the HTML content of this DialogBox.
getTagStringGets the text tag of this DialogBox.
setTagDialogBoxSets the text tag of this DialogBox.
setTextDialogBoxSets the text inside the caption.
setIdDialogBoxSets the id of this DialogBox.
getIdStringReturns the id that has been assigned to this object.
addCloseHandlerDialogBoxAdd a handler for close events.
clearDialogBoxRemove all widgets from the DialogBox.
setAnimationEnabledDialogBoxSets whether opening and closing the DialogBox is animated.
setPopupPositionAndShowDialogBoxSet the popup position.
setModalDialogBoxSets whether this DialogBox is in "modal" mode.
setGlassEnabledDialogBoxEnable or disable a "glass" pane.
setAutoHideEnabledDialogBoxEnable or disable the autoHide feature.
setPreviewingAllNativeEventsDialogBoxWhen enabled, the DialogBox will preview all native events, even if another popup was opened after this one.
setPopupPositionDialogBoxSets the popup's position relative to the browser's client area.
addDialogBoxAdd a widget to the DialogBox.
setTextDialogBoxSet the display text of this DialogBox.
setWidgetDialogBoxSets the widget inside this DialogBox, removing anything previously there.

class DockPanel

Members:

MemberTypeDescription
setVerticalAlignmentDockPanelSet the vertical alignment of widgets added to this DockPanel.
setHorizontalAlignmentDockPanelSet the horizontal alignment of widgets added to this DockPanel.
setSizeDockPanelSets the size of this DockPanel.
setStyleAttributeDockPanelSets one of this DockPanel's style attributes to a new value.
setStyleAttributesDockPanelSets this DockPanel's style attributes.
setTitleDockPanelSets the hover title of this DockPanel.
setHeightDockPanelSets the height of this DockPanel.
setVisibleDockPanelSets whether this DockPanel is visible.
setPixelSizeDockPanelSets the size of this DockPanel in pixels.
setWidthDockPanelSets the width of this DockPanel.
setStylePrimaryNameDockPanelSets the primary style name of this DockPanel.
addStyleDependentNameDockPanelSets the dependent style name of this DockPanel.
setStyleNameDockPanelSets the style name of this DockPanel.
addStyleNameDockPanelAdds a style name to this DockPanel.
addDockPanelAdd a widget to the DockPanel in the given direction.
getTagStringGets the text tag of this DockPanel.
setTagDockPanelSets the text tag of this DockPanel.
setBorderWidthDockPanelSets the border width.
setIdDockPanelSets the id of this DockPanel.
getIdStringReturns the id that has been assigned to this object.
clearDockPanelRemove all widgets from the DockPanel.
setCellWidthDockPanelSets the width of the cell associated with the given widget, related to the panel as a whole.
setCellVerticalAlignmentDockPanelSets the vertical alignment of the given widget within its cell.
setCellHorizontalAlignmentDockPanelSets the horizontal alignment of the given widget within its cell.
setSpacingDockPanelSets the amount of spacing between this panel's cells.
setBorderWidthDockPanelSets the width of the border to be applied to all cells in this panel.
setCellHeightDockPanelSets the height of the cell associated with the given widget, related to the panel as a whole.
removeDockPanelRemove the widget with the given index from the DockPanel.
removeDockPanelRemove the given widget from the DockPanel.

class DocsListDialog

Members:

MemberTypeDescription
getIdStringReturns the id that has been assigned to this object.
addCloseHandlerDocsListDialogAdd a handler for close events.
addSelectionHandlerDocsListDialogAdd a handler for selection events.
showDocsPickerDocsListDialogShow this DocsListDialog.
setDialogTitleDocsListDialogSet the title of this DocsListDialog.
setInitialViewDocsListDialogSet the initial type of file that this DocsListDialog will show.
addViewDocsListDialogAdd a type of file that this DocsListDialog will show.
setHeightDocsListDialogSet the height of this DocsListDialog.
setMultiSelectEnabledDocsListDialogSet whether multiple items can be selected.
setWidthDocsListDialogSet the width of this DocsListDialog.

class FileUpload

Members:

MemberTypeDescription
setEnabledFileUploadSets whether the FileUpload is enabled.
setIdFileUploadSets the id of this FileUpload.
setSizeFileUploadSets the size of this FileUpload.
setStyleAttributeFileUploadSets one of this FileUpload's style attributes to a new value.
setStyleAttributesFileUploadSets this FileUpload's style attributes.
setTitleFileUploadSets the hover title of this FileUpload.
setHeightFileUploadSets the height of this FileUpload.
setVisibleFileUploadSets whether this FileUpload is visible.
setPixelSizeFileUploadSets the size of this FileUpload in pixels.
setWidthFileUploadSets the width of this FileUpload.
setStylePrimaryNameFileUploadSets the primary style name of this FileUpload.
addStyleDependentNameFileUploadSets the dependent style name of this FileUpload.
setStyleNameFileUploadSets the style name of this FileUpload.
addStyleNameFileUploadAdds a style name to this FileUpload.
addChangeHandlerFileUploadAdd a handler for change events.
getIdStringReturns the id that has been assigned to this object.
setNameFileUploadSets the name of the FileUpload, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getTagStringGets the text tag of this FileUpload.
setTagFileUploadSets the text tag of this FileUpload.

class FlexTable

Members:

MemberTypeDescription
setSizeFlexTableSets the size of this FlexTable.
setStyleAttributeFlexTableSets one of this FlexTable's style attributes to a new value.
setStyleAttributesFlexTableSets this FlexTable's style attributes.
setTitleFlexTableSets the hover title of this FlexTable.
setHeightFlexTableSets the height of this FlexTable.
setVisibleFlexTableSets whether this FlexTable is visible.
setPixelSizeFlexTableSets the size of this FlexTable in pixels.
setWidthFlexTableSets the width of this FlexTable.
setStylePrimaryNameFlexTableSets the primary style name of this FlexTable.
addStyleDependentNameFlexTableSets the dependent style name of this FlexTable.
setStyleNameFlexTableSets the style name of this FlexTable.
addStyleNameFlexTableAdds a style name to this FlexTable.
addClickHandlerFlexTableAdd a handler for click events.
insertRowFlexTableInserts a row into the FlexTable before the given row.
insertCellFlexTableInserts a cell into the FlexTable.
addCellFlexTableAppends a cell to the specified row.
removeCellFlexTableRemoves the specified cell from the FlexTable.
removeRowFlexTableRemoves the specified row from the FlexTable.
removeCellsFlexTableRemoves a number of cells from one row in the FlexTable.
getTagStringGets the text tag of this FlexTable.
setTagFlexTableSets the text tag of this FlexTable.
setBorderWidthFlexTableSets the border width.
setStyleAttributeFlexTableSets a CSS style on a cell of this FlexTable.
setStyleAttributesFlexTableSets CSS styles on a cell of this FlexTable.
setCellSpacingFlexTableSets the spacing between cells.
setCellPaddingFlexTableSets the padding within cells.
setWidgetFlexTableSets the widget in a given cell. A cell can contain at most one widget.
setTextFlexTableSets the contents of a given cell to the given text.
setIdFlexTableSets the id of this FlexTable.
getIdStringReturns the id that has been assigned to this object.
clearFlexTableRemove all widgets from the FlexTable.

class FlowPanel

Members:

MemberTypeDescription
setIdFlowPanelSets the id of this FlowPanel.
setSizeFlowPanelSets the size of this FlowPanel.
setStyleAttributeFlowPanelSets one of this FlowPanel's style attributes to a new value.
setStyleAttributesFlowPanelSets this FlowPanel's style attributes.
setTitleFlowPanelSets the hover title of this FlowPanel.
setHeightFlowPanelSets the height of this FlowPanel.
setVisibleFlowPanelSets whether this FlowPanel is visible.
setPixelSizeFlowPanelSets the size of this FlowPanel in pixels.
setWidthFlowPanelSets the width of this FlowPanel.
setStylePrimaryNameFlowPanelSets the primary style name of this FlowPanel.
addStyleDependentNameFlowPanelSets the dependent style name of this FlowPanel.
setStyleNameFlowPanelSets the style name of this FlowPanel.
addStyleNameFlowPanelAdds a style name to this FlowPanel.
getIdStringReturns the id that has been assigned to this object.
clearFlowPanelRemove all widgets from the FlowPanel.
getTagStringGets the text tag of this FlowPanel.
setTagFlowPanelSets the text tag of this FlowPanel.
addFlowPanelAdd a widget to the FlowPanel.
removeFlowPanelRemove the widget with the given index from the FlowPanel.
removeFlowPanelRemove the given widget from the FlowPanel.
insertFlowPanelAdd a widget to the FlowPanel at a specific index.

class FocusPanel

Members:

MemberTypeDescription
addClickHandlerFocusPanelAdd a handler for click events.
setSizeFocusPanelSets the size of this FocusPanel.
setStyleAttributeFocusPanelSets one of this FocusPanel's style attributes to a new value.
setStyleAttributesFocusPanelSets this FocusPanel's style attributes.
setTitleFocusPanelSets the hover title of this FocusPanel.
setHeightFocusPanelSets the height of this FocusPanel.
setVisibleFocusPanelSets whether this FocusPanel is visible.
setPixelSizeFocusPanelSets the size of this FocusPanel in pixels.
setWidthFocusPanelSets the width of this FocusPanel.
setStylePrimaryNameFocusPanelSets the primary style name of this FocusPanel.
addStyleDependentNameFocusPanelSets the dependent style name of this FocusPanel.
setStyleNameFocusPanelSets the style name of this FocusPanel.
addStyleNameFocusPanelAdds a style name to this FocusPanel.
getTagStringGets the text tag of this FocusPanel.
setTagFocusPanelSets the text tag of this FocusPanel.
setIdFocusPanelSets the id of this FocusPanel.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerFocusPanelAdd a handler for mouse down events.
addMouseMoveHandlerFocusPanelAdd a handler for mouse move events.
addMouseOutHandlerFocusPanelAdd a handler for mouse out events.
addMouseOverHandlerFocusPanelAdd a handler for mouse move events.
addMouseUpHandlerFocusPanelAdd a handler for mouse up events.
addMouseWheelHandlerFocusPanelAdd a handler for mouse wheel events.
clearFocusPanelRemove all widgets from the FocusPanel.
addKeyDownHandlerFocusPanelAdd a handler for key down events.
addKeyPressHandlerFocusPanelAdd a handler for key press events.
addKeyUpHandlerFocusPanelAdd a handler for key up events.
setFocusFocusPanelExplicitly focus/unfocus this FocusPanel.
setTabIndexFocusPanelSets the FocusPanel's position in the tab index.
addFocusPanelAdd a widget to the FocusPanel.
addFocusHandlerFocusPanelAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerFocusPanelAdd a handler for blur events (losing keyboard focus).
setWidgetFocusPanelSets the widget inside this FocusPanel, removing anything previously there.

class FormPanel

Members:

MemberTypeDescription
addSubmitCompleteHandlerFormPanelAdd a handler for when the form is submitted and the server has finished processing the results.
addSubmitHandlerFormPanelAdd a handler for when the form is submitted.
setMethodFormPanelSets the HTTP method used for submitting this form.
setActionFormPanelSets the URL to submit this form to.
setEncodingFormPanelSets the encoding used for submitting this form.
setIdFormPanelSets the id of this FormPanel.
setSizeFormPanelSets the size of this FormPanel.
setStyleAttributeFormPanelSets one of this FormPanel's style attributes to a new value.
setStyleAttributesFormPanelSets this FormPanel's style attributes.
setTitleFormPanelSets the hover title of this FormPanel.
setHeightFormPanelSets the height of this FormPanel.
setVisibleFormPanelSets whether this FormPanel is visible.
setPixelSizeFormPanelSets the size of this FormPanel in pixels.
setWidthFormPanelSets the width of this FormPanel.
setStylePrimaryNameFormPanelSets the primary style name of this FormPanel.
addStyleDependentNameFormPanelSets the dependent style name of this FormPanel.
setStyleNameFormPanelSets the style name of this FormPanel.
addStyleNameFormPanelAdds a style name to this FormPanel.
getIdStringReturns the id that has been assigned to this object.
clearFormPanelRemove all widgets from the FormPanel.
getTagStringGets the text tag of this FormPanel.
setTagFormPanelSets the text tag of this FormPanel.
addFormPanelAdd a widget to the FormPanel.
setWidgetFormPanelSets the widget inside this FormPanel, removing anything previously there.

class Grid

Members:

MemberTypeDescription
setSizeGridSets the size of this Grid.
setStyleAttributeGridSets one of this Grid's style attributes to a new value.
setStyleAttributesGridSets this Grid's style attributes.
setTitleGridSets the hover title of this Grid.
setHeightGridSets the height of this Grid.
setVisibleGridSets whether this Grid is visible.
setPixelSizeGridSets the size of this Grid in pixels.
setWidthGridSets the width of this Grid.
setStylePrimaryNameGridSets the primary style name of this Grid.
addStyleDependentNameGridSets the dependent style name of this Grid.
setStyleNameGridSets the style name of this Grid.
addStyleNameGridAdds a style name to this Grid.
addClickHandlerGridAdd a handler for click events.
getTagStringGets the text tag of this Grid.
setTagGridSets the text tag of this Grid.
setBorderWidthGridSets the border width.
setStyleAttributeGridSets a CSS style on a cell of this Grid.
setStyleAttributesGridSets CSS styles on a cell of this Grid.
setCellSpacingGridSets the spacing between cells.
setCellPaddingGridSets the padding within cells.
setWidgetGridSets the widget in a given cell. A cell can contain at most one widget.
setTextGridSets the contents of a given cell to the given text.
setIdGridSets the id of this Grid.
getIdStringReturns the id that has been assigned to this object.
clearGridRemove all widgets from the Grid.
resizeGridResizes the Grid.

class Hidden

Members:

MemberTypeDescription
setIdHiddenSets the id of this Hidden.
setSizeHiddenSets the size of this Hidden.
setStyleAttributeHiddenSets one of this Hidden's style attributes to a new value.
setStyleAttributesHiddenSets this Hidden's style attributes.
setTitleHiddenSets the hover title of this Hidden.
setHeightHiddenSets the height of this Hidden.
setVisibleHiddenSets whether this Hidden is visible.
setPixelSizeHiddenSets the size of this Hidden in pixels.
setWidthHiddenSets the width of this Hidden.
setStylePrimaryNameHiddenSets the primary style name of this Hidden.
addStyleDependentNameHiddenSets the dependent style name of this Hidden.
setStyleNameHiddenSets the style name of this Hidden.
addStyleNameHiddenAdds a style name to this Hidden.
getIdStringReturns the id that has been assigned to this object.
setNameHiddenSets the name of the Hidden, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getTagStringGets the text tag of this Hidden.
setTagHiddenSets the text tag of this Hidden.
setValueHiddenSets the value of this Hidden.

class HorizontalPanel

Members:

MemberTypeDescription
setVerticalAlignmentHorizontalPanelSet the vertical alignment of widgets added to this HorizontalPanel.
setHorizontalAlignmentHorizontalPanelSet the horizontal alignment of widgets added to this HorizontalPanel.
setSizeHorizontalPanelSets the size of this HorizontalPanel.
setStyleAttributeHorizontalPanelSets one of this HorizontalPanel's style attributes to a new value.
setStyleAttributesHorizontalPanelSets this HorizontalPanel's style attributes.
setTitleHorizontalPanelSets the hover title of this HorizontalPanel.
setHeightHorizontalPanelSets the height of this HorizontalPanel.
setVisibleHorizontalPanelSets whether this HorizontalPanel is visible.
setPixelSizeHorizontalPanelSets the size of this HorizontalPanel in pixels.
setWidthHorizontalPanelSets the width of this HorizontalPanel.
setStylePrimaryNameHorizontalPanelSets the primary style name of this HorizontalPanel.
addStyleDependentNameHorizontalPanelSets the dependent style name of this HorizontalPanel.
setStyleNameHorizontalPanelSets the style name of this HorizontalPanel.
addStyleNameHorizontalPanelAdds a style name to this HorizontalPanel.
getTagStringGets the text tag of this HorizontalPanel.
setTagHorizontalPanelSets the text tag of this HorizontalPanel.
setBorderWidthHorizontalPanelSets the border width.
setIdHorizontalPanelSets the id of this HorizontalPanel.
getIdStringReturns the id that has been assigned to this object.
clearHorizontalPanelRemove all widgets from the HorizontalPanel.
setCellWidthHorizontalPanelSets the width of the cell associated with the given widget, related to the panel as a whole.
setCellVerticalAlignmentHorizontalPanelSets the vertical alignment of the given widget within its cell.
setCellHorizontalAlignmentHorizontalPanelSets the horizontal alignment of the given widget within its cell.
setSpacingHorizontalPanelSets the amount of spacing between this panel's cells.
setBorderWidthHorizontalPanelSets the width of the border to be applied to all cells in this panel.
setCellHeightHorizontalPanelSets the height of the cell associated with the given widget, related to the panel as a whole.
addHorizontalPanelAdd a widget to the HorizontalPanel.
removeHorizontalPanelRemove the widget with the given index from the HorizontalPanel.
removeHorizontalPanelRemove the given widget from the HorizontalPanel.

class HTML

Members:

MemberTypeDescription
addClickHandlerHTMLAdd a handler for click events.
setSizeHTMLSets the size of this HTML.
setStyleAttributeHTMLSets one of this HTML's style attributes to a new value.
setStyleAttributesHTMLSets this HTML's style attributes.
setTitleHTMLSets the hover title of this HTML.
setHeightHTMLSets the height of this HTML.
setVisibleHTMLSets whether this HTML is visible.
setPixelSizeHTMLSets the size of this HTML in pixels.
setWidthHTMLSets the width of this HTML.
setStylePrimaryNameHTMLSets the primary style name of this HTML.
addStyleDependentNameHTMLSets the dependent style name of this HTML.
setStyleNameHTMLSets the style name of this HTML.
addStyleNameHTMLAdds a style name to this HTML.
setHTMLHTMLSets the HTML content of this HTML.
getTagStringGets the text tag of this HTML.
setTagHTMLSets the text tag of this HTML.
setHorizontalAlignmentHTMLSet the horizontal text alignment of the display text of this HTML.
setWordWrapHTMLSet whether this HTML wraps its text.
setIdHTMLSets the id of this HTML.
addMouseDownHandlerHTMLAdd a handler for mouse down events.
addMouseMoveHandlerHTMLAdd a handler for mouse move events.
addMouseOutHandlerHTMLAdd a handler for mouse out events.
addMouseOverHandlerHTMLAdd a handler for mouse move events.
addMouseUpHandlerHTMLAdd a handler for mouse up events.
addMouseWheelHandlerHTMLAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
setTextHTMLSet the display text of this HTML.

Members:

MemberTypeDescription
setIdHyperlinkSets the id of this Hyperlink.
setSizeHyperlinkSets the size of this Hyperlink.
setStyleAttributeHyperlinkSets one of this Hyperlink's style attributes to a new value.
setStyleAttributesHyperlinkSets this Hyperlink's style attributes.
setTitleHyperlinkSets the hover title of this Hyperlink.
setHeightHyperlinkSets the height of this Hyperlink.
setVisibleHyperlinkSets whether this Hyperlink is visible.
setPixelSizeHyperlinkSets the size of this Hyperlink in pixels.
setWidthHyperlinkSets the width of this Hyperlink.
setStylePrimaryNameHyperlinkSets the primary style name of this Hyperlink.
addStyleDependentNameHyperlinkSets the dependent style name of this Hyperlink.
setStyleNameHyperlinkSets the style name of this Hyperlink.
addStyleNameHyperlinkAdds a style name to this Hyperlink.
getIdStringReturns the id that has been assigned to this object.
setHTMLHyperlinkSets the HTML content of this Hyperlink.
getTagStringGets the text tag of this Hyperlink.
setTagHyperlinkSets the text tag of this Hyperlink.
setTextHyperlinkSet the display text of this Hyperlink.

class Image

Members:

MemberTypeDescription
addErrorHandlerImageAdd a handler for error events (failed loads).
addLoadHandlerImageAdd a handler for load events.
setVisibleRectImageSets the visibility rectangle of an image.
setUrlImageSets the URL of the image to be displayed.
setUrlAndVisibleRectImageSets the url and the visibility rectangle for the image at the same time.
setIdImageSets the id of this Image.
setSizeImageSets the size of this Image.
setStyleAttributeImageSets one of this Image's style attributes to a new value.
setStyleAttributesImageSets this Image's style attributes.
setTitleImageSets the hover title of this Image.
setHeightImageSets the height of this Image.
setVisibleImageSets whether this Image is visible.
setPixelSizeImageSets the size of this Image in pixels.
setWidthImageSets the width of this Image.
setStylePrimaryNameImageSets the primary style name of this Image.
addStyleDependentNameImageSets the dependent style name of this Image.
setStyleNameImageSets the style name of this Image.
addStyleNameImageAdds a style name to this Image.
addClickHandlerImageAdd a handler for click events.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerImageAdd a handler for mouse down events.
addMouseMoveHandlerImageAdd a handler for mouse move events.
addMouseOutHandlerImageAdd a handler for mouse out events.
addMouseOverHandlerImageAdd a handler for mouse move events.
addMouseUpHandlerImageAdd a handler for mouse up events.
addMouseWheelHandlerImageAdd a handler for mouse wheel events.
getTagStringGets the text tag of this Image.
setTagImageSets the text tag of this Image.

Members:

MemberTypeDescription
setSizeInlineHyperlinkSets the size of this InlineHyperlink.
setStyleAttributeInlineHyperlinkSets one of this InlineHyperlink's style attributes to a new value.
setStyleAttributesInlineHyperlinkSets this InlineHyperlink's style attributes.
setTitleInlineHyperlinkSets the hover title of this InlineHyperlink.
setHeightInlineHyperlinkSets the height of this InlineHyperlink.
setVisibleInlineHyperlinkSets whether this InlineHyperlink is visible.
setPixelSizeInlineHyperlinkSets the size of this InlineHyperlink in pixels.
setWidthInlineHyperlinkSets the width of this InlineHyperlink.
setStylePrimaryNameInlineHyperlinkSets the primary style name of this InlineHyperlink.
addStyleDependentNameInlineHyperlinkSets the dependent style name of this InlineHyperlink.
setStyleNameInlineHyperlinkSets the style name of this InlineHyperlink.
addStyleNameInlineHyperlinkAdds a style name to this InlineHyperlink.
setIdInlineHyperlinkSets the id of this InlineHyperlink.
setHTMLInlineHyperlinkSets the HTML content of this InlineHyperlink.
getIdStringReturns the id that has been assigned to this object.
getTagStringGets the text tag of this InlineHyperlink.
setTagInlineHyperlinkSets the text tag of this InlineHyperlink.
setTextInlineHyperlinkSet the display text of this InlineHyperlink.

class InlineLabel

Members:

MemberTypeDescription
addClickHandlerInlineLabelAdd a handler for click events.
setSizeInlineLabelSets the size of this InlineLabel.
setStyleAttributeInlineLabelSets one of this InlineLabel's style attributes to a new value.
setStyleAttributesInlineLabelSets this InlineLabel's style attributes.
setTitleInlineLabelSets the hover title of this InlineLabel.
setHeightInlineLabelSets the height of this InlineLabel.
setVisibleInlineLabelSets whether this InlineLabel is visible.
setPixelSizeInlineLabelSets the size of this InlineLabel in pixels.
setWidthInlineLabelSets the width of this InlineLabel.
setStylePrimaryNameInlineLabelSets the primary style name of this InlineLabel.
addStyleDependentNameInlineLabelSets the dependent style name of this InlineLabel.
setStyleNameInlineLabelSets the style name of this InlineLabel.
addStyleNameInlineLabelAdds a style name to this InlineLabel.
getTagStringGets the text tag of this InlineLabel.
setTagInlineLabelSets the text tag of this InlineLabel.
setHorizontalAlignmentInlineLabelSet the horizontal text alignment of the display text of this InlineLabel.
setWordWrapInlineLabelSet whether this InlineLabel wraps its text.
setIdInlineLabelSets the id of this InlineLabel.
addMouseDownHandlerInlineLabelAdd a handler for mouse down events.
addMouseMoveHandlerInlineLabelAdd a handler for mouse move events.
addMouseOutHandlerInlineLabelAdd a handler for mouse out events.
addMouseOverHandlerInlineLabelAdd a handler for mouse move events.
addMouseUpHandlerInlineLabelAdd a handler for mouse up events.
addMouseWheelHandlerInlineLabelAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
setTextInlineLabelSet the display text of this InlineLabel.

class Label

Members:

MemberTypeDescription
addClickHandlerLabelAdd a handler for click events.
setSizeLabelSets the size of this Label.
setStyleAttributeLabelSets one of this Label's style attributes to a new value.
setStyleAttributesLabelSets this Label's style attributes.
setTitleLabelSets the hover title of this Label.
setHeightLabelSets the height of this Label.
setVisibleLabelSets whether this Label is visible.
setPixelSizeLabelSets the size of this Label in pixels.
setWidthLabelSets the width of this Label.
setStylePrimaryNameLabelSets the primary style name of this Label.
addStyleDependentNameLabelSets the dependent style name of this Label.
setStyleNameLabelSets the style name of this Label.
addStyleNameLabelAdds a style name to this Label.
getTagStringGets the text tag of this Label.
setTagLabelSets the text tag of this Label.
setHorizontalAlignmentLabelSet the horizontal text alignment of the display text of this Label.
setWordWrapLabelSet whether this Label wraps its text.
setIdLabelSets the id of this Label.
addMouseDownHandlerLabelAdd a handler for mouse down events.
addMouseMoveHandlerLabelAdd a handler for mouse move events.
addMouseOutHandlerLabelAdd a handler for mouse out events.
addMouseOverHandlerLabelAdd a handler for mouse move events.
addMouseUpHandlerLabelAdd a handler for mouse up events.
addMouseWheelHandlerLabelAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
setTextLabelSet the display text of this Label.

class LayoutPanel

Members:

MemberTypeDescription
setIdLayoutPanelSets the id of this LayoutPanel.
setSizeLayoutPanelSets the size of this LayoutPanel.
setStyleAttributeLayoutPanelSets one of this LayoutPanel's style attributes to a new value.
setStyleAttributesLayoutPanelSets this LayoutPanel's style attributes.
setTitleLayoutPanelSets the hover title of this LayoutPanel.
setHeightLayoutPanelSets the height of this LayoutPanel.
setVisibleLayoutPanelSets whether this LayoutPanel is visible.
setPixelSizeLayoutPanelSets the size of this LayoutPanel in pixels.
setWidthLayoutPanelSets the width of this LayoutPanel.
setStylePrimaryNameLayoutPanelSets the primary style name of this LayoutPanel.
addStyleDependentNameLayoutPanelSets the dependent style name of this LayoutPanel.
setStyleNameLayoutPanelSets the style name of this LayoutPanel.
addStyleNameLayoutPanelAdds a style name to this LayoutPanel.
getIdStringReturns the id that has been assigned to this object.
clearLayoutPanelRemove all widgets from the LayoutPanel.
getTagStringGets the text tag of this LayoutPanel.
setTagLayoutPanelSets the text tag of this LayoutPanel.
addLayoutPanelAdd a widget to the LayoutPanel.
removeLayoutPanelRemove the widget with the given index from the LayoutPanel.
removeLayoutPanelRemove the given widget from the LayoutPanel.

class ListBox

Members:

MemberTypeDescription
addChangeHandlerListBoxAdd a handler for change events.
setSizeListBoxSets the size of this ListBox.
setStyleAttributeListBoxSets one of this ListBox's style attributes to a new value.
setStyleAttributesListBoxSets this ListBox's style attributes.
setTitleListBoxSets the hover title of this ListBox.
setHeightListBoxSets the height of this ListBox.
setVisibleListBoxSets whether this ListBox is visible.
setPixelSizeListBoxSets the size of this ListBox in pixels.
setWidthListBoxSets the width of this ListBox.
setStylePrimaryNameListBoxSets the primary style name of this ListBox.
addStyleDependentNameListBoxSets the dependent style name of this ListBox.
setStyleNameListBoxSets the style name of this ListBox.
addStyleNameListBoxAdds a style name to this ListBox.
addClickHandlerListBoxAdd a handler for click events.
getTagStringGets the text tag of this ListBox.
setTagListBoxSets the text tag of this ListBox.
setEnabledListBoxSets whether the ListBox is enabled.
setIdListBoxSets the id of this ListBox.
addMouseDownHandlerListBoxAdd a handler for mouse down events.
addMouseMoveHandlerListBoxAdd a handler for mouse move events.
addMouseOutHandlerListBoxAdd a handler for mouse out events.
addMouseOverHandlerListBoxAdd a handler for mouse move events.
addMouseUpHandlerListBoxAdd a handler for mouse up events.
addMouseWheelHandlerListBoxAdd a handler for mouse wheel events.
setNameListBoxSets the name of the ListBox, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getIdStringReturns the id that has been assigned to this object.
addKeyDownHandlerListBoxAdd a handler for key down events.
addKeyPressHandlerListBoxAdd a handler for key press events.
addKeyUpHandlerListBoxAdd a handler for key up events.
clearListBoxRemove all widgets from the ListBox.
setFocusListBoxExplicitly focus/unfocus this ListBox.
setTabIndexListBoxSets the ListBox's position in the tab index.
clearListBoxRemoves all items from the list box.
removeItemListBoxRemoves the item at the specified index.
setVisibleItemCountListBoxSets the number of items that are visible.
setSelectedIndexListBoxSelects the item at the specified index.
setItemTextListBoxSets the text associated with the item at a given index.
setValueListBoxSets the value associated with the item at a given index.
setItemSelectedListBoxSelects the item at the specified index.
addItemListBoxAdds an item to the list box.
addItemListBoxAdds an item to the list box, specifying its value.
addFocusHandlerListBoxAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerListBoxAdd a handler for blur events (losing keyboard focus).

Members:

MemberTypeDescription
setIdMenuBarSets the id of this MenuBar.
setSizeMenuBarSets the size of this MenuBar.
setStyleAttributeMenuBarSets one of this MenuBar's style attributes to a new value.
setStyleAttributesMenuBarSets this MenuBar's style attributes.
setTitleMenuBarSets the hover title of this MenuBar.
setHeightMenuBarSets the height of this MenuBar.
setVisibleMenuBarSets whether this MenuBar is visible.
setPixelSizeMenuBarSets the size of this MenuBar in pixels.
setWidthMenuBarSets the width of this MenuBar.
setStylePrimaryNameMenuBarSets the primary style name of this MenuBar.
addStyleDependentNameMenuBarSets the dependent style name of this MenuBar.
setStyleNameMenuBarSets the style name of this MenuBar.
addStyleNameMenuBarAdds a style name to this MenuBar.
getIdStringReturns the id that has been assigned to this object.
addCloseHandlerMenuBarAdd a handler for close events.
getTagStringGets the text tag of this MenuBar.
setTagMenuBarSets the text tag of this MenuBar.
setAnimationEnabledMenuBarSets whether opening and closing the MenuBar is animated.
addSeparatorMenuBarAdd a separator to the MenuBar.
addSeparatorMenuBarAdd a separator to the MenuBar.
setAutoOpenMenuBarSets whether this menu bar's child menus will open when the mouse is moved over it.
addItemMenuBarAdd a new menu item to this MenuBar.
addItemMenuBarCreates a new menu item with the given text and command and adds it to this MenuBar.
addItemMenuBarCreates a new menu item with the given text and submenu and adds it to this MenuBar.
addItemMenuBarCreates a new menu item with the given text and command and adds it to this MenuBar.
addItemMenuBarCreates a new menu item with the given text and submenu and adds it to this MenuBar.

Members:

MemberTypeDescription
setIdMenuItemSets the id of this MenuItem.
getIdStringReturns the id that has been assigned to this object.
setHTMLMenuItemSets the HTML content of this MenuItem.
getTagStringGets the text tag of this MenuItem.
setTagMenuItemSets the text tag of this MenuItem.
setTextMenuItemSet the display text of this MenuItem.
setCommandMenuItemSets the handler to execute when the menu is clicked.
setSubMenuMenuItemSets the sub-menu to show when the menu is clicked.

Members:

MemberTypeDescription
setIdMenuItemSeparatorSets the id of this MenuItemSeparator.
getIdStringReturns the id that has been assigned to this object.
getTagStringGets the text tag of this MenuItemSeparator.
setTagMenuItemSeparatorSets the text tag of this MenuItemSeparator.

class PasswordTextBox

Members:

MemberTypeDescription
addChangeHandlerPasswordTextBoxAdd a handler for change events.
setSizePasswordTextBoxSets the size of this PasswordTextBox.
setStyleAttributePasswordTextBoxSets one of this PasswordTextBox's style attributes to a new value.
setStyleAttributesPasswordTextBoxSets this PasswordTextBox's style attributes.
setTitlePasswordTextBoxSets the hover title of this PasswordTextBox.
setHeightPasswordTextBoxSets the height of this PasswordTextBox.
setVisiblePasswordTextBoxSets whether this PasswordTextBox is visible.
setPixelSizePasswordTextBoxSets the size of this PasswordTextBox in pixels.
setWidthPasswordTextBoxSets the width of this PasswordTextBox.
setStylePrimaryNamePasswordTextBoxSets the primary style name of this PasswordTextBox.
addStyleDependentNamePasswordTextBoxSets the dependent style name of this PasswordTextBox.
setStyleNamePasswordTextBoxSets the style name of this PasswordTextBox.
addStyleNamePasswordTextBoxAdds a style name to this PasswordTextBox.
addClickHandlerPasswordTextBoxAdd a handler for click events.
setValuePasswordTextBoxSets the value of this PasswordTextBox.
getTagStringGets the text tag of this PasswordTextBox.
setTagPasswordTextBoxSets the text tag of this PasswordTextBox.
setReadOnlyPasswordTextBoxSets whether the text in this PasswordTextBox is read only and can't be edited.
setSelectionRangePasswordTextBoxSets the range of text to be selected.
setValuePasswordTextBox/** Sets this PasswordTextBox's value and potentially fire events.
setValuePasswordTextBoxSets this PasswordTextBox's value without firing any events.
setCursorPosPasswordTextBoxSets the cursor position inside this PasswordTextBox.
setEnabledPasswordTextBoxSets whether the PasswordTextBox is enabled.
addValueChangeHandlerPasswordTextBoxAdd a handler for value change events.
setIdPasswordTextBoxSets the id of this PasswordTextBox.
addMouseDownHandlerPasswordTextBoxAdd a handler for mouse down events.
addMouseMoveHandlerPasswordTextBoxAdd a handler for mouse move events.
addMouseOutHandlerPasswordTextBoxAdd a handler for mouse out events.
addMouseOverHandlerPasswordTextBoxAdd a handler for mouse move events.
addMouseUpHandlerPasswordTextBoxAdd a handler for mouse up events.
addMouseWheelHandlerPasswordTextBoxAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
setNamePasswordTextBoxSets the name of the PasswordTextBox, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
addKeyDownHandlerPasswordTextBoxAdd a handler for key down events.
addKeyPressHandlerPasswordTextBoxAdd a handler for key press events.
addKeyUpHandlerPasswordTextBoxAdd a handler for key up events.
setVisibleLengthPasswordTextBoxSets the number of visible characters in the text box.
setMaxLengthPasswordTextBoxSets the maximum allowable length of the text box's contents.
setFocusPasswordTextBoxExplicitly focus/unfocus this PasswordTextBox.
setTabIndexPasswordTextBoxSets the PasswordTextBox's position in the tab index.
addFocusHandlerPasswordTextBoxAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerPasswordTextBoxAdd a handler for blur events (losing keyboard focus).
setTextPasswordTextBoxSet the display text of this PasswordTextBox.

class PopupPanel

Members:

MemberTypeDescription
setSizePopupPanelSets the size of this PopupPanel.
setStyleAttributePopupPanelSets one of this PopupPanel's style attributes to a new value.
setStyleAttributesPopupPanelSets this PopupPanel's style attributes.
setTitlePopupPanelSets the hover title of this PopupPanel.
setHeightPopupPanelSets the height of this PopupPanel.
setVisiblePopupPanelSets whether this PopupPanel is visible.
setPixelSizePopupPanelSets the size of this PopupPanel in pixels.
setWidthPopupPanelSets the width of this PopupPanel.
setStylePrimaryNamePopupPanelSets the primary style name of this PopupPanel.
addStyleDependentNamePopupPanelSets the dependent style name of this PopupPanel.
setStyleNamePopupPanelSets the style name of this PopupPanel.
addStyleNamePopupPanelAdds a style name to this PopupPanel.
getTagStringGets the text tag of this PopupPanel.
setTagPopupPanelSets the text tag of this PopupPanel.
setIdPopupPanelSets the id of this PopupPanel.
getIdStringReturns the id that has been assigned to this object.
addCloseHandlerPopupPanelAdd a handler for close events.
clearPopupPanelRemove all widgets from the PopupPanel.
setAnimationEnabledPopupPanelSets whether opening and closing the PopupPanel is animated.
setPopupPositionAndShowPopupPanelSet the popup position.
setModalPopupPanelSets whether this PopupPanel is in "modal" mode.
setGlassEnabledPopupPanelEnable or disable a "glass" pane.
setAutoHideEnabledPopupPanelEnable or disable the autoHide feature.
setPreviewingAllNativeEventsPopupPanelWhen enabled, the PopupPanel will preview all native events, even if another popup was opened after this one.
setPopupPositionPopupPanelSets the popup's position relative to the browser's client area.
addPopupPanelAdd a widget to the PopupPanel.
setWidgetPopupPanelSets the widget inside this PopupPanel, removing anything previously there.

class PushButton

Members:

MemberTypeDescription
setSizePushButtonSets the size of this PushButton.
setStyleAttributePushButtonSets one of this PushButton's style attributes to a new value.
setStyleAttributesPushButtonSets this PushButton's style attributes.
setTitlePushButtonSets the hover title of this PushButton.
setHeightPushButtonSets the height of this PushButton.
setVisiblePushButtonSets whether this PushButton is visible.
setPixelSizePushButtonSets the size of this PushButton in pixels.
setWidthPushButtonSets the width of this PushButton.
setStylePrimaryNamePushButtonSets the primary style name of this PushButton.
addStyleDependentNamePushButtonSets the dependent style name of this PushButton.
setStyleNamePushButtonSets the style name of this PushButton.
addStyleNamePushButtonAdds a style name to this PushButton.
addClickHandlerPushButtonAdd a handler for click events.
setHTMLPushButtonSets the HTML content of this PushButton.
getTagStringGets the text tag of this PushButton.
setTagPushButtonSets the text tag of this PushButton.
setEnabledPushButtonSets whether the PushButton is enabled.
setIdPushButtonSets the id of this PushButton.
addMouseDownHandlerPushButtonAdd a handler for mouse down events.
addMouseMoveHandlerPushButtonAdd a handler for mouse move events.
addMouseOutHandlerPushButtonAdd a handler for mouse out events.
addMouseOverHandlerPushButtonAdd a handler for mouse move events.
addMouseUpHandlerPushButtonAdd a handler for mouse up events.
addMouseWheelHandlerPushButtonAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
addKeyDownHandlerPushButtonAdd a handler for key down events.
addKeyPressHandlerPushButtonAdd a handler for key press events.
addKeyUpHandlerPushButtonAdd a handler for key up events.
setFocusPushButtonExplicitly focus/unfocus this PushButton.
setTabIndexPushButtonSets the PushButton's position in the tab index.
setTextPushButtonSet the display text of this PushButton.
addFocusHandlerPushButtonAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerPushButtonAdd a handler for blur events (losing keyboard focus).

class RadioButton

Members:

MemberTypeDescription
setSizeRadioButtonSets the size of this RadioButton.
setStyleAttributeRadioButtonSets one of this RadioButton's style attributes to a new value.
setStyleAttributesRadioButtonSets this RadioButton's style attributes.
setTitleRadioButtonSets the hover title of this RadioButton.
setHeightRadioButtonSets the height of this RadioButton.
setVisibleRadioButtonSets whether this RadioButton is visible.
setPixelSizeRadioButtonSets the size of this RadioButton in pixels.
setWidthRadioButtonSets the width of this RadioButton.
setStylePrimaryNameRadioButtonSets the primary style name of this RadioButton.
addStyleDependentNameRadioButtonSets the dependent style name of this RadioButton.
setStyleNameRadioButtonSets the style name of this RadioButton.
addStyleNameRadioButtonAdds a style name to this RadioButton.
addClickHandlerRadioButtonAdd a handler for click events.
setHTMLRadioButtonSets the HTML content of this RadioButton.
getTagStringGets the text tag of this RadioButton.
setTagRadioButtonSets the text tag of this RadioButton.
setFormValueRadioButtonSet the value property on the input element that backs this RadioButton.
setValueRadioButtonSets whether the RadioButton should be checked.
setValueRadioButtonSets whether the RadioButton should be checked and optionally fires an event if the value changes as a result of this call.
setEnabledRadioButtonSets whether the RadioButton is enabled.
addValueChangeHandlerRadioButtonAdd a handler for value change events.
setIdRadioButtonSets the id of this RadioButton.
setNameRadioButtonSets the name of the RadioButton, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerRadioButtonAdd a handler for mouse down events.
addMouseMoveHandlerRadioButtonAdd a handler for mouse move events.
addMouseOutHandlerRadioButtonAdd a handler for mouse out events.
addMouseOverHandlerRadioButtonAdd a handler for mouse move events.
addMouseUpHandlerRadioButtonAdd a handler for mouse up events.
addMouseWheelHandlerRadioButtonAdd a handler for mouse wheel events.
addKeyDownHandlerRadioButtonAdd a handler for key down events.
addKeyPressHandlerRadioButtonAdd a handler for key press events.
addKeyUpHandlerRadioButtonAdd a handler for key up events.
setFocusRadioButtonExplicitly focus/unfocus this RadioButton.
setTabIndexRadioButtonSets the RadioButton's position in the tab index.
addFocusHandlerRadioButtonAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerRadioButtonAdd a handler for blur events (losing keyboard focus).
setTextRadioButtonSet the display text of this RadioButton.

class ResetButton

Members:

MemberTypeDescription
setSizeResetButtonSets the size of this ResetButton.
setStyleAttributeResetButtonSets one of this ResetButton's style attributes to a new value.
setStyleAttributesResetButtonSets this ResetButton's style attributes.
setTitleResetButtonSets the hover title of this ResetButton.
setHeightResetButtonSets the height of this ResetButton.
setVisibleResetButtonSets whether this ResetButton is visible.
setPixelSizeResetButtonSets the size of this ResetButton in pixels.
setWidthResetButtonSets the width of this ResetButton.
setStylePrimaryNameResetButtonSets the primary style name of this ResetButton.
addStyleDependentNameResetButtonSets the dependent style name of this ResetButton.
setStyleNameResetButtonSets the style name of this ResetButton.
addStyleNameResetButtonAdds a style name to this ResetButton.
addClickHandlerResetButtonAdd a handler for click events.
setHTMLResetButtonSets the HTML content of this ResetButton.
getTagStringGets the text tag of this ResetButton.
setTagResetButtonSets the text tag of this ResetButton.
setEnabledResetButtonSets whether the ResetButton is enabled.
setIdResetButtonSets the id of this ResetButton.
addMouseDownHandlerResetButtonAdd a handler for mouse down events.
addMouseMoveHandlerResetButtonAdd a handler for mouse move events.
addMouseOutHandlerResetButtonAdd a handler for mouse out events.
addMouseOverHandlerResetButtonAdd a handler for mouse move events.
addMouseUpHandlerResetButtonAdd a handler for mouse up events.
addMouseWheelHandlerResetButtonAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
addKeyDownHandlerResetButtonAdd a handler for key down events.
addKeyPressHandlerResetButtonAdd a handler for key press events.
addKeyUpHandlerResetButtonAdd a handler for key up events.
setFocusResetButtonExplicitly focus/unfocus this ResetButton.
setTabIndexResetButtonSets the ResetButton's position in the tab index.
setTextResetButtonSet the display text of this ResetButton.
addFocusHandlerResetButtonAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerResetButtonAdd a handler for blur events (losing keyboard focus).

class RichTextArea

Members:

MemberTypeDescription
setSizeRichTextAreaSets the size of this RichTextArea.
setStyleAttributeRichTextAreaSets one of this RichTextArea's style attributes to a new value.
setStyleAttributesRichTextAreaSets this RichTextArea's style attributes.
setTitleRichTextAreaSets the hover title of this RichTextArea.
setHeightRichTextAreaSets the height of this RichTextArea.
setVisibleRichTextAreaSets whether this RichTextArea is visible.
setPixelSizeRichTextAreaSets the size of this RichTextArea in pixels.
setWidthRichTextAreaSets the width of this RichTextArea.
setStylePrimaryNameRichTextAreaSets the primary style name of this RichTextArea.
addStyleDependentNameRichTextAreaSets the dependent style name of this RichTextArea.
setStyleNameRichTextAreaSets the style name of this RichTextArea.
addStyleNameRichTextAreaAdds a style name to this RichTextArea.
addClickHandlerRichTextAreaAdd a handler for click events.
setHTMLRichTextAreaSets the HTML content of this RichTextArea.
addInitializeHandlerRichTextAreaAdd a handler that runs when the RichTextArea initializes.
getTagStringGets the text tag of this RichTextArea.
setTagRichTextAreaSets the text tag of this RichTextArea.
setEnabledRichTextAreaSets whether the RichTextArea is enabled.
setIdRichTextAreaSets the id of this RichTextArea.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerRichTextAreaAdd a handler for mouse down events.
addMouseMoveHandlerRichTextAreaAdd a handler for mouse move events.
addMouseOutHandlerRichTextAreaAdd a handler for mouse out events.
addMouseOverHandlerRichTextAreaAdd a handler for mouse move events.
addMouseUpHandlerRichTextAreaAdd a handler for mouse up events.
addMouseWheelHandlerRichTextAreaAdd a handler for mouse wheel events.
addKeyDownHandlerRichTextAreaAdd a handler for key down events.
addKeyPressHandlerRichTextAreaAdd a handler for key press events.
addKeyUpHandlerRichTextAreaAdd a handler for key up events.
setFocusRichTextAreaExplicitly focus/unfocus this RichTextArea.
setTabIndexRichTextAreaSets the RichTextArea's position in the tab index.
addFocusHandlerRichTextAreaAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerRichTextAreaAdd a handler for blur events (losing keyboard focus).
setTextRichTextAreaSet the display text of this RichTextArea.

class ScrollPanel

Members:

MemberTypeDescription
setIdScrollPanelSets the id of this ScrollPanel.
setSizeScrollPanelSets the size of this ScrollPanel.
setStyleAttributeScrollPanelSets one of this ScrollPanel's style attributes to a new value.
setStyleAttributesScrollPanelSets this ScrollPanel's style attributes.
setTitleScrollPanelSets the hover title of this ScrollPanel.
setHeightScrollPanelSets the height of this ScrollPanel.
setVisibleScrollPanelSets whether this ScrollPanel is visible.
setPixelSizeScrollPanelSets the size of this ScrollPanel in pixels.
setWidthScrollPanelSets the width of this ScrollPanel.
setStylePrimaryNameScrollPanelSets the primary style name of this ScrollPanel.
addStyleDependentNameScrollPanelSets the dependent style name of this ScrollPanel.
setStyleNameScrollPanelSets the style name of this ScrollPanel.
addStyleNameScrollPanelAdds a style name to this ScrollPanel.
getIdStringReturns the id that has been assigned to this object.
clearScrollPanelRemove all widgets from the ScrollPanel.
getTagStringGets the text tag of this ScrollPanel.
setTagScrollPanelSets the text tag of this ScrollPanel.
addScrollPanelAdd a widget to the ScrollPanel.
setAlwaysShowScrollBarsScrollPanelSets whether to always show scrollbars even if they are not needed.
setHorizontalScrollPositionScrollPanelSets the horizontal scroll position of this ScrollPanel.
setScrollPositionScrollPanelSets the vertical scroll position of this ScrollPanel.
addScrollHandlerScrollPanelAdd a handler for scroll events.
setWidgetScrollPanelSets the widget inside this ScrollPanel, removing anything previously there.

class ServerHandler

Members:

MemberTypeDescription
setIdServerHandlerSets the id of this ServerHandler.
getIdStringReturns the id that has been assigned to this object.
getTagStringGets the text tag of this ServerHandler.
setTagServerHandlerSets the text tag of this ServerHandler.
setCallbackFunctionServerHandlerSets the name of the function to call when this handler is invoked.
addCallbackElementServerHandlerAdds a widget to this ServerHandler as a "callback element.".
validateLengthServerHandlerSets this handler to fire only if the given widget's value is a string whose length is between min and max.
validateNotMatchesServerHandlerSets this handler to fire only if the given widget's value does not match this regular expression.
validateNotMatchesServerHandlerSets this handler to fire only if the given widget's value does not match this regular expression.
validateNotRangeServerHandlerSets this handler to fire only if the given widget's value cannot be interpreted as a number that is between min and max.
validateEmailServerHandlerSets this handler to fire only if the given widget's value is a valid email address.
validateRangeServerHandlerSets this handler to fire only if the given widget's value can be interpreted as a number and is between min and max.
validateMatchesServerHandlerSets this handler to fire only if the given widget's value matches this regular expression.
validateMatchesServerHandlerSets this handler to fire only if the given widget's value matches this regular expression.
validateIntegerServerHandlerSets this handler to fire only if the given widget's value can be interpreted as an integer.
validateNotEmailServerHandlerSets this handler to fire only if the given widget's value is not a valid email address.
validateNotNumberServerHandlerSets this handler to fire only if the given widget's value cannot be interpreted as an number.
validateNotLengthServerHandlerSets this handler to fire only if the given widget's value is a string whose length is less than min or greater than max.
validateNotSumServerHandlerSets this handler to fire only if the given widgets have values that are not numbers, or that do not sum up to the given value.
validateOptionsServerHandlerSets this handler to fire only if the given widget's value is one of the strings given in the options parameter.
validateNotOptionsServerHandlerSets this handler to fire only if the given widget's value is not one of the strings given in the options parameter.
validateNumberServerHandlerSets this handler to fire only if the given widget's value can be interpreted as a number.
validateNotIntegerServerHandlerSets this handler to fire only if the given widget's value cannot be interpreted as an integer.
validateSumServerHandlerSets this handler to fire only if the given widgets have values that are numbers and sum up to the given value.

class SimpleCheckBox

Members:

MemberTypeDescription
setSizeSimpleCheckBoxSets the size of this SimpleCheckBox.
setStyleAttributeSimpleCheckBoxSets one of this SimpleCheckBox's style attributes to a new value.
setStyleAttributesSimpleCheckBoxSets this SimpleCheckBox's style attributes.
setTitleSimpleCheckBoxSets the hover title of this SimpleCheckBox.
setHeightSimpleCheckBoxSets the height of this SimpleCheckBox.
setVisibleSimpleCheckBoxSets whether this SimpleCheckBox is visible.
setPixelSizeSimpleCheckBoxSets the size of this SimpleCheckBox in pixels.
setWidthSimpleCheckBoxSets the width of this SimpleCheckBox.
setStylePrimaryNameSimpleCheckBoxSets the primary style name of this SimpleCheckBox.
addStyleDependentNameSimpleCheckBoxSets the dependent style name of this SimpleCheckBox.
setStyleNameSimpleCheckBoxSets the style name of this SimpleCheckBox.
addStyleNameSimpleCheckBoxAdds a style name to this SimpleCheckBox.
addClickHandlerSimpleCheckBoxAdd a handler for click events.
setCheckedSimpleCheckBoxSets whether this SimpleCheckBox should be checked.
getTagStringGets the text tag of this SimpleCheckBox.
setTagSimpleCheckBoxSets the text tag of this SimpleCheckBox.
setEnabledSimpleCheckBoxSets whether the SimpleCheckBox is enabled.
setIdSimpleCheckBoxSets the id of this SimpleCheckBox.
setNameSimpleCheckBoxSets the name of the SimpleCheckBox, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerSimpleCheckBoxAdd a handler for mouse down events.
addMouseMoveHandlerSimpleCheckBoxAdd a handler for mouse move events.
addMouseOutHandlerSimpleCheckBoxAdd a handler for mouse out events.
addMouseOverHandlerSimpleCheckBoxAdd a handler for mouse move events.
addMouseUpHandlerSimpleCheckBoxAdd a handler for mouse up events.
addMouseWheelHandlerSimpleCheckBoxAdd a handler for mouse wheel events.
addKeyDownHandlerSimpleCheckBoxAdd a handler for key down events.
addKeyPressHandlerSimpleCheckBoxAdd a handler for key press events.
addKeyUpHandlerSimpleCheckBoxAdd a handler for key up events.
setFocusSimpleCheckBoxExplicitly focus/unfocus this SimpleCheckBox.
setTabIndexSimpleCheckBoxSets the SimpleCheckBox's position in the tab index.
addFocusHandlerSimpleCheckBoxAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerSimpleCheckBoxAdd a handler for blur events (losing keyboard focus).

class SimplePanel

Members:

MemberTypeDescription
setSizeSimplePanelSets the size of this SimplePanel.
setStyleAttributeSimplePanelSets one of this SimplePanel's style attributes to a new value.
setStyleAttributesSimplePanelSets this SimplePanel's style attributes.
setTitleSimplePanelSets the hover title of this SimplePanel.
setHeightSimplePanelSets the height of this SimplePanel.
setVisibleSimplePanelSets whether this SimplePanel is visible.
setPixelSizeSimplePanelSets the size of this SimplePanel in pixels.
setWidthSimplePanelSets the width of this SimplePanel.
setStylePrimaryNameSimplePanelSets the primary style name of this SimplePanel.
addStyleDependentNameSimplePanelSets the dependent style name of this SimplePanel.
setStyleNameSimplePanelSets the style name of this SimplePanel.
addStyleNameSimplePanelAdds a style name to this SimplePanel.
setIdSimplePanelSets the id of this SimplePanel.
getIdStringReturns the id that has been assigned to this object.
clearSimplePanelRemove all widgets from the SimplePanel.
getTagStringGets the text tag of this SimplePanel.
setTagSimplePanelSets the text tag of this SimplePanel.
addSimplePanelAdd a widget to the SimplePanel.
setWidgetSimplePanelSets the widget inside this SimplePanel, removing anything previously there.

class SimpleRadioButton

Members:

MemberTypeDescription
setSizeSimpleRadioButtonSets the size of this SimpleRadioButton.
setStyleAttributeSimpleRadioButtonSets one of this SimpleRadioButton's style attributes to a new value.
setStyleAttributesSimpleRadioButtonSets this SimpleRadioButton's style attributes.
setTitleSimpleRadioButtonSets the hover title of this SimpleRadioButton.
setHeightSimpleRadioButtonSets the height of this SimpleRadioButton.
setVisibleSimpleRadioButtonSets whether this SimpleRadioButton is visible.
setPixelSizeSimpleRadioButtonSets the size of this SimpleRadioButton in pixels.
setWidthSimpleRadioButtonSets the width of this SimpleRadioButton.
setStylePrimaryNameSimpleRadioButtonSets the primary style name of this SimpleRadioButton.
addStyleDependentNameSimpleRadioButtonSets the dependent style name of this SimpleRadioButton.
setStyleNameSimpleRadioButtonSets the style name of this SimpleRadioButton.
addStyleNameSimpleRadioButtonAdds a style name to this SimpleRadioButton.
addClickHandlerSimpleRadioButtonAdd a handler for click events.
setCheckedSimpleRadioButtonSets whether this SimpleRadioButton should be checked.
getTagStringGets the text tag of this SimpleRadioButton.
setTagSimpleRadioButtonSets the text tag of this SimpleRadioButton.
setEnabledSimpleRadioButtonSets whether the SimpleRadioButton is enabled.
setIdSimpleRadioButtonSets the id of this SimpleRadioButton.
addMouseDownHandlerSimpleRadioButtonAdd a handler for mouse down events.
addMouseMoveHandlerSimpleRadioButtonAdd a handler for mouse move events.
addMouseOutHandlerSimpleRadioButtonAdd a handler for mouse out events.
addMouseOverHandlerSimpleRadioButtonAdd a handler for mouse move events.
addMouseUpHandlerSimpleRadioButtonAdd a handler for mouse up events.
addMouseWheelHandlerSimpleRadioButtonAdd a handler for mouse wheel events.
setNameSimpleRadioButtonSets the name of the SimpleRadioButton, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getIdStringReturns the id that has been assigned to this object.
addKeyDownHandlerSimpleRadioButtonAdd a handler for key down events.
addKeyPressHandlerSimpleRadioButtonAdd a handler for key press events.
addKeyUpHandlerSimpleRadioButtonAdd a handler for key up events.
setFocusSimpleRadioButtonExplicitly focus/unfocus this SimpleRadioButton.
setTabIndexSimpleRadioButtonSets the SimpleRadioButton's position in the tab index.
addFocusHandlerSimpleRadioButtonAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerSimpleRadioButtonAdd a handler for blur events (losing keyboard focus).

class SplitLayoutPanel

Members:

MemberTypeDescription
setWidgetMinSizeSplitLayoutPanelSets the minimum allowable size for the given widget.
setSizeSplitLayoutPanelSets the size of this SplitLayoutPanel.
setStyleAttributeSplitLayoutPanelSets one of this SplitLayoutPanel's style attributes to a new value.
setStyleAttributesSplitLayoutPanelSets this SplitLayoutPanel's style attributes.
setTitleSplitLayoutPanelSets the hover title of this SplitLayoutPanel.
setHeightSplitLayoutPanelSets the height of this SplitLayoutPanel.
setVisibleSplitLayoutPanelSets whether this SplitLayoutPanel is visible.
setPixelSizeSplitLayoutPanelSets the size of this SplitLayoutPanel in pixels.
setWidthSplitLayoutPanelSets the width of this SplitLayoutPanel.
setStylePrimaryNameSplitLayoutPanelSets the primary style name of this SplitLayoutPanel.
addStyleDependentNameSplitLayoutPanelSets the dependent style name of this SplitLayoutPanel.
setStyleNameSplitLayoutPanelSets the style name of this SplitLayoutPanel.
addStyleNameSplitLayoutPanelAdds a style name to this SplitLayoutPanel.
getTagStringGets the text tag of this SplitLayoutPanel.
setTagSplitLayoutPanelSets the text tag of this SplitLayoutPanel.
setIdSplitLayoutPanelSets the id of this SplitLayoutPanel.
getIdStringReturns the id that has been assigned to this object.
clearSplitLayoutPanelRemove all widgets from the SplitLayoutPanel.
addSplitLayoutPanelAdd a widget to the SplitLayoutPanel.
addSouthSplitLayoutPanelAdds a widget to the east edge of the dock.
addEastSplitLayoutPanelAdds a widget to the east edge of the dock.
addSplitLayoutPanelAdds a widget at the center of the dock. No further widgets may be added after this one.
addNorthSplitLayoutPanelAdds a widget to the north edge of the dock.
addWestSplitLayoutPanelAdds a widget to the west edge of the dock.
removeSplitLayoutPanelRemove the widget with the given index from the SplitLayoutPanel.
removeSplitLayoutPanelRemove the given widget from the SplitLayoutPanel.

class StackPanel

Members:

MemberTypeDescription
setSizeStackPanelSets the size of this StackPanel.
setStyleAttributeStackPanelSets one of this StackPanel's style attributes to a new value.
setStyleAttributesStackPanelSets this StackPanel's style attributes.
setTitleStackPanelSets the hover title of this StackPanel.
setHeightStackPanelSets the height of this StackPanel.
setVisibleStackPanelSets whether this StackPanel is visible.
setPixelSizeStackPanelSets the size of this StackPanel in pixels.
setWidthStackPanelSets the width of this StackPanel.
setStylePrimaryNameStackPanelSets the primary style name of this StackPanel.
addStyleDependentNameStackPanelSets the dependent style name of this StackPanel.
setStyleNameStackPanelSets the style name of this StackPanel.
addStyleNameStackPanelAdds a style name to this StackPanel.
getTagStringGets the text tag of this StackPanel.
setTagStackPanelSets the text tag of this StackPanel.
addStackPanelAdds a widget to the stack with the given header text.
addStackPanelAdds a widget to the stack with the given header text.
setStackTextStackPanelSets the text associated with a child by its index.
setStackTextStackPanelSets the text associated with a child by its index.
setIdStackPanelSets the id of this StackPanel.
getIdStringReturns the id that has been assigned to this object.
clearStackPanelRemove all widgets from the StackPanel.
addStackPanelAdd a widget to the StackPanel.
removeStackPanelRemove the widget with the given index from the StackPanel.
removeStackPanelRemove the given widget from the StackPanel.

class SubmitButton

Members:

MemberTypeDescription
setSizeSubmitButtonSets the size of this SubmitButton.
setStyleAttributeSubmitButtonSets one of this SubmitButton's style attributes to a new value.
setStyleAttributesSubmitButtonSets this SubmitButton's style attributes.
setTitleSubmitButtonSets the hover title of this SubmitButton.
setHeightSubmitButtonSets the height of this SubmitButton.
setVisibleSubmitButtonSets whether this SubmitButton is visible.
setPixelSizeSubmitButtonSets the size of this SubmitButton in pixels.
setWidthSubmitButtonSets the width of this SubmitButton.
setStylePrimaryNameSubmitButtonSets the primary style name of this SubmitButton.
addStyleDependentNameSubmitButtonSets the dependent style name of this SubmitButton.
setStyleNameSubmitButtonSets the style name of this SubmitButton.
addStyleNameSubmitButtonAdds a style name to this SubmitButton.
addClickHandlerSubmitButtonAdd a handler for click events.
setHTMLSubmitButtonSets the HTML content of this SubmitButton.
getTagStringGets the text tag of this SubmitButton.
setTagSubmitButtonSets the text tag of this SubmitButton.
setEnabledSubmitButtonSets whether the SubmitButton is enabled.
setIdSubmitButtonSets the id of this SubmitButton.
addMouseDownHandlerSubmitButtonAdd a handler for mouse down events.
addMouseMoveHandlerSubmitButtonAdd a handler for mouse move events.
addMouseOutHandlerSubmitButtonAdd a handler for mouse out events.
addMouseOverHandlerSubmitButtonAdd a handler for mouse move events.
addMouseUpHandlerSubmitButtonAdd a handler for mouse up events.
addMouseWheelHandlerSubmitButtonAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
addKeyDownHandlerSubmitButtonAdd a handler for key down events.
addKeyPressHandlerSubmitButtonAdd a handler for key press events.
addKeyUpHandlerSubmitButtonAdd a handler for key up events.
setFocusSubmitButtonExplicitly focus/unfocus this SubmitButton.
setTabIndexSubmitButtonSets the SubmitButton's position in the tab index.
setTextSubmitButtonSet the display text of this SubmitButton.
addFocusHandlerSubmitButtonAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerSubmitButtonAdd a handler for blur events (losing keyboard focus).

class SuggestBox

Members:

MemberTypeDescription
setSizeSuggestBoxSets the size of this SuggestBox.
setStyleAttributeSuggestBoxSets one of this SuggestBox's style attributes to a new value.
setStyleAttributesSuggestBoxSets this SuggestBox's style attributes.
setTitleSuggestBoxSets the hover title of this SuggestBox.
setHeightSuggestBoxSets the height of this SuggestBox.
setVisibleSuggestBoxSets whether this SuggestBox is visible.
setPixelSizeSuggestBoxSets the size of this SuggestBox in pixels.
setWidthSuggestBoxSets the width of this SuggestBox.
setStylePrimaryNameSuggestBoxSets the primary style name of this SuggestBox.
addStyleDependentNameSuggestBoxSets the dependent style name of this SuggestBox.
setStyleNameSuggestBoxSets the style name of this SuggestBox.
addStyleNameSuggestBoxAdds a style name to this SuggestBox.
getTagStringGets the text tag of this SuggestBox.
setTagSuggestBoxSets the text tag of this SuggestBox.
setValueSuggestBoxSets the value of this SuggestBox.
addValueChangeHandlerSuggestBoxAdd a handler for value change events.
setIdSuggestBoxSets the id of this SuggestBox.
getIdStringReturns the id that has been assigned to this object.
addKeyDownHandlerSuggestBoxAdd a handler for key down events.
addKeyPressHandlerSuggestBoxAdd a handler for key press events.
addKeyUpHandlerSuggestBoxAdd a handler for key up events.
setAnimationEnabledSuggestBoxSets whether opening and closing the SuggestBox is animated.
setFocusSuggestBoxExplicitly focus/unfocus this SuggestBox.
setTabIndexSuggestBoxSets the SuggestBox's position in the tab index.
setTextSuggestBoxSet the display text of this SuggestBox.
addSelectionHandlerSuggestBoxAdd a handler for selection events.

class TabBar

Members:

MemberTypeDescription
setIdTabBarSets the id of this TabBar.
setSizeTabBarSets the size of this TabBar.
setStyleAttributeTabBarSets one of this TabBar's style attributes to a new value.
setStyleAttributesTabBarSets this TabBar's style attributes.
setTitleTabBarSets the hover title of this TabBar.
setHeightTabBarSets the height of this TabBar.
setVisibleTabBarSets whether this TabBar is visible.
setPixelSizeTabBarSets the size of this TabBar in pixels.
setWidthTabBarSets the width of this TabBar.
setStylePrimaryNameTabBarSets the primary style name of this TabBar.
addStyleDependentNameTabBarSets the dependent style name of this TabBar.
setStyleNameTabBarSets the style name of this TabBar.
addStyleNameTabBarAdds a style name to this TabBar.
getIdStringReturns the id that has been assigned to this object.
getTagStringGets the text tag of this TabBar.
setTagTabBarSets the text tag of this TabBar.
setTabEnabledTabBarSet whether the given tab is enabled.
addTabTabBarAdd a tab with the given title.
addTabTabBarAdd a tab with the given widget as its title.
addTabTabBarAdd a tab with the given title.
setTabTextTabBarSet the header text of a given tab.
selectTabTabBarSelect a tab by index.
addSelectionHandlerTabBarAdd a handler for selection events.

class TabPanel

Members:

MemberTypeDescription
setSizeTabPanelSets the size of this TabPanel.
setStyleAttributeTabPanelSets one of this TabPanel's style attributes to a new value.
setStyleAttributesTabPanelSets this TabPanel's style attributes.
setTitleTabPanelSets the hover title of this TabPanel.
setHeightTabPanelSets the height of this TabPanel.
setVisibleTabPanelSets whether this TabPanel is visible.
setPixelSizeTabPanelSets the size of this TabPanel in pixels.
setWidthTabPanelSets the width of this TabPanel.
setStylePrimaryNameTabPanelSets the primary style name of this TabPanel.
addStyleDependentNameTabPanelSets the dependent style name of this TabPanel.
setStyleNameTabPanelSets the style name of this TabPanel.
addStyleNameTabPanelAdds a style name to this TabPanel.
getTagStringGets the text tag of this TabPanel.
setTagTabPanelSets the text tag of this TabPanel.
addTabPanelAdds a widget to the stack with the given header text.
addTabPanelAdds a widget to the stack with the given header text.
setAnimationEnabledTabPanelSets whether changing tabs TabPanel is animated.
setIdTabPanelSets the id of this TabPanel.
getIdStringReturns the id that has been assigned to this object.
setAnimationEnabledTabPanelSets whether opening and closing the TabPanel is animated.
addTabPanelAdd a widget to the TabPanel.
addTabPanelAdd a widget to this TabPanel with the given widget as its tab header.
selectTabTabPanelSelect a tab by index.
addSelectionHandlerTabPanelAdd a handler for selection events.

class TextArea

Members:

MemberTypeDescription
addChangeHandlerTextAreaAdd a handler for change events.
setSizeTextAreaSets the size of this TextArea.
setStyleAttributeTextAreaSets one of this TextArea's style attributes to a new value.
setStyleAttributesTextAreaSets this TextArea's style attributes.
setTitleTextAreaSets the hover title of this TextArea.
setHeightTextAreaSets the height of this TextArea.
setVisibleTextAreaSets whether this TextArea is visible.
setPixelSizeTextAreaSets the size of this TextArea in pixels.
setWidthTextAreaSets the width of this TextArea.
setStylePrimaryNameTextAreaSets the primary style name of this TextArea.
addStyleDependentNameTextAreaSets the dependent style name of this TextArea.
setStyleNameTextAreaSets the style name of this TextArea.
addStyleNameTextAreaAdds a style name to this TextArea.
addClickHandlerTextAreaAdd a handler for click events.
setValueTextAreaSets the value of this TextArea.
getTagStringGets the text tag of this TextArea.
setTagTextAreaSets the text tag of this TextArea.
setReadOnlyTextAreaSets whether the text in this TextArea is read only and can't be edited.
setSelectionRangeTextAreaSets the range of text to be selected.
setValueTextArea/** Sets this TextArea's value and potentially fire events.
setValueTextAreaSets this TextArea's value without firing any events.
setCursorPosTextAreaSets the cursor position inside this TextArea.
setEnabledTextAreaSets whether the TextArea is enabled.
addValueChangeHandlerTextAreaAdd a handler for value change events.
setIdTextAreaSets the id of this TextArea.
setNameTextAreaSets the name of the TextArea, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerTextAreaAdd a handler for mouse down events.
addMouseMoveHandlerTextAreaAdd a handler for mouse move events.
addMouseOutHandlerTextAreaAdd a handler for mouse out events.
addMouseOverHandlerTextAreaAdd a handler for mouse move events.
addMouseUpHandlerTextAreaAdd a handler for mouse up events.
addMouseWheelHandlerTextAreaAdd a handler for mouse wheel events.
addKeyDownHandlerTextAreaAdd a handler for key down events.
addKeyPressHandlerTextAreaAdd a handler for key press events.
addKeyUpHandlerTextAreaAdd a handler for key up events.
setCharacterWidthTextAreaSets the requested width of the text box.
setVisibleLinesTextAreaSets the number of text lines that are visible.
setFocusTextAreaExplicitly focus/unfocus this TextArea.
setTabIndexTextAreaSets the TextArea's position in the tab index.
setTextTextAreaSet the display text of this TextArea.
addFocusHandlerTextAreaAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerTextAreaAdd a handler for blur events (losing keyboard focus).

class TextBox

Members:

MemberTypeDescription
addChangeHandlerTextBoxAdd a handler for change events.
setSizeTextBoxSets the size of this TextBox.
setStyleAttributeTextBoxSets one of this TextBox's style attributes to a new value.
setStyleAttributesTextBoxSets this TextBox's style attributes.
setTitleTextBoxSets the hover title of this TextBox.
setHeightTextBoxSets the height of this TextBox.
setVisibleTextBoxSets whether this TextBox is visible.
setPixelSizeTextBoxSets the size of this TextBox in pixels.
setWidthTextBoxSets the width of this TextBox.
setStylePrimaryNameTextBoxSets the primary style name of this TextBox.
addStyleDependentNameTextBoxSets the dependent style name of this TextBox.
setStyleNameTextBoxSets the style name of this TextBox.
addStyleNameTextBoxAdds a style name to this TextBox.
addClickHandlerTextBoxAdd a handler for click events.
setValueTextBoxSets the value of this TextBox.
getTagStringGets the text tag of this TextBox.
setTagTextBoxSets the text tag of this TextBox.
setReadOnlyTextBoxSets whether the text in this TextBox is read only and can't be edited.
setSelectionRangeTextBoxSets the range of text to be selected.
setValueTextBox/** Sets this TextBox's value and potentially fire events.
setValueTextBoxSets this TextBox's value without firing any events.
setCursorPosTextBoxSets the cursor position inside this TextBox.
setEnabledTextBoxSets whether the TextBox is enabled.
addValueChangeHandlerTextBoxAdd a handler for value change events.
setIdTextBoxSets the id of this TextBox.
setNameTextBoxSets the name of the TextBox, which is how it will be referred to when used in a FormPanel or as a callback element on an event handler.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerTextBoxAdd a handler for mouse down events.
addMouseMoveHandlerTextBoxAdd a handler for mouse move events.
addMouseOutHandlerTextBoxAdd a handler for mouse out events.
addMouseOverHandlerTextBoxAdd a handler for mouse move events.
addMouseUpHandlerTextBoxAdd a handler for mouse up events.
addMouseWheelHandlerTextBoxAdd a handler for mouse wheel events.
addKeyDownHandlerTextBoxAdd a handler for key down events.
addKeyPressHandlerTextBoxAdd a handler for key press events.
addKeyUpHandlerTextBoxAdd a handler for key up events.
setVisibleLengthTextBoxSets the number of visible characters in the text box.
setMaxLengthTextBoxSets the maximum allowable length of the text box's contents.
setFocusTextBoxExplicitly focus/unfocus this TextBox.
setTabIndexTextBoxSets the TextBox's position in the tab index.
setTextTextBoxSet the display text of this TextBox.
addFocusHandlerTextBoxAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerTextBoxAdd a handler for blur events (losing keyboard focus).

class ToggleButton

Members:

MemberTypeDescription
setSizeToggleButtonSets the size of this ToggleButton.
setStyleAttributeToggleButtonSets one of this ToggleButton's style attributes to a new value.
setStyleAttributesToggleButtonSets this ToggleButton's style attributes.
setTitleToggleButtonSets the hover title of this ToggleButton.
setHeightToggleButtonSets the height of this ToggleButton.
setVisibleToggleButtonSets whether this ToggleButton is visible.
setPixelSizeToggleButtonSets the size of this ToggleButton in pixels.
setWidthToggleButtonSets the width of this ToggleButton.
setStylePrimaryNameToggleButtonSets the primary style name of this ToggleButton.
addStyleDependentNameToggleButtonSets the dependent style name of this ToggleButton.
setStyleNameToggleButtonSets the style name of this ToggleButton.
addStyleNameToggleButtonAdds a style name to this ToggleButton.
addClickHandlerToggleButtonAdd a handler for click events.
setHTMLToggleButtonSets the HTML content of this ToggleButton.
getTagStringGets the text tag of this ToggleButton.
setTagToggleButtonSets the text tag of this ToggleButton.
setDownToggleButtonSets whether the button is down.
setEnabledToggleButtonSets whether the ToggleButton is enabled.
setIdToggleButtonSets the id of this ToggleButton.
addMouseDownHandlerToggleButtonAdd a handler for mouse down events.
addMouseMoveHandlerToggleButtonAdd a handler for mouse move events.
addMouseOutHandlerToggleButtonAdd a handler for mouse out events.
addMouseOverHandlerToggleButtonAdd a handler for mouse move events.
addMouseUpHandlerToggleButtonAdd a handler for mouse up events.
addMouseWheelHandlerToggleButtonAdd a handler for mouse wheel events.
getIdStringReturns the id that has been assigned to this object.
addKeyDownHandlerToggleButtonAdd a handler for key down events.
addKeyPressHandlerToggleButtonAdd a handler for key press events.
addKeyUpHandlerToggleButtonAdd a handler for key up events.
setFocusToggleButtonExplicitly focus/unfocus this ToggleButton.
setTabIndexToggleButtonSets the ToggleButton's position in the tab index.
setTextToggleButtonSet the display text of this ToggleButton.
addFocusHandlerToggleButtonAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerToggleButtonAdd a handler for blur events (losing keyboard focus).

class TreeItem

Members:

MemberTypeDescription
setIdTreeItemSets the id of this TreeItem.
addItemTreeItemAdds a TreeItem as a child to this TreeItem.
addItemTreeItemAdds a new child tree item containing the specified widget.
addItemTreeItemAdds a new child tree item containing the specified HTML.
getIdStringReturns the id that has been assigned to this object.
setHTMLTreeItemSets the HTML content of this TreeItem.
getTagStringGets the text tag of this TreeItem.
setTagTreeItemSets the text tag of this TreeItem.
setTextTreeItemSet the display text of this TreeItem.
setWidgetTreeItemSets the widget to be shown inside this TreeItem.
setStateTreeItemSets whether this TreeItem is open or closed.
setStateTreeItemSets whether this TreeItem is open or closed and optionally fire events.
setSelectedTreeItemSet whether this item is selected.

class Tree

Members:

MemberTypeDescription
setSelectedItemTreeSelects the given item and optionally fire events.
setSelectedItemTreeSelects the given item.
addItemTreeAdds a TreeItem as a child to this Tree.
addItemTreeAdds a new child tree item containing the specified widget.
addItemTreeAdds a new child tree item containing the specified HTML.
setSizeTreeSets the size of this Tree.
setStyleAttributeTreeSets one of this Tree's style attributes to a new value.
setStyleAttributesTreeSets this Tree's style attributes.
setTitleTreeSets the hover title of this Tree.
setHeightTreeSets the height of this Tree.
setVisibleTreeSets whether this Tree is visible.
setPixelSizeTreeSets the size of this Tree in pixels.
setWidthTreeSets the width of this Tree.
setStylePrimaryNameTreeSets the primary style name of this Tree.
addStyleDependentNameTreeSets the dependent style name of this Tree.
setStyleNameTreeSets the style name of this Tree.
addStyleNameTreeAdds a style name to this Tree.
getTagStringGets the text tag of this Tree.
setTagTreeSets the text tag of this Tree.
setIdTreeSets the id of this Tree.
addCloseHandlerTreeAdd a handler for close events.
getIdStringReturns the id that has been assigned to this object.
addMouseDownHandlerTreeAdd a handler for mouse down events.
addMouseMoveHandlerTreeAdd a handler for mouse move events.
addMouseOutHandlerTreeAdd a handler for mouse out events.
addMouseOverHandlerTreeAdd a handler for mouse move events.
addMouseUpHandlerTreeAdd a handler for mouse up events.
addMouseWheelHandlerTreeAdd a handler for mouse wheel events.
addKeyDownHandlerTreeAdd a handler for key down events.
addKeyPressHandlerTreeAdd a handler for key press events.
addKeyUpHandlerTreeAdd a handler for key up events.
setAnimationEnabledTreeSets whether opening and closing the Tree is animated.
setFocusTreeExplicitly focus/unfocus this Tree.
setTabIndexTreeSets the Tree's position in the tab index.
addTreeAdd a widget to the Tree.
addFocusHandlerTreeAdd a handler for focus events (gaining keyboard focus).
addBlurHandlerTreeAdd a handler for blur events (losing keyboard focus).
addSelectionHandlerTreeAdd a handler for selection events.
addOpenHandlerTreeAdd a handler for open events.

class VerticalPanel

Members:

MemberTypeDescription
setVerticalAlignmentVerticalPanelSet the vertical alignment of widgets added to this VerticalPanel.
setHorizontalAlignmentVerticalPanelSet the horizontal alignment of widgets added to this VerticalPanel.
setSizeVerticalPanelSets the size of this VerticalPanel.
setStyleAttributeVerticalPanelSets one of this VerticalPanel's style attributes to a new value.
setStyleAttributesVerticalPanelSets this VerticalPanel's style attributes.
setTitleVerticalPanelSets the hover title of this VerticalPanel.
setHeightVerticalPanelSets the height of this VerticalPanel.
setVisibleVerticalPanelSets whether this VerticalPanel is visible.
setPixelSizeVerticalPanelSets the size of this VerticalPanel in pixels.
setWidthVerticalPanelSets the width of this VerticalPanel.
setStylePrimaryNameVerticalPanelSets the primary style name of this VerticalPanel.
addStyleDependentNameVerticalPanelSets the dependent style name of this VerticalPanel.
setStyleNameVerticalPanelSets the style name of this VerticalPanel.
addStyleNameVerticalPanelAdds a style name to this VerticalPanel.
getTagStringGets the text tag of this VerticalPanel.
setTagVerticalPanelSets the text tag of this VerticalPanel.
setBorderWidthVerticalPanelSets the border width.
setIdVerticalPanelSets the id of this VerticalPanel.
getIdStringReturns the id that has been assigned to this object.
clearVerticalPanelRemove all widgets from the VerticalPanel.
setCellWidthVerticalPanelSets the width of the cell associated with the given widget, related to the panel as a whole.
setCellVerticalAlignmentVerticalPanelSets the vertical alignment of the given widget within its cell.
setCellHorizontalAlignmentVerticalPanelSets the horizontal alignment of the given widget within its cell.
setSpacingVerticalPanelSets the amount of spacing between this panel's cells.
setBorderWidthVerticalPanelSets the width of the border to be applied to all cells in this panel.
setCellHeightVerticalPanelSets the height of the cell associated with the given widget, related to the panel as a whole.
addVerticalPanelAdd a widget to the VerticalPanel.
removeVerticalPanelRemove the widget with the given index from the VerticalPanel.
removeVerticalPanelRemove the given widget from the VerticalPanel.

Authentication required

You need to be signed in with Google+ to do that.

Signing you in...

Google Developers needs your permission to do that.