Build and control a custom user inteface.
Base Classes:
Class | Description |
---|---|
DateTimeFormatConstants | Date and time format constants for DateBox. |
FileTypeConstants | File type constants for the DocsListDialog. |
HorizontalAlignmentConstants | Horizontal alignment constants. |
UiInstance | A representation of a user interface. |
UiApp | Create user interfaces for use inside Google Apps or as standalone services. |
VerticalAlignmentConstants | Vertical alignment constants. |
AbsolutePanel | An absolute panel positions all of its children absolutely, allowing them to overlap. |
Anchor | A widget that represents a simple <a> element. That is, a hyperlink to a different page. |
Button | A standard push-button widget. |
CaptionPanel | A panel that wraps its contents in a border with a caption that appears in the upper left corner of the border. |
CheckBox | A standard check box widget. |
ClientHandler | An event handler that runs in the user's browser without needing a call back to the server. |
DateBox | A text box that shows a DatePicker when the user focuses on it. |
DatePicker | A date picker widget. |
DeckPanel | A panel that displays all of its child widgets in a 'deck', where only one can be visible at a time. |
DecoratedPopupPanel | A PopupPanel that wraps its content in a 3x3 grid, which allows users to add rounded corners. |
DecoratedStackPanel | A StackPanel that wraps each item in a 2x3 grid (six box), which allows users to add rounded corners. |
DecoratedTabBar | A TabBar that wraps each tab in a 2x3 grid (six box), which allows users to add rounded corners. |
DecoratedTabPanel | A TabPanel that uses a DecoratedTabBar with rounded corners. |
DecoratorPanel | A SimplePanel that wraps its contents in stylized boxes, which can be used to add rounded corners to a Widget. |
DialogBox | A form of popup that has a caption area at the top and can be dragged by the user. |
DockPanel | A 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. |
DocsListDialog | A file picker for files saved in Google Docs. |
FileUpload | A widget that wraps the HTML <input type='file'> element. |
FlexTable | A flexible table that creates cells on demand. |
FlowPanel | A panel that formats its child widgets using the default HTML layout behavior. |
FocusPanel | A simple panel that makes its contents focusable, and adds the ability to catch mouse and keyboard events. |
FormPanel | A panel that wraps its contents in an HTML <FORM> element. |
Grid | A rectangular grid that can contain text, html, or a child widget within its cells. |
Hidden | Represents a hidden field for storing data in the user's browser that can be passed back to a handler as a "callback element". |
HorizontalPanel | A panel that lays all of its widgets out in a single horizontal column. |
HTML | A widget that contains arbitrary text, which is interpreted as HTML. |
Hyperlink | A widget that serves as an "internal" hyperlink. |
Image | A widget that displays the image at a given URL. |
InlineHyperlink | A widget that serves as an "internal" hyperlink. |
InlineLabel | A widget that contains arbitrary text, not interpreted as HTML. |
Label | A widget that contains arbitrary text, not interpreted as HTML. |
LayoutPanel | A panel that lays its children out in arbitrary layers. |
ListBox | A widget that presents a list of choices to the user, either as a list box or as a drop-down list. |
MenuBar | A standard menu bar widget. |
MenuItem | An entry in a MenuBar. |
MenuItemSeparator | A separator that can be placed in a MenuBar. |
PasswordTextBox | A text box that visually masks its input to prevent eavesdropping. |
PopupPanel | A panel that can "pop up" over other widgets. |
PushButton | A normal push button with custom styling. |
RadioButton | A mutually-exclusive selection radio button widget. |
ResetButton | A standard push-button widget which will automatically reset its enclosing FormPanel if any. |
RichTextArea | A rich text editor that allows complex styling and formatting. |
ScrollPanel | A panel that wraps its contents in a scrollable element. |
ServerHandler | An event handler that runs on the server. |
SimpleCheckBox | A simple checkbox widget, with no label. |
SimplePanel | A panel that can contain only one widget. |
SimpleRadioButton | A simple radio button widget, with no label. |
SplitLayoutPanel | A panel that adds user-positioned splitters between each of its child widgets. |
StackPanel | A 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. |
SubmitButton | A standard push-button widget which will automatically submit its enclosing FormPanel if any. |
SuggestBox | A SuggestBox is a text box or text area which displays a pre-configured set of selections that match the user's input. |
TabBar | A horizontal bar of folder-style tabs, most commonly used as part of a TabPanel. |
TabPanel | A panel that represents a tabbed set of pages, each of which contains another widget. |
TextArea | A text box that allows multiple lines of text to be entered. |
TextBox | A standard single-line text box. |
ToggleButton | A ToggleButton is a stylish stateful button which allows the user to toggle between up and down states. |
TreeItem | An item that can be contained within a Tree. |
Tree | A standard hierarchical tree widget. |
VerticalPanel | A panel that lays all of its widgets out in a single vertical column. |
class DateTimeFormatConstants
Members:
Member | Type | Description |
---|---|---|
ISO_8601 | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
RFC_2822 | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_FULL | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_LONG | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_MEDIUM | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_SHORT | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
TIME_FULL | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
TIME_LONG | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
TIME_MEDIUM | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
TIME_SHORT | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_TIME_FULL | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_TIME_LONG | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_TIME_MEDIUM | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DATE_TIME_SHORT | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
HOUR_MINUTE | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
HOUR_MINUTE_SECOND | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
HOUR24_MINUTE | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
HOUR24_MINUTE_SECOND | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
MINUTE_SECOND | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
MONTH | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
MONTH_ABBR | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
MONTH_ABBR_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
MONTH_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
MONTH_NUM_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
MONTH_WEEKDAY_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_MONTH | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_MONTH_ABBR | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_MONTH_ABBR_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_MONTH_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_MONTH_NUM | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_MONTH_NUM_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_MONTH_WEEKDAY_DAY | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_QUARTER | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
YEAR_QUARTER_ABBR | Enum | Constants to use with setFormat methods in UiApp widgets such as DatePicker and DateBox. |
class FileTypeConstants
Members:
Member | Type | Description |
---|---|---|
ALL | Enum | Constants to use with UiApp. |
ALL_DOCS | Enum | Constants to use with UiApp. |
DRAWINGS | Enum | Constants to use with UiApp. |
DOCUMENTS | Enum | Constants to use with UiApp. |
SPREADSHEETS | Enum | Constants to use with UiApp. |
FOLDERS | Enum | Constants to use with UiApp. |
RECENTLY_PICKED | Enum | Constants to use with UiApp. |
PRESENTATIONS | Enum | Constants to use with UiApp. |
FORMS | Enum | Constants to use with UiApp. |
PHOTOS | Enum | Constants to use with UiApp. |
PHOTO_ALBUMS | Enum | Constants to use with UiApp. |
PDFS | Enum | Constants to use with UiApp. |
class HorizontalAlignmentConstants
Members:
Member | Type | Description |
---|---|---|
LEFT | Enum | Constants to use with setHorizontalAlignment methods in UiApp. |
RIGHT | Enum | Constants to use with setHorizontalAlignment methods in UiApp. |
CENTER | Enum | Constants to use with setHorizontalAlignment methods in UiApp. |
DEFAULT | Enum | Constants to use with setHorizontalAlignment methods in UiApp. |
JUSTIFY | Enum | Constants to use with setHorizontalAlignment methods in UiApp. |
LOCALE_START | Enum | Constants to use with setHorizontalAlignment methods in UiApp. |
LOCALE_END | Enum | Constants to use with setHorizontalAlignment methods in UiApp. |
class UiInstance
Members:
class UiApp
Members:
Member | Type | Description |
---|---|---|
createApplication | UiInstance | Create a new UiInstance, which you can use to build a UI. |
getActiveApplication | UiInstance | Gets the active UiInstance. |
getUserAgent | String | Return the browser user-agent string, so that you can tailor your app as needed. |
class VerticalAlignmentConstants
Members:
Member | Type | Description |
---|---|---|
TOP | Enum | Constants to use with setVerticalAlignment methods in UiApp. |
MIDDLE | Enum | Constants to use with setVerticalAlignment methods in UiApp. |
BOTTOM | Enum | Constants to use with setVerticalAlignment methods in UiApp. |
class AbsolutePanel
Members:
Member | Type | Description |
---|---|---|
setWidgetPosition | AbsolutePanel | Set the position of a widget that is already a child of the AbsolutePanel. |
add | AbsolutePanel | Add a widget to the AbsolutePanel. |
setId | AbsolutePanel | Sets the id of this AbsolutePanel. |
setSize | AbsolutePanel | Sets the size of this AbsolutePanel. |
setStyleAttribute | AbsolutePanel | Sets one of this AbsolutePanel's style attributes to a new value. |
setStyleAttributes | AbsolutePanel | Sets this AbsolutePanel's style attributes. |
setTitle | AbsolutePanel | Sets the hover title of this AbsolutePanel. |
setHeight | AbsolutePanel | Sets the height of this AbsolutePanel. |
setVisible | AbsolutePanel | Sets whether this AbsolutePanel is visible. |
setPixelSize | AbsolutePanel | Sets the size of this AbsolutePanel in pixels. |
setWidth | AbsolutePanel | Sets the width of this AbsolutePanel. |
setStylePrimaryName | AbsolutePanel | Sets the primary style name of this AbsolutePanel. |
addStyleDependentName | AbsolutePanel | Sets the dependent style name of this AbsolutePanel. |
setStyleName | AbsolutePanel | Sets the style name of this AbsolutePanel. |
addStyleName | AbsolutePanel | Adds a style name to this AbsolutePanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | AbsolutePanel | Remove all widgets from the AbsolutePanel. |
getTag | String | Gets the text tag of this AbsolutePanel. |
setTag | AbsolutePanel | Sets the text tag of this AbsolutePanel. |
add | AbsolutePanel | Add a widget to the AbsolutePanel. |
remove | AbsolutePanel | Remove the widget with the given index from the AbsolutePanel. |
remove | AbsolutePanel | Remove the given widget from the AbsolutePanel. |
class Anchor
Members:
Member | Type | Description |
---|---|---|
setSize | Anchor | Sets the size of this Anchor. |
setStyleAttribute | Anchor | Sets one of this Anchor's style attributes to a new value. |
setStyleAttributes | Anchor | Sets this Anchor's style attributes. |
setTitle | Anchor | Sets the hover title of this Anchor. |
setHeight | Anchor | Sets the height of this Anchor. |
setVisible | Anchor | Sets whether this Anchor is visible. |
setPixelSize | Anchor | Sets the size of this Anchor in pixels. |
setWidth | Anchor | Sets the width of this Anchor. |
setStylePrimaryName | Anchor | Sets the primary style name of this Anchor. |
addStyleDependentName | Anchor | Sets the dependent style name of this Anchor. |
setStyleName | Anchor | Sets the style name of this Anchor. |
addStyleName | Anchor | Adds a style name to this Anchor. |
addClickHandler | Anchor | Add a handler for click events. |
setHTML | Anchor | Sets the HTML content of this Anchor. |
getTag | String | Gets the text tag of this Anchor. |
setTag | Anchor | Sets the text tag of this Anchor. |
setHref | Anchor | Set the URL that this Anchor links to. |
setTarget | Anchor | Set the target of this link. |
setName | Anchor | Set the name of this link, rather than the target. |
setEnabled | Anchor | Sets whether the Anchor is enabled. |
setId | Anchor | Sets the id of this Anchor. |
addMouseDownHandler | Anchor | Add a handler for mouse down events. |
addMouseMoveHandler | Anchor | Add a handler for mouse move events. |
addMouseOutHandler | Anchor | Add a handler for mouse out events. |
addMouseOverHandler | Anchor | Add a handler for mouse move events. |
addMouseUpHandler | Anchor | Add a handler for mouse up events. |
addMouseWheelHandler | Anchor | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
setName | Anchor | Sets 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. |
addKeyDownHandler | Anchor | Add a handler for key down events. |
addKeyPressHandler | Anchor | Add a handler for key press events. |
addKeyUpHandler | Anchor | Add a handler for key up events. |
setFocus | Anchor | Explicitly focus/unfocus this Anchor. |
setTabIndex | Anchor | Sets the Anchor's position in the tab index. |
setText | Anchor | Set the display text of this Anchor. |
addFocusHandler | Anchor | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | Anchor | Add a handler for blur events (losing keyboard focus). |
class Button
Members:
Member | Type | Description |
---|---|---|
setSize | Button | Sets the size of this Button. |
setStyleAttribute | Button | Sets one of this Button's style attributes to a new value. |
setStyleAttributes | Button | Sets this Button's style attributes. |
setTitle | Button | Sets the hover title of this Button. |
setHeight | Button | Sets the height of this Button. |
setVisible | Button | Sets whether this Button is visible. |
setPixelSize | Button | Sets the size of this Button in pixels. |
setWidth | Button | Sets the width of this Button. |
setStylePrimaryName | Button | Sets the primary style name of this Button. |
addStyleDependentName | Button | Sets the dependent style name of this Button. |
setStyleName | Button | Sets the style name of this Button. |
addStyleName | Button | Adds a style name to this Button. |
addClickHandler | Button | Add a handler for click events. |
setHTML | Button | Sets the HTML content of this Button. |
getTag | String | Gets the text tag of this Button. |
setTag | Button | Sets the text tag of this Button. |
setEnabled | Button | Sets whether the Button is enabled. |
setId | Button | Sets the id of this Button. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | Button | Add a handler for mouse down events. |
addMouseMoveHandler | Button | Add a handler for mouse move events. |
addMouseOutHandler | Button | Add a handler for mouse out events. |
addMouseOverHandler | Button | Add a handler for mouse move events. |
addMouseUpHandler | Button | Add a handler for mouse up events. |
addMouseWheelHandler | Button | Add a handler for mouse wheel events. |
addKeyDownHandler | Button | Add a handler for key down events. |
addKeyPressHandler | Button | Add a handler for key press events. |
addKeyUpHandler | Button | Add a handler for key up events. |
setFocus | Button | Explicitly focus/unfocus this Button. |
setTabIndex | Button | Sets the Button's position in the tab index. |
addFocusHandler | Button | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | Button | Add a handler for blur events (losing keyboard focus). |
setText | Button | Set the display text of this Button. |
class CaptionPanel
Members:
Member | Type | Description |
---|---|---|
add | CaptionPanel | Add a widget to the CaptionPanel. This is a synonym for setWidget(Widget). |
setSize | CaptionPanel | Sets the size of this CaptionPanel. |
setStyleAttribute | CaptionPanel | Sets one of this CaptionPanel's style attributes to a new value. |
setStyleAttributes | CaptionPanel | Sets this CaptionPanel's style attributes. |
setTitle | CaptionPanel | Sets the hover title of this CaptionPanel. |
setHeight | CaptionPanel | Sets the height of this CaptionPanel. |
setVisible | CaptionPanel | Sets whether this CaptionPanel is visible. |
setPixelSize | CaptionPanel | Sets the size of this CaptionPanel in pixels. |
setWidth | CaptionPanel | Sets the width of this CaptionPanel. |
setStylePrimaryName | CaptionPanel | Sets the primary style name of this CaptionPanel. |
addStyleDependentName | CaptionPanel | Sets the dependent style name of this CaptionPanel. |
setStyleName | CaptionPanel | Sets the style name of this CaptionPanel. |
addStyleName | CaptionPanel | Adds a style name to this CaptionPanel. |
getTag | String | Gets the text tag of this CaptionPanel. |
setTag | CaptionPanel | Sets the text tag of this CaptionPanel. |
setId | CaptionPanel | Sets the id of this CaptionPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | CaptionPanel | Remove all widgets from the CaptionPanel. |
add | CaptionPanel | Add a widget to the CaptionPanel. |
setText | CaptionPanel | Set the display text of this CaptionPanel. |
setWidget | CaptionPanel | Sets the widget inside this CaptionPanel, removing anything previously there. |
class CheckBox
Members:
Member | Type | Description |
---|---|---|
setSize | CheckBox | Sets the size of this CheckBox. |
setStyleAttribute | CheckBox | Sets one of this CheckBox's style attributes to a new value. |
setStyleAttributes | CheckBox | Sets this CheckBox's style attributes. |
setTitle | CheckBox | Sets the hover title of this CheckBox. |
setHeight | CheckBox | Sets the height of this CheckBox. |
setVisible | CheckBox | Sets whether this CheckBox is visible. |
setPixelSize | CheckBox | Sets the size of this CheckBox in pixels. |
setWidth | CheckBox | Sets the width of this CheckBox. |
setStylePrimaryName | CheckBox | Sets the primary style name of this CheckBox. |
addStyleDependentName | CheckBox | Sets the dependent style name of this CheckBox. |
setStyleName | CheckBox | Sets the style name of this CheckBox. |
addStyleName | CheckBox | Adds a style name to this CheckBox. |
addClickHandler | CheckBox | Add a handler for click events. |
setHTML | CheckBox | Sets the HTML content of this CheckBox. |
getTag | String | Gets the text tag of this CheckBox. |
setTag | CheckBox | Sets the text tag of this CheckBox. |
setFormValue | CheckBox | Set the value property on the input element that backs this CheckBox. |
setValue | CheckBox | Sets whether the CheckBox should be checked. |
setValue | CheckBox | Sets whether the CheckBox should be checked and optionally fires an event if the value changes as a result of this call. |
setEnabled | CheckBox | Sets whether the CheckBox is enabled. |
addValueChangeHandler | CheckBox | Add a handler for value change events. |
setId | CheckBox | Sets the id of this CheckBox. |
addMouseDownHandler | CheckBox | Add a handler for mouse down events. |
addMouseMoveHandler | CheckBox | Add a handler for mouse move events. |
addMouseOutHandler | CheckBox | Add a handler for mouse out events. |
addMouseOverHandler | CheckBox | Add a handler for mouse move events. |
addMouseUpHandler | CheckBox | Add a handler for mouse up events. |
addMouseWheelHandler | CheckBox | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
setName | CheckBox | Sets 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. |
addKeyDownHandler | CheckBox | Add a handler for key down events. |
addKeyPressHandler | CheckBox | Add a handler for key press events. |
addKeyUpHandler | CheckBox | Add a handler for key up events. |
setFocus | CheckBox | Explicitly focus/unfocus this CheckBox. |
setTabIndex | CheckBox | Sets the CheckBox's position in the tab index. |
setText | CheckBox | Set the display text of this CheckBox. |
addFocusHandler | CheckBox | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | CheckBox | Add a handler for blur events (losing keyboard focus). |
class ClientHandler
Members:
Member | Type | Description |
---|---|---|
setId | ClientHandler | Sets the id of this ClientHandler. |
getId | String | Returns the id that has been assigned to this object. |
getTag | String | Gets the text tag of this ClientHandler. |
setTag | ClientHandler | Sets the text tag of this ClientHandler. |
setStyleAttribute | ClientHandler | A directive to set a style attribute on a grid element. |
setStyleAttribute | ClientHandler | A directive to set a style attribute on the widgets the handler is targeted to. |
setStyleAttributes | ClientHandler | A directive to set style attributes on a grid element. |
setStyleAttributes | ClientHandler | A directive to set style attributes on the widgets the handler is targeted to. |
forEventSource | ClientHandler | Sets the target of this handler for subsequent directives to be whatever widget triggered the event that this handler was called for. |
setVisible | ClientHandler | A directive to set the visibility of the widgets this handler is targeted to. |
setEnabled | ClientHandler | A directive to set the enabled/disabled state of the widgets this handler is targeted to. |
setText | ClientHandler | A directive to set the text of the widgets this handler is targeted to. |
setHTML | ClientHandler | A directive to set the html text of the widgets this handler is targeted to. |
setValue | ClientHandler | A directive to set the boolean value of the widgets this handler is targeted to. |
forTargets | ClientHandler | Sets the target of this handler for subsequent directives to be the given widgets. |
validateLength | ClientHandler | Sets this handler to fire only if the given widget's value is a string whose length is between min and max. |
validateNotMatches | ClientHandler | Sets this handler to fire only if the given widget's value does not match this regular expression. |
validateNotMatches | ClientHandler | Sets this handler to fire only if the given widget's value does not match this regular expression. |
validateNotRange | ClientHandler | Sets this handler to fire only if the given widget's value cannot be interpreted as a number that is between min and max. |
validateEmail | ClientHandler | Sets this handler to fire only if the given widget's value is a valid email address. |
validateRange | ClientHandler | Sets this handler to fire only if the given widget's value can be interpreted as a number and is between min and max. |
validateMatches | ClientHandler | Sets this handler to fire only if the given widget's value matches this regular expression. |
validateMatches | ClientHandler | Sets this handler to fire only if the given widget's value matches this regular expression. |
validateInteger | ClientHandler | Sets this handler to fire only if the given widget's value can be interpreted as an integer. |
validateNotEmail | ClientHandler | Sets this handler to fire only if the given widget's value is not a valid email address. |
validateNotNumber | ClientHandler | Sets this handler to fire only if the given widget's value cannot be interpreted as an number. |
validateNotLength | ClientHandler | Sets this handler to fire only if the given widget's value is a string whose length is less than min or greater than max. |
validateNotSum | ClientHandler | Sets 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. |
validateOptions | ClientHandler | Sets this handler to fire only if the given widget's value is one of the strings given in the options parameter. |
validateNotOptions | ClientHandler | Sets this handler to fire only if the given widget's value is not one of the strings given in the options parameter. |
validateNumber | ClientHandler | Sets this handler to fire only if the given widget's value can be interpreted as a number. |
validateNotInteger | ClientHandler | Sets this handler to fire only if the given widget's value cannot be interpreted as an integer. |
validateSum | ClientHandler | Sets this handler to fire only if the given widgets have values that are numbers and sum up to the given value. |
class DateBox
Members:
Member | Type | Description |
---|---|---|
setEnabled | DateBox | Sets whether the DateBox is enabled. |
addValueChangeHandler | DateBox | Add a handler for value change events. |
setId | DateBox | Sets the id of this DateBox. |
setSize | DateBox | Sets the size of this DateBox. |
setStyleAttribute | DateBox | Sets one of this DateBox's style attributes to a new value. |
setStyleAttributes | DateBox | Sets this DateBox's style attributes. |
setTitle | DateBox | Sets the hover title of this DateBox. |
setHeight | DateBox | Sets the height of this DateBox. |
setVisible | DateBox | Sets whether this DateBox is visible. |
setPixelSize | DateBox | Sets the size of this DateBox in pixels. |
setWidth | DateBox | Sets the width of this DateBox. |
setStylePrimaryName | DateBox | Sets the primary style name of this DateBox. |
addStyleDependentName | DateBox | Sets the dependent style name of this DateBox. |
setStyleName | DateBox | Sets the style name of this DateBox. |
addStyleName | DateBox | Adds a style name to this DateBox. |
getId | String | Returns the id that has been assigned to this object. |
showDatePicker | DateBox | Parses the current DateBox's value and shows that date. |
setFormat | DateBox | Sets the format used to control formatting and parsing of dates in this DateBox. |
hideDatePicker | DateBox | Hide the date picker. |
setValue | DateBox | Sets the date shown by this DateBox. |
getTag | String | Gets the text tag of this DateBox. |
setTag | DateBox | Sets the text tag of this DateBox. |
setFocus | DateBox | Explicitly focus/unfocus this DateBox. |
setTabIndex | DateBox | Sets the DateBox's position in the tab index. |
setName | DateBox | Sets 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:
Member | Type | Description |
---|---|---|
setCurrentMonth | DatePicker | Sets the DatePicker to show the given month without selecting a particular date. |
addValueChangeHandler | DatePicker | Add a handler for value change events. |
setId | DatePicker | Sets the id of this DatePicker. |
setSize | DatePicker | Sets the size of this DatePicker. |
setStyleAttribute | DatePicker | Sets one of this DatePicker's style attributes to a new value. |
setStyleAttributes | DatePicker | Sets this DatePicker's style attributes. |
setTitle | DatePicker | Sets the hover title of this DatePicker. |
setHeight | DatePicker | Sets the height of this DatePicker. |
setVisible | DatePicker | Sets whether this DatePicker is visible. |
setPixelSize | DatePicker | Sets the size of this DatePicker in pixels. |
setWidth | DatePicker | Sets the width of this DatePicker. |
setStylePrimaryName | DatePicker | Sets the primary style name of this DatePicker. |
addStyleDependentName | DatePicker | Sets the dependent style name of this DatePicker. |
setStyleName | DatePicker | Sets the style name of this DatePicker. |
addStyleName | DatePicker | Adds a style name to this DatePicker. |
getId | String | Returns the id that has been assigned to this object. |
setValue | DatePicker | Sets the date shown by this DatePicker. |
getTag | String | Gets the text tag of this DatePicker. |
setTag | DatePicker | Sets the text tag of this DatePicker. |
setName | DatePicker | Sets 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:
Member | Type | Description |
---|---|---|
setAnimationEnabled | DeckPanel | Enable or disable animations when changing the visible widget. |
setSize | DeckPanel | Sets the size of this DeckPanel. |
setStyleAttribute | DeckPanel | Sets one of this DeckPanel's style attributes to a new value. |
setStyleAttributes | DeckPanel | Sets this DeckPanel's style attributes. |
setTitle | DeckPanel | Sets the hover title of this DeckPanel. |
setHeight | DeckPanel | Sets the height of this DeckPanel. |
setVisible | DeckPanel | Sets whether this DeckPanel is visible. |
setPixelSize | DeckPanel | Sets the size of this DeckPanel in pixels. |
setWidth | DeckPanel | Sets the width of this DeckPanel. |
setStylePrimaryName | DeckPanel | Sets the primary style name of this DeckPanel. |
addStyleDependentName | DeckPanel | Sets the dependent style name of this DeckPanel. |
setStyleName | DeckPanel | Sets the style name of this DeckPanel. |
addStyleName | DeckPanel | Adds a style name to this DeckPanel. |
getTag | String | Gets the text tag of this DeckPanel. |
setTag | DeckPanel | Sets the text tag of this DeckPanel. |
setId | DeckPanel | Sets the id of this DeckPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | DeckPanel | Remove all widgets from the DeckPanel. |
setAnimationEnabled | DeckPanel | Sets whether opening and closing the DeckPanel is animated. |
add | DeckPanel | Add a widget to the DeckPanel. |
remove | DeckPanel | Remove the widget with the given index from the DeckPanel. |
remove | DeckPanel | Remove the given widget from the DeckPanel. |
class DecoratedPopupPanel
Members:
Member | Type | Description |
---|---|---|
setSize | DecoratedPopupPanel | Sets the size of this DecoratedPopupPanel. |
setStyleAttribute | DecoratedPopupPanel | Sets one of this DecoratedPopupPanel's style attributes to a new value. |
setStyleAttributes | DecoratedPopupPanel | Sets this DecoratedPopupPanel's style attributes. |
setTitle | DecoratedPopupPanel | Sets the hover title of this DecoratedPopupPanel. |
setHeight | DecoratedPopupPanel | Sets the height of this DecoratedPopupPanel. |
setVisible | DecoratedPopupPanel | Sets whether this DecoratedPopupPanel is visible. |
setPixelSize | DecoratedPopupPanel | Sets the size of this DecoratedPopupPanel in pixels. |
setWidth | DecoratedPopupPanel | Sets the width of this DecoratedPopupPanel. |
setStylePrimaryName | DecoratedPopupPanel | Sets the primary style name of this DecoratedPopupPanel. |
addStyleDependentName | DecoratedPopupPanel | Sets the dependent style name of this DecoratedPopupPanel. |
setStyleName | DecoratedPopupPanel | Sets the style name of this DecoratedPopupPanel. |
addStyleName | DecoratedPopupPanel | Adds a style name to this DecoratedPopupPanel. |
getTag | String | Gets the text tag of this DecoratedPopupPanel. |
setTag | DecoratedPopupPanel | Sets the text tag of this DecoratedPopupPanel. |
setId | DecoratedPopupPanel | Sets the id of this DecoratedPopupPanel. |
getId | String | Returns the id that has been assigned to this object. |
addCloseHandler | DecoratedPopupPanel | Add a handler for close events. |
clear | DecoratedPopupPanel | Remove all widgets from the DecoratedPopupPanel. |
setAnimationEnabled | DecoratedPopupPanel | Sets whether opening and closing the DecoratedPopupPanel is animated. |
setPopupPositionAndShow | DecoratedPopupPanel | Set the popup position. |
setModal | DecoratedPopupPanel | Sets whether this DecoratedPopupPanel is in "modal" mode. |
setGlassEnabled | DecoratedPopupPanel | Enable or disable a "glass" pane. |
setAutoHideEnabled | DecoratedPopupPanel | Enable or disable the autoHide feature. |
setPreviewingAllNativeEvents | DecoratedPopupPanel | When enabled, the DecoratedPopupPanel will preview all native events, even if another popup was opened after this one. |
setPopupPosition | DecoratedPopupPanel | Sets the popup's position relative to the browser's client area. |
add | DecoratedPopupPanel | Add a widget to the DecoratedPopupPanel. |
setWidget | DecoratedPopupPanel | Sets the widget inside this DecoratedPopupPanel, removing anything previously there. |
class DecoratedStackPanel
Members:
Member | Type | Description |
---|---|---|
setSize | DecoratedStackPanel | Sets the size of this DecoratedStackPanel. |
setStyleAttribute | DecoratedStackPanel | Sets one of this DecoratedStackPanel's style attributes to a new value. |
setStyleAttributes | DecoratedStackPanel | Sets this DecoratedStackPanel's style attributes. |
setTitle | DecoratedStackPanel | Sets the hover title of this DecoratedStackPanel. |
setHeight | DecoratedStackPanel | Sets the height of this DecoratedStackPanel. |
setVisible | DecoratedStackPanel | Sets whether this DecoratedStackPanel is visible. |
setPixelSize | DecoratedStackPanel | Sets the size of this DecoratedStackPanel in pixels. |
setWidth | DecoratedStackPanel | Sets the width of this DecoratedStackPanel. |
setStylePrimaryName | DecoratedStackPanel | Sets the primary style name of this DecoratedStackPanel. |
addStyleDependentName | DecoratedStackPanel | Sets the dependent style name of this DecoratedStackPanel. |
setStyleName | DecoratedStackPanel | Sets the style name of this DecoratedStackPanel. |
addStyleName | DecoratedStackPanel | Adds a style name to this DecoratedStackPanel. |
getTag | String | Gets the text tag of this DecoratedStackPanel. |
setTag | DecoratedStackPanel | Sets the text tag of this DecoratedStackPanel. |
add | DecoratedStackPanel | Adds a widget to the stack with the given header text. |
add | DecoratedStackPanel | Adds a widget to the stack with the given header text. |
setStackText | DecoratedStackPanel | Sets the text associated with a child by its index. |
setStackText | DecoratedStackPanel | Sets the text associated with a child by its index. |
setId | DecoratedStackPanel | Sets the id of this DecoratedStackPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | DecoratedStackPanel | Remove all widgets from the DecoratedStackPanel. |
add | DecoratedStackPanel | Add a widget to the DecoratedStackPanel. |
remove | DecoratedStackPanel | Remove the widget with the given index from the DecoratedStackPanel. |
remove | DecoratedStackPanel | Remove the given widget from the DecoratedStackPanel. |
class DecoratedTabBar
Members:
Member | Type | Description |
---|---|---|
setSize | DecoratedTabBar | Sets the size of this DecoratedTabBar. |
setStyleAttribute | DecoratedTabBar | Sets one of this DecoratedTabBar's style attributes to a new value. |
setStyleAttributes | DecoratedTabBar | Sets this DecoratedTabBar's style attributes. |
setTitle | DecoratedTabBar | Sets the hover title of this DecoratedTabBar. |
setHeight | DecoratedTabBar | Sets the height of this DecoratedTabBar. |
setVisible | DecoratedTabBar | Sets whether this DecoratedTabBar is visible. |
setPixelSize | DecoratedTabBar | Sets the size of this DecoratedTabBar in pixels. |
setWidth | DecoratedTabBar | Sets the width of this DecoratedTabBar. |
setStylePrimaryName | DecoratedTabBar | Sets the primary style name of this DecoratedTabBar. |
addStyleDependentName | DecoratedTabBar | Sets the dependent style name of this DecoratedTabBar. |
setStyleName | DecoratedTabBar | Sets the style name of this DecoratedTabBar. |
addStyleName | DecoratedTabBar | Adds a style name to this DecoratedTabBar. |
getTag | String | Gets the text tag of this DecoratedTabBar. |
setTag | DecoratedTabBar | Sets the text tag of this DecoratedTabBar. |
setTabEnabled | DecoratedTabBar | Set whether the given tab is enabled. |
addTab | DecoratedTabBar | Add a tab with the given title. |
addTab | DecoratedTabBar | Add a tab with the given widget as its title. |
addTab | DecoratedTabBar | Add a tab with the given title. |
setId | DecoratedTabBar | Sets the id of this DecoratedTabBar. |
getId | String | Returns the id that has been assigned to this object. |
setTabText | DecoratedTabBar | Set the header text of a given tab. |
selectTab | DecoratedTabBar | Select a tab by index. |
addSelectionHandler | DecoratedTabBar | Add a handler for selection events. |
class DecoratedTabPanel
Members:
Member | Type | Description |
---|---|---|
setSize | DecoratedTabPanel | Sets the size of this DecoratedTabPanel. |
setStyleAttribute | DecoratedTabPanel | Sets one of this DecoratedTabPanel's style attributes to a new value. |
setStyleAttributes | DecoratedTabPanel | Sets this DecoratedTabPanel's style attributes. |
setTitle | DecoratedTabPanel | Sets the hover title of this DecoratedTabPanel. |
setHeight | DecoratedTabPanel | Sets the height of this DecoratedTabPanel. |
setVisible | DecoratedTabPanel | Sets whether this DecoratedTabPanel is visible. |
setPixelSize | DecoratedTabPanel | Sets the size of this DecoratedTabPanel in pixels. |
setWidth | DecoratedTabPanel | Sets the width of this DecoratedTabPanel. |
setStylePrimaryName | DecoratedTabPanel | Sets the primary style name of this DecoratedTabPanel. |
addStyleDependentName | DecoratedTabPanel | Sets the dependent style name of this DecoratedTabPanel. |
setStyleName | DecoratedTabPanel | Sets the style name of this DecoratedTabPanel. |
addStyleName | DecoratedTabPanel | Adds a style name to this DecoratedTabPanel. |
getTag | String | Gets the text tag of this DecoratedTabPanel. |
setTag | DecoratedTabPanel | Sets the text tag of this DecoratedTabPanel. |
add | DecoratedTabPanel | Adds a widget to the stack with the given header text. |
add | DecoratedTabPanel | Adds a widget to the stack with the given header text. |
setAnimationEnabled | DecoratedTabPanel | Sets whether changing tabs DecoratedTabPanel is animated. |
setId | DecoratedTabPanel | Sets the id of this DecoratedTabPanel. |
getId | String | Returns the id that has been assigned to this object. |
setAnimationEnabled | DecoratedTabPanel | Sets whether opening and closing the DecoratedTabPanel is animated. |
add | DecoratedTabPanel | Add a widget to the DecoratedTabPanel. |
selectTab | DecoratedTabPanel | Select a tab by index. |
add | DecoratedTabPanel | Add a widget to this DecoratedTabPanel with the given widget as its tab header. |
addSelectionHandler | DecoratedTabPanel | Add a handler for selection events. |
class DecoratorPanel
Members:
Member | Type | Description |
---|---|---|
setId | DecoratorPanel | Sets the id of this DecoratorPanel. |
setSize | DecoratorPanel | Sets the size of this DecoratorPanel. |
setStyleAttribute | DecoratorPanel | Sets one of this DecoratorPanel's style attributes to a new value. |
setStyleAttributes | DecoratorPanel | Sets this DecoratorPanel's style attributes. |
setTitle | DecoratorPanel | Sets the hover title of this DecoratorPanel. |
setHeight | DecoratorPanel | Sets the height of this DecoratorPanel. |
setVisible | DecoratorPanel | Sets whether this DecoratorPanel is visible. |
setPixelSize | DecoratorPanel | Sets the size of this DecoratorPanel in pixels. |
setWidth | DecoratorPanel | Sets the width of this DecoratorPanel. |
setStylePrimaryName | DecoratorPanel | Sets the primary style name of this DecoratorPanel. |
addStyleDependentName | DecoratorPanel | Sets the dependent style name of this DecoratorPanel. |
setStyleName | DecoratorPanel | Sets the style name of this DecoratorPanel. |
addStyleName | DecoratorPanel | Adds a style name to this DecoratorPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | DecoratorPanel | Remove all widgets from the DecoratorPanel. |
getTag | String | Gets the text tag of this DecoratorPanel. |
setTag | DecoratorPanel | Sets the text tag of this DecoratorPanel. |
add | DecoratorPanel | Add a widget to the DecoratorPanel. |
setWidget | DecoratorPanel | Sets the widget inside this DecoratorPanel, removing anything previously there. |
class DialogBox
Members:
Member | Type | Description |
---|---|---|
setSize | DialogBox | Sets the size of this DialogBox. |
setStyleAttribute | DialogBox | Sets one of this DialogBox's style attributes to a new value. |
setStyleAttributes | DialogBox | Sets this DialogBox's style attributes. |
setTitle | DialogBox | Sets the hover title of this DialogBox. |
setHeight | DialogBox | Sets the height of this DialogBox. |
setVisible | DialogBox | Sets whether this DialogBox is visible. |
setPixelSize | DialogBox | Sets the size of this DialogBox in pixels. |
setWidth | DialogBox | Sets the width of this DialogBox. |
setStylePrimaryName | DialogBox | Sets the primary style name of this DialogBox. |
addStyleDependentName | DialogBox | Sets the dependent style name of this DialogBox. |
setStyleName | DialogBox | Sets the style name of this DialogBox. |
addStyleName | DialogBox | Adds a style name to this DialogBox. |
setHTML | DialogBox | Sets the HTML content of this DialogBox. |
getTag | String | Gets the text tag of this DialogBox. |
setTag | DialogBox | Sets the text tag of this DialogBox. |
setText | DialogBox | Sets the text inside the caption. |
setId | DialogBox | Sets the id of this DialogBox. |
getId | String | Returns the id that has been assigned to this object. |
addCloseHandler | DialogBox | Add a handler for close events. |
clear | DialogBox | Remove all widgets from the DialogBox. |
setAnimationEnabled | DialogBox | Sets whether opening and closing the DialogBox is animated. |
setPopupPositionAndShow | DialogBox | Set the popup position. |
setModal | DialogBox | Sets whether this DialogBox is in "modal" mode. |
setGlassEnabled | DialogBox | Enable or disable a "glass" pane. |
setAutoHideEnabled | DialogBox | Enable or disable the autoHide feature. |
setPreviewingAllNativeEvents | DialogBox | When enabled, the DialogBox will preview all native events, even if another popup was opened after this one. |
setPopupPosition | DialogBox | Sets the popup's position relative to the browser's client area. |
add | DialogBox | Add a widget to the DialogBox. |
setText | DialogBox | Set the display text of this DialogBox. |
setWidget | DialogBox | Sets the widget inside this DialogBox, removing anything previously there. |
class DockPanel
Members:
Member | Type | Description |
---|---|---|
setVerticalAlignment | DockPanel | Set the vertical alignment of widgets added to this DockPanel. |
setHorizontalAlignment | DockPanel | Set the horizontal alignment of widgets added to this DockPanel. |
setSize | DockPanel | Sets the size of this DockPanel. |
setStyleAttribute | DockPanel | Sets one of this DockPanel's style attributes to a new value. |
setStyleAttributes | DockPanel | Sets this DockPanel's style attributes. |
setTitle | DockPanel | Sets the hover title of this DockPanel. |
setHeight | DockPanel | Sets the height of this DockPanel. |
setVisible | DockPanel | Sets whether this DockPanel is visible. |
setPixelSize | DockPanel | Sets the size of this DockPanel in pixels. |
setWidth | DockPanel | Sets the width of this DockPanel. |
setStylePrimaryName | DockPanel | Sets the primary style name of this DockPanel. |
addStyleDependentName | DockPanel | Sets the dependent style name of this DockPanel. |
setStyleName | DockPanel | Sets the style name of this DockPanel. |
addStyleName | DockPanel | Adds a style name to this DockPanel. |
add | DockPanel | Add a widget to the DockPanel in the given direction. |
getTag | String | Gets the text tag of this DockPanel. |
setTag | DockPanel | Sets the text tag of this DockPanel. |
setBorderWidth | DockPanel | Sets the border width. |
setId | DockPanel | Sets the id of this DockPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | DockPanel | Remove all widgets from the DockPanel. |
setCellWidth | DockPanel | Sets the width of the cell associated with the given widget, related to the panel as a whole. |
setCellVerticalAlignment | DockPanel | Sets the vertical alignment of the given widget within its cell. |
setCellHorizontalAlignment | DockPanel | Sets the horizontal alignment of the given widget within its cell. |
setSpacing | DockPanel | Sets the amount of spacing between this panel's cells. |
setBorderWidth | DockPanel | Sets the width of the border to be applied to all cells in this panel. |
setCellHeight | DockPanel | Sets the height of the cell associated with the given widget, related to the panel as a whole. |
remove | DockPanel | Remove the widget with the given index from the DockPanel. |
remove | DockPanel | Remove the given widget from the DockPanel. |
class DocsListDialog
Members:
Member | Type | Description |
---|---|---|
getId | String | Returns the id that has been assigned to this object. |
addCloseHandler | DocsListDialog | Add a handler for close events. |
addSelectionHandler | DocsListDialog | Add a handler for selection events. |
showDocsPicker | DocsListDialog | Show this DocsListDialog. |
setDialogTitle | DocsListDialog | Set the title of this DocsListDialog. |
setInitialView | DocsListDialog | Set the initial type of file that this DocsListDialog will show. |
addView | DocsListDialog | Add a type of file that this DocsListDialog will show. |
setHeight | DocsListDialog | Set the height of this DocsListDialog. |
setMultiSelectEnabled | DocsListDialog | Set whether multiple items can be selected. |
setWidth | DocsListDialog | Set the width of this DocsListDialog. |
class FileUpload
Members:
Member | Type | Description |
---|---|---|
setEnabled | FileUpload | Sets whether the FileUpload is enabled. |
setId | FileUpload | Sets the id of this FileUpload. |
setSize | FileUpload | Sets the size of this FileUpload. |
setStyleAttribute | FileUpload | Sets one of this FileUpload's style attributes to a new value. |
setStyleAttributes | FileUpload | Sets this FileUpload's style attributes. |
setTitle | FileUpload | Sets the hover title of this FileUpload. |
setHeight | FileUpload | Sets the height of this FileUpload. |
setVisible | FileUpload | Sets whether this FileUpload is visible. |
setPixelSize | FileUpload | Sets the size of this FileUpload in pixels. |
setWidth | FileUpload | Sets the width of this FileUpload. |
setStylePrimaryName | FileUpload | Sets the primary style name of this FileUpload. |
addStyleDependentName | FileUpload | Sets the dependent style name of this FileUpload. |
setStyleName | FileUpload | Sets the style name of this FileUpload. |
addStyleName | FileUpload | Adds a style name to this FileUpload. |
addChangeHandler | FileUpload | Add a handler for change events. |
getId | String | Returns the id that has been assigned to this object. |
setName | FileUpload | Sets 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. |
getTag | String | Gets the text tag of this FileUpload. |
setTag | FileUpload | Sets the text tag of this FileUpload. |
class FlexTable
Members:
Member | Type | Description |
---|---|---|
setSize | FlexTable | Sets the size of this FlexTable. |
setStyleAttribute | FlexTable | Sets one of this FlexTable's style attributes to a new value. |
setStyleAttributes | FlexTable | Sets this FlexTable's style attributes. |
setTitle | FlexTable | Sets the hover title of this FlexTable. |
setHeight | FlexTable | Sets the height of this FlexTable. |
setVisible | FlexTable | Sets whether this FlexTable is visible. |
setPixelSize | FlexTable | Sets the size of this FlexTable in pixels. |
setWidth | FlexTable | Sets the width of this FlexTable. |
setStylePrimaryName | FlexTable | Sets the primary style name of this FlexTable. |
addStyleDependentName | FlexTable | Sets the dependent style name of this FlexTable. |
setStyleName | FlexTable | Sets the style name of this FlexTable. |
addStyleName | FlexTable | Adds a style name to this FlexTable. |
addClickHandler | FlexTable | Add a handler for click events. |
insertRow | FlexTable | Inserts a row into the FlexTable before the given row. |
insertCell | FlexTable | Inserts a cell into the FlexTable. |
addCell | FlexTable | Appends a cell to the specified row. |
removeCell | FlexTable | Removes the specified cell from the FlexTable. |
removeRow | FlexTable | Removes the specified row from the FlexTable. |
removeCells | FlexTable | Removes a number of cells from one row in the FlexTable. |
getTag | String | Gets the text tag of this FlexTable. |
setTag | FlexTable | Sets the text tag of this FlexTable. |
setBorderWidth | FlexTable | Sets the border width. |
setStyleAttribute | FlexTable | Sets a CSS style on a cell of this FlexTable. |
setStyleAttributes | FlexTable | Sets CSS styles on a cell of this FlexTable. |
setCellSpacing | FlexTable | Sets the spacing between cells. |
setCellPadding | FlexTable | Sets the padding within cells. |
setWidget | FlexTable | Sets the widget in a given cell. A cell can contain at most one widget. |
setText | FlexTable | Sets the contents of a given cell to the given text. |
setId | FlexTable | Sets the id of this FlexTable. |
getId | String | Returns the id that has been assigned to this object. |
clear | FlexTable | Remove all widgets from the FlexTable. |
class FlowPanel
Members:
Member | Type | Description |
---|---|---|
setId | FlowPanel | Sets the id of this FlowPanel. |
setSize | FlowPanel | Sets the size of this FlowPanel. |
setStyleAttribute | FlowPanel | Sets one of this FlowPanel's style attributes to a new value. |
setStyleAttributes | FlowPanel | Sets this FlowPanel's style attributes. |
setTitle | FlowPanel | Sets the hover title of this FlowPanel. |
setHeight | FlowPanel | Sets the height of this FlowPanel. |
setVisible | FlowPanel | Sets whether this FlowPanel is visible. |
setPixelSize | FlowPanel | Sets the size of this FlowPanel in pixels. |
setWidth | FlowPanel | Sets the width of this FlowPanel. |
setStylePrimaryName | FlowPanel | Sets the primary style name of this FlowPanel. |
addStyleDependentName | FlowPanel | Sets the dependent style name of this FlowPanel. |
setStyleName | FlowPanel | Sets the style name of this FlowPanel. |
addStyleName | FlowPanel | Adds a style name to this FlowPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | FlowPanel | Remove all widgets from the FlowPanel. |
getTag | String | Gets the text tag of this FlowPanel. |
setTag | FlowPanel | Sets the text tag of this FlowPanel. |
add | FlowPanel | Add a widget to the FlowPanel. |
remove | FlowPanel | Remove the widget with the given index from the FlowPanel. |
remove | FlowPanel | Remove the given widget from the FlowPanel. |
insert | FlowPanel | Add a widget to the FlowPanel at a specific index. |
class FocusPanel
Members:
Member | Type | Description |
---|---|---|
addClickHandler | FocusPanel | Add a handler for click events. |
setSize | FocusPanel | Sets the size of this FocusPanel. |
setStyleAttribute | FocusPanel | Sets one of this FocusPanel's style attributes to a new value. |
setStyleAttributes | FocusPanel | Sets this FocusPanel's style attributes. |
setTitle | FocusPanel | Sets the hover title of this FocusPanel. |
setHeight | FocusPanel | Sets the height of this FocusPanel. |
setVisible | FocusPanel | Sets whether this FocusPanel is visible. |
setPixelSize | FocusPanel | Sets the size of this FocusPanel in pixels. |
setWidth | FocusPanel | Sets the width of this FocusPanel. |
setStylePrimaryName | FocusPanel | Sets the primary style name of this FocusPanel. |
addStyleDependentName | FocusPanel | Sets the dependent style name of this FocusPanel. |
setStyleName | FocusPanel | Sets the style name of this FocusPanel. |
addStyleName | FocusPanel | Adds a style name to this FocusPanel. |
getTag | String | Gets the text tag of this FocusPanel. |
setTag | FocusPanel | Sets the text tag of this FocusPanel. |
setId | FocusPanel | Sets the id of this FocusPanel. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | FocusPanel | Add a handler for mouse down events. |
addMouseMoveHandler | FocusPanel | Add a handler for mouse move events. |
addMouseOutHandler | FocusPanel | Add a handler for mouse out events. |
addMouseOverHandler | FocusPanel | Add a handler for mouse move events. |
addMouseUpHandler | FocusPanel | Add a handler for mouse up events. |
addMouseWheelHandler | FocusPanel | Add a handler for mouse wheel events. |
clear | FocusPanel | Remove all widgets from the FocusPanel. |
addKeyDownHandler | FocusPanel | Add a handler for key down events. |
addKeyPressHandler | FocusPanel | Add a handler for key press events. |
addKeyUpHandler | FocusPanel | Add a handler for key up events. |
setFocus | FocusPanel | Explicitly focus/unfocus this FocusPanel. |
setTabIndex | FocusPanel | Sets the FocusPanel's position in the tab index. |
add | FocusPanel | Add a widget to the FocusPanel. |
addFocusHandler | FocusPanel | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | FocusPanel | Add a handler for blur events (losing keyboard focus). |
setWidget | FocusPanel | Sets the widget inside this FocusPanel, removing anything previously there. |
class FormPanel
Members:
Member | Type | Description |
---|---|---|
addSubmitCompleteHandler | FormPanel | Add a handler for when the form is submitted and the server has finished processing the results. |
addSubmitHandler | FormPanel | Add a handler for when the form is submitted. |
setMethod | FormPanel | Sets the HTTP method used for submitting this form. |
setAction | FormPanel | Sets the URL to submit this form to. |
setEncoding | FormPanel | Sets the encoding used for submitting this form. |
setId | FormPanel | Sets the id of this FormPanel. |
setSize | FormPanel | Sets the size of this FormPanel. |
setStyleAttribute | FormPanel | Sets one of this FormPanel's style attributes to a new value. |
setStyleAttributes | FormPanel | Sets this FormPanel's style attributes. |
setTitle | FormPanel | Sets the hover title of this FormPanel. |
setHeight | FormPanel | Sets the height of this FormPanel. |
setVisible | FormPanel | Sets whether this FormPanel is visible. |
setPixelSize | FormPanel | Sets the size of this FormPanel in pixels. |
setWidth | FormPanel | Sets the width of this FormPanel. |
setStylePrimaryName | FormPanel | Sets the primary style name of this FormPanel. |
addStyleDependentName | FormPanel | Sets the dependent style name of this FormPanel. |
setStyleName | FormPanel | Sets the style name of this FormPanel. |
addStyleName | FormPanel | Adds a style name to this FormPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | FormPanel | Remove all widgets from the FormPanel. |
getTag | String | Gets the text tag of this FormPanel. |
setTag | FormPanel | Sets the text tag of this FormPanel. |
add | FormPanel | Add a widget to the FormPanel. |
setWidget | FormPanel | Sets the widget inside this FormPanel, removing anything previously there. |
class Grid
Members:
Member | Type | Description |
---|---|---|
setSize | Grid | Sets the size of this Grid. |
setStyleAttribute | Grid | Sets one of this Grid's style attributes to a new value. |
setStyleAttributes | Grid | Sets this Grid's style attributes. |
setTitle | Grid | Sets the hover title of this Grid. |
setHeight | Grid | Sets the height of this Grid. |
setVisible | Grid | Sets whether this Grid is visible. |
setPixelSize | Grid | Sets the size of this Grid in pixels. |
setWidth | Grid | Sets the width of this Grid. |
setStylePrimaryName | Grid | Sets the primary style name of this Grid. |
addStyleDependentName | Grid | Sets the dependent style name of this Grid. |
setStyleName | Grid | Sets the style name of this Grid. |
addStyleName | Grid | Adds a style name to this Grid. |
addClickHandler | Grid | Add a handler for click events. |
getTag | String | Gets the text tag of this Grid. |
setTag | Grid | Sets the text tag of this Grid. |
setBorderWidth | Grid | Sets the border width. |
setStyleAttribute | Grid | Sets a CSS style on a cell of this Grid. |
setStyleAttributes | Grid | Sets CSS styles on a cell of this Grid. |
setCellSpacing | Grid | Sets the spacing between cells. |
setCellPadding | Grid | Sets the padding within cells. |
setWidget | Grid | Sets the widget in a given cell. A cell can contain at most one widget. |
setText | Grid | Sets the contents of a given cell to the given text. |
setId | Grid | Sets the id of this Grid. |
getId | String | Returns the id that has been assigned to this object. |
clear | Grid | Remove all widgets from the Grid. |
resize | Grid | Resizes the Grid. |
class Hidden
Members:
Member | Type | Description |
---|---|---|
setId | Hidden | Sets the id of this Hidden. |
setSize | Hidden | Sets the size of this Hidden. |
setStyleAttribute | Hidden | Sets one of this Hidden's style attributes to a new value. |
setStyleAttributes | Hidden | Sets this Hidden's style attributes. |
setTitle | Hidden | Sets the hover title of this Hidden. |
setHeight | Hidden | Sets the height of this Hidden. |
setVisible | Hidden | Sets whether this Hidden is visible. |
setPixelSize | Hidden | Sets the size of this Hidden in pixels. |
setWidth | Hidden | Sets the width of this Hidden. |
setStylePrimaryName | Hidden | Sets the primary style name of this Hidden. |
addStyleDependentName | Hidden | Sets the dependent style name of this Hidden. |
setStyleName | Hidden | Sets the style name of this Hidden. |
addStyleName | Hidden | Adds a style name to this Hidden. |
getId | String | Returns the id that has been assigned to this object. |
setName | Hidden | Sets 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. |
getTag | String | Gets the text tag of this Hidden. |
setTag | Hidden | Sets the text tag of this Hidden. |
setValue | Hidden | Sets the value of this Hidden. |
class HorizontalPanel
Members:
Member | Type | Description |
---|---|---|
setVerticalAlignment | HorizontalPanel | Set the vertical alignment of widgets added to this HorizontalPanel. |
setHorizontalAlignment | HorizontalPanel | Set the horizontal alignment of widgets added to this HorizontalPanel. |
setSize | HorizontalPanel | Sets the size of this HorizontalPanel. |
setStyleAttribute | HorizontalPanel | Sets one of this HorizontalPanel's style attributes to a new value. |
setStyleAttributes | HorizontalPanel | Sets this HorizontalPanel's style attributes. |
setTitle | HorizontalPanel | Sets the hover title of this HorizontalPanel. |
setHeight | HorizontalPanel | Sets the height of this HorizontalPanel. |
setVisible | HorizontalPanel | Sets whether this HorizontalPanel is visible. |
setPixelSize | HorizontalPanel | Sets the size of this HorizontalPanel in pixels. |
setWidth | HorizontalPanel | Sets the width of this HorizontalPanel. |
setStylePrimaryName | HorizontalPanel | Sets the primary style name of this HorizontalPanel. |
addStyleDependentName | HorizontalPanel | Sets the dependent style name of this HorizontalPanel. |
setStyleName | HorizontalPanel | Sets the style name of this HorizontalPanel. |
addStyleName | HorizontalPanel | Adds a style name to this HorizontalPanel. |
getTag | String | Gets the text tag of this HorizontalPanel. |
setTag | HorizontalPanel | Sets the text tag of this HorizontalPanel. |
setBorderWidth | HorizontalPanel | Sets the border width. |
setId | HorizontalPanel | Sets the id of this HorizontalPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | HorizontalPanel | Remove all widgets from the HorizontalPanel. |
setCellWidth | HorizontalPanel | Sets the width of the cell associated with the given widget, related to the panel as a whole. |
setCellVerticalAlignment | HorizontalPanel | Sets the vertical alignment of the given widget within its cell. |
setCellHorizontalAlignment | HorizontalPanel | Sets the horizontal alignment of the given widget within its cell. |
setSpacing | HorizontalPanel | Sets the amount of spacing between this panel's cells. |
setBorderWidth | HorizontalPanel | Sets the width of the border to be applied to all cells in this panel. |
setCellHeight | HorizontalPanel | Sets the height of the cell associated with the given widget, related to the panel as a whole. |
add | HorizontalPanel | Add a widget to the HorizontalPanel. |
remove | HorizontalPanel | Remove the widget with the given index from the HorizontalPanel. |
remove | HorizontalPanel | Remove the given widget from the HorizontalPanel. |
class HTML
Members:
Member | Type | Description |
---|---|---|
addClickHandler | HTML | Add a handler for click events. |
setSize | HTML | Sets the size of this HTML. |
setStyleAttribute | HTML | Sets one of this HTML's style attributes to a new value. |
setStyleAttributes | HTML | Sets this HTML's style attributes. |
setTitle | HTML | Sets the hover title of this HTML. |
setHeight | HTML | Sets the height of this HTML. |
setVisible | HTML | Sets whether this HTML is visible. |
setPixelSize | HTML | Sets the size of this HTML in pixels. |
setWidth | HTML | Sets the width of this HTML. |
setStylePrimaryName | HTML | Sets the primary style name of this HTML. |
addStyleDependentName | HTML | Sets the dependent style name of this HTML. |
setStyleName | HTML | Sets the style name of this HTML. |
addStyleName | HTML | Adds a style name to this HTML. |
setHTML | HTML | Sets the HTML content of this HTML. |
getTag | String | Gets the text tag of this HTML. |
setTag | HTML | Sets the text tag of this HTML. |
setHorizontalAlignment | HTML | Set the horizontal text alignment of the display text of this HTML. |
setWordWrap | HTML | Set whether this HTML wraps its text. |
setId | HTML | Sets the id of this HTML. |
addMouseDownHandler | HTML | Add a handler for mouse down events. |
addMouseMoveHandler | HTML | Add a handler for mouse move events. |
addMouseOutHandler | HTML | Add a handler for mouse out events. |
addMouseOverHandler | HTML | Add a handler for mouse move events. |
addMouseUpHandler | HTML | Add a handler for mouse up events. |
addMouseWheelHandler | HTML | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
setText | HTML | Set the display text of this HTML. |
class Hyperlink
Members:
Member | Type | Description |
---|---|---|
setId | Hyperlink | Sets the id of this Hyperlink. |
setSize | Hyperlink | Sets the size of this Hyperlink. |
setStyleAttribute | Hyperlink | Sets one of this Hyperlink's style attributes to a new value. |
setStyleAttributes | Hyperlink | Sets this Hyperlink's style attributes. |
setTitle | Hyperlink | Sets the hover title of this Hyperlink. |
setHeight | Hyperlink | Sets the height of this Hyperlink. |
setVisible | Hyperlink | Sets whether this Hyperlink is visible. |
setPixelSize | Hyperlink | Sets the size of this Hyperlink in pixels. |
setWidth | Hyperlink | Sets the width of this Hyperlink. |
setStylePrimaryName | Hyperlink | Sets the primary style name of this Hyperlink. |
addStyleDependentName | Hyperlink | Sets the dependent style name of this Hyperlink. |
setStyleName | Hyperlink | Sets the style name of this Hyperlink. |
addStyleName | Hyperlink | Adds a style name to this Hyperlink. |
getId | String | Returns the id that has been assigned to this object. |
setHTML | Hyperlink | Sets the HTML content of this Hyperlink. |
getTag | String | Gets the text tag of this Hyperlink. |
setTag | Hyperlink | Sets the text tag of this Hyperlink. |
setText | Hyperlink | Set the display text of this Hyperlink. |
class Image
Members:
Member | Type | Description |
---|---|---|
addErrorHandler | Image | Add a handler for error events (failed loads). |
addLoadHandler | Image | Add a handler for load events. |
setVisibleRect | Image | Sets the visibility rectangle of an image. |
setUrl | Image | Sets the URL of the image to be displayed. |
setUrlAndVisibleRect | Image | Sets the url and the visibility rectangle for the image at the same time. |
setId | Image | Sets the id of this Image. |
setSize | Image | Sets the size of this Image. |
setStyleAttribute | Image | Sets one of this Image's style attributes to a new value. |
setStyleAttributes | Image | Sets this Image's style attributes. |
setTitle | Image | Sets the hover title of this Image. |
setHeight | Image | Sets the height of this Image. |
setVisible | Image | Sets whether this Image is visible. |
setPixelSize | Image | Sets the size of this Image in pixels. |
setWidth | Image | Sets the width of this Image. |
setStylePrimaryName | Image | Sets the primary style name of this Image. |
addStyleDependentName | Image | Sets the dependent style name of this Image. |
setStyleName | Image | Sets the style name of this Image. |
addStyleName | Image | Adds a style name to this Image. |
addClickHandler | Image | Add a handler for click events. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | Image | Add a handler for mouse down events. |
addMouseMoveHandler | Image | Add a handler for mouse move events. |
addMouseOutHandler | Image | Add a handler for mouse out events. |
addMouseOverHandler | Image | Add a handler for mouse move events. |
addMouseUpHandler | Image | Add a handler for mouse up events. |
addMouseWheelHandler | Image | Add a handler for mouse wheel events. |
getTag | String | Gets the text tag of this Image. |
setTag | Image | Sets the text tag of this Image. |
class InlineHyperlink
Members:
Member | Type | Description |
---|---|---|
setSize | InlineHyperlink | Sets the size of this InlineHyperlink. |
setStyleAttribute | InlineHyperlink | Sets one of this InlineHyperlink's style attributes to a new value. |
setStyleAttributes | InlineHyperlink | Sets this InlineHyperlink's style attributes. |
setTitle | InlineHyperlink | Sets the hover title of this InlineHyperlink. |
setHeight | InlineHyperlink | Sets the height of this InlineHyperlink. |
setVisible | InlineHyperlink | Sets whether this InlineHyperlink is visible. |
setPixelSize | InlineHyperlink | Sets the size of this InlineHyperlink in pixels. |
setWidth | InlineHyperlink | Sets the width of this InlineHyperlink. |
setStylePrimaryName | InlineHyperlink | Sets the primary style name of this InlineHyperlink. |
addStyleDependentName | InlineHyperlink | Sets the dependent style name of this InlineHyperlink. |
setStyleName | InlineHyperlink | Sets the style name of this InlineHyperlink. |
addStyleName | InlineHyperlink | Adds a style name to this InlineHyperlink. |
setId | InlineHyperlink | Sets the id of this InlineHyperlink. |
setHTML | InlineHyperlink | Sets the HTML content of this InlineHyperlink. |
getId | String | Returns the id that has been assigned to this object. |
getTag | String | Gets the text tag of this InlineHyperlink. |
setTag | InlineHyperlink | Sets the text tag of this InlineHyperlink. |
setText | InlineHyperlink | Set the display text of this InlineHyperlink. |
class InlineLabel
Members:
Member | Type | Description |
---|---|---|
addClickHandler | InlineLabel | Add a handler for click events. |
setSize | InlineLabel | Sets the size of this InlineLabel. |
setStyleAttribute | InlineLabel | Sets one of this InlineLabel's style attributes to a new value. |
setStyleAttributes | InlineLabel | Sets this InlineLabel's style attributes. |
setTitle | InlineLabel | Sets the hover title of this InlineLabel. |
setHeight | InlineLabel | Sets the height of this InlineLabel. |
setVisible | InlineLabel | Sets whether this InlineLabel is visible. |
setPixelSize | InlineLabel | Sets the size of this InlineLabel in pixels. |
setWidth | InlineLabel | Sets the width of this InlineLabel. |
setStylePrimaryName | InlineLabel | Sets the primary style name of this InlineLabel. |
addStyleDependentName | InlineLabel | Sets the dependent style name of this InlineLabel. |
setStyleName | InlineLabel | Sets the style name of this InlineLabel. |
addStyleName | InlineLabel | Adds a style name to this InlineLabel. |
getTag | String | Gets the text tag of this InlineLabel. |
setTag | InlineLabel | Sets the text tag of this InlineLabel. |
setHorizontalAlignment | InlineLabel | Set the horizontal text alignment of the display text of this InlineLabel. |
setWordWrap | InlineLabel | Set whether this InlineLabel wraps its text. |
setId | InlineLabel | Sets the id of this InlineLabel. |
addMouseDownHandler | InlineLabel | Add a handler for mouse down events. |
addMouseMoveHandler | InlineLabel | Add a handler for mouse move events. |
addMouseOutHandler | InlineLabel | Add a handler for mouse out events. |
addMouseOverHandler | InlineLabel | Add a handler for mouse move events. |
addMouseUpHandler | InlineLabel | Add a handler for mouse up events. |
addMouseWheelHandler | InlineLabel | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
setText | InlineLabel | Set the display text of this InlineLabel. |
class Label
Members:
Member | Type | Description |
---|---|---|
addClickHandler | Label | Add a handler for click events. |
setSize | Label | Sets the size of this Label. |
setStyleAttribute | Label | Sets one of this Label's style attributes to a new value. |
setStyleAttributes | Label | Sets this Label's style attributes. |
setTitle | Label | Sets the hover title of this Label. |
setHeight | Label | Sets the height of this Label. |
setVisible | Label | Sets whether this Label is visible. |
setPixelSize | Label | Sets the size of this Label in pixels. |
setWidth | Label | Sets the width of this Label. |
setStylePrimaryName | Label | Sets the primary style name of this Label. |
addStyleDependentName | Label | Sets the dependent style name of this Label. |
setStyleName | Label | Sets the style name of this Label. |
addStyleName | Label | Adds a style name to this Label. |
getTag | String | Gets the text tag of this Label. |
setTag | Label | Sets the text tag of this Label. |
setHorizontalAlignment | Label | Set the horizontal text alignment of the display text of this Label. |
setWordWrap | Label | Set whether this Label wraps its text. |
setId | Label | Sets the id of this Label. |
addMouseDownHandler | Label | Add a handler for mouse down events. |
addMouseMoveHandler | Label | Add a handler for mouse move events. |
addMouseOutHandler | Label | Add a handler for mouse out events. |
addMouseOverHandler | Label | Add a handler for mouse move events. |
addMouseUpHandler | Label | Add a handler for mouse up events. |
addMouseWheelHandler | Label | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
setText | Label | Set the display text of this Label. |
class LayoutPanel
Members:
Member | Type | Description |
---|---|---|
setId | LayoutPanel | Sets the id of this LayoutPanel. |
setSize | LayoutPanel | Sets the size of this LayoutPanel. |
setStyleAttribute | LayoutPanel | Sets one of this LayoutPanel's style attributes to a new value. |
setStyleAttributes | LayoutPanel | Sets this LayoutPanel's style attributes. |
setTitle | LayoutPanel | Sets the hover title of this LayoutPanel. |
setHeight | LayoutPanel | Sets the height of this LayoutPanel. |
setVisible | LayoutPanel | Sets whether this LayoutPanel is visible. |
setPixelSize | LayoutPanel | Sets the size of this LayoutPanel in pixels. |
setWidth | LayoutPanel | Sets the width of this LayoutPanel. |
setStylePrimaryName | LayoutPanel | Sets the primary style name of this LayoutPanel. |
addStyleDependentName | LayoutPanel | Sets the dependent style name of this LayoutPanel. |
setStyleName | LayoutPanel | Sets the style name of this LayoutPanel. |
addStyleName | LayoutPanel | Adds a style name to this LayoutPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | LayoutPanel | Remove all widgets from the LayoutPanel. |
getTag | String | Gets the text tag of this LayoutPanel. |
setTag | LayoutPanel | Sets the text tag of this LayoutPanel. |
add | LayoutPanel | Add a widget to the LayoutPanel. |
remove | LayoutPanel | Remove the widget with the given index from the LayoutPanel. |
remove | LayoutPanel | Remove the given widget from the LayoutPanel. |
class ListBox
Members:
Member | Type | Description |
---|---|---|
addChangeHandler | ListBox | Add a handler for change events. |
setSize | ListBox | Sets the size of this ListBox. |
setStyleAttribute | ListBox | Sets one of this ListBox's style attributes to a new value. |
setStyleAttributes | ListBox | Sets this ListBox's style attributes. |
setTitle | ListBox | Sets the hover title of this ListBox. |
setHeight | ListBox | Sets the height of this ListBox. |
setVisible | ListBox | Sets whether this ListBox is visible. |
setPixelSize | ListBox | Sets the size of this ListBox in pixels. |
setWidth | ListBox | Sets the width of this ListBox. |
setStylePrimaryName | ListBox | Sets the primary style name of this ListBox. |
addStyleDependentName | ListBox | Sets the dependent style name of this ListBox. |
setStyleName | ListBox | Sets the style name of this ListBox. |
addStyleName | ListBox | Adds a style name to this ListBox. |
addClickHandler | ListBox | Add a handler for click events. |
getTag | String | Gets the text tag of this ListBox. |
setTag | ListBox | Sets the text tag of this ListBox. |
setEnabled | ListBox | Sets whether the ListBox is enabled. |
setId | ListBox | Sets the id of this ListBox. |
addMouseDownHandler | ListBox | Add a handler for mouse down events. |
addMouseMoveHandler | ListBox | Add a handler for mouse move events. |
addMouseOutHandler | ListBox | Add a handler for mouse out events. |
addMouseOverHandler | ListBox | Add a handler for mouse move events. |
addMouseUpHandler | ListBox | Add a handler for mouse up events. |
addMouseWheelHandler | ListBox | Add a handler for mouse wheel events. |
setName | ListBox | Sets 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. |
getId | String | Returns the id that has been assigned to this object. |
addKeyDownHandler | ListBox | Add a handler for key down events. |
addKeyPressHandler | ListBox | Add a handler for key press events. |
addKeyUpHandler | ListBox | Add a handler for key up events. |
clear | ListBox | Remove all widgets from the ListBox. |
setFocus | ListBox | Explicitly focus/unfocus this ListBox. |
setTabIndex | ListBox | Sets the ListBox's position in the tab index. |
clear | ListBox | Removes all items from the list box. |
removeItem | ListBox | Removes the item at the specified index. |
setVisibleItemCount | ListBox | Sets the number of items that are visible. |
setSelectedIndex | ListBox | Selects the item at the specified index. |
setItemText | ListBox | Sets the text associated with the item at a given index. |
setValue | ListBox | Sets the value associated with the item at a given index. |
setItemSelected | ListBox | Selects the item at the specified index. |
addItem | ListBox | Adds an item to the list box. |
addItem | ListBox | Adds an item to the list box, specifying its value. |
addFocusHandler | ListBox | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | ListBox | Add a handler for blur events (losing keyboard focus). |
class MenuBar
Members:
Member | Type | Description |
---|---|---|
setId | MenuBar | Sets the id of this MenuBar. |
setSize | MenuBar | Sets the size of this MenuBar. |
setStyleAttribute | MenuBar | Sets one of this MenuBar's style attributes to a new value. |
setStyleAttributes | MenuBar | Sets this MenuBar's style attributes. |
setTitle | MenuBar | Sets the hover title of this MenuBar. |
setHeight | MenuBar | Sets the height of this MenuBar. |
setVisible | MenuBar | Sets whether this MenuBar is visible. |
setPixelSize | MenuBar | Sets the size of this MenuBar in pixels. |
setWidth | MenuBar | Sets the width of this MenuBar. |
setStylePrimaryName | MenuBar | Sets the primary style name of this MenuBar. |
addStyleDependentName | MenuBar | Sets the dependent style name of this MenuBar. |
setStyleName | MenuBar | Sets the style name of this MenuBar. |
addStyleName | MenuBar | Adds a style name to this MenuBar. |
getId | String | Returns the id that has been assigned to this object. |
addCloseHandler | MenuBar | Add a handler for close events. |
getTag | String | Gets the text tag of this MenuBar. |
setTag | MenuBar | Sets the text tag of this MenuBar. |
setAnimationEnabled | MenuBar | Sets whether opening and closing the MenuBar is animated. |
addSeparator | MenuBar | Add a separator to the MenuBar. |
addSeparator | MenuBar | Add a separator to the MenuBar. |
setAutoOpen | MenuBar | Sets whether this menu bar's child menus will open when the mouse is moved over it. |
addItem | MenuBar | Add a new menu item to this MenuBar. |
addItem | MenuBar | Creates a new menu item with the given text and command and adds it to this MenuBar. |
addItem | MenuBar | Creates a new menu item with the given text and submenu and adds it to this MenuBar. |
addItem | MenuBar | Creates a new menu item with the given text and command and adds it to this MenuBar. |
addItem | MenuBar | Creates a new menu item with the given text and submenu and adds it to this MenuBar. |
class MenuItem
Members:
Member | Type | Description |
---|---|---|
setId | MenuItem | Sets the id of this MenuItem. |
getId | String | Returns the id that has been assigned to this object. |
setHTML | MenuItem | Sets the HTML content of this MenuItem. |
getTag | String | Gets the text tag of this MenuItem. |
setTag | MenuItem | Sets the text tag of this MenuItem. |
setText | MenuItem | Set the display text of this MenuItem. |
setCommand | MenuItem | Sets the handler to execute when the menu is clicked. |
setSubMenu | MenuItem | Sets the sub-menu to show when the menu is clicked. |
class MenuItemSeparator
Members:
Member | Type | Description |
---|---|---|
setId | MenuItemSeparator | Sets the id of this MenuItemSeparator. |
getId | String | Returns the id that has been assigned to this object. |
getTag | String | Gets the text tag of this MenuItemSeparator. |
setTag | MenuItemSeparator | Sets the text tag of this MenuItemSeparator. |
class PasswordTextBox
Members:
Member | Type | Description |
---|---|---|
addChangeHandler | PasswordTextBox | Add a handler for change events. |
setSize | PasswordTextBox | Sets the size of this PasswordTextBox. |
setStyleAttribute | PasswordTextBox | Sets one of this PasswordTextBox's style attributes to a new value. |
setStyleAttributes | PasswordTextBox | Sets this PasswordTextBox's style attributes. |
setTitle | PasswordTextBox | Sets the hover title of this PasswordTextBox. |
setHeight | PasswordTextBox | Sets the height of this PasswordTextBox. |
setVisible | PasswordTextBox | Sets whether this PasswordTextBox is visible. |
setPixelSize | PasswordTextBox | Sets the size of this PasswordTextBox in pixels. |
setWidth | PasswordTextBox | Sets the width of this PasswordTextBox. |
setStylePrimaryName | PasswordTextBox | Sets the primary style name of this PasswordTextBox. |
addStyleDependentName | PasswordTextBox | Sets the dependent style name of this PasswordTextBox. |
setStyleName | PasswordTextBox | Sets the style name of this PasswordTextBox. |
addStyleName | PasswordTextBox | Adds a style name to this PasswordTextBox. |
addClickHandler | PasswordTextBox | Add a handler for click events. |
setValue | PasswordTextBox | Sets the value of this PasswordTextBox. |
getTag | String | Gets the text tag of this PasswordTextBox. |
setTag | PasswordTextBox | Sets the text tag of this PasswordTextBox. |
setReadOnly | PasswordTextBox | Sets whether the text in this PasswordTextBox is read only and can't be edited. |
setSelectionRange | PasswordTextBox | Sets the range of text to be selected. |
setValue | PasswordTextBox | /** Sets this PasswordTextBox's value and potentially fire events. |
setValue | PasswordTextBox | Sets this PasswordTextBox's value without firing any events. |
setCursorPos | PasswordTextBox | Sets the cursor position inside this PasswordTextBox. |
setEnabled | PasswordTextBox | Sets whether the PasswordTextBox is enabled. |
addValueChangeHandler | PasswordTextBox | Add a handler for value change events. |
setId | PasswordTextBox | Sets the id of this PasswordTextBox. |
addMouseDownHandler | PasswordTextBox | Add a handler for mouse down events. |
addMouseMoveHandler | PasswordTextBox | Add a handler for mouse move events. |
addMouseOutHandler | PasswordTextBox | Add a handler for mouse out events. |
addMouseOverHandler | PasswordTextBox | Add a handler for mouse move events. |
addMouseUpHandler | PasswordTextBox | Add a handler for mouse up events. |
addMouseWheelHandler | PasswordTextBox | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
setName | PasswordTextBox | Sets 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. |
addKeyDownHandler | PasswordTextBox | Add a handler for key down events. |
addKeyPressHandler | PasswordTextBox | Add a handler for key press events. |
addKeyUpHandler | PasswordTextBox | Add a handler for key up events. |
setVisibleLength | PasswordTextBox | Sets the number of visible characters in the text box. |
setMaxLength | PasswordTextBox | Sets the maximum allowable length of the text box's contents. |
setFocus | PasswordTextBox | Explicitly focus/unfocus this PasswordTextBox. |
setTabIndex | PasswordTextBox | Sets the PasswordTextBox's position in the tab index. |
addFocusHandler | PasswordTextBox | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | PasswordTextBox | Add a handler for blur events (losing keyboard focus). |
setText | PasswordTextBox | Set the display text of this PasswordTextBox. |
class PopupPanel
Members:
Member | Type | Description |
---|---|---|
setSize | PopupPanel | Sets the size of this PopupPanel. |
setStyleAttribute | PopupPanel | Sets one of this PopupPanel's style attributes to a new value. |
setStyleAttributes | PopupPanel | Sets this PopupPanel's style attributes. |
setTitle | PopupPanel | Sets the hover title of this PopupPanel. |
setHeight | PopupPanel | Sets the height of this PopupPanel. |
setVisible | PopupPanel | Sets whether this PopupPanel is visible. |
setPixelSize | PopupPanel | Sets the size of this PopupPanel in pixels. |
setWidth | PopupPanel | Sets the width of this PopupPanel. |
setStylePrimaryName | PopupPanel | Sets the primary style name of this PopupPanel. |
addStyleDependentName | PopupPanel | Sets the dependent style name of this PopupPanel. |
setStyleName | PopupPanel | Sets the style name of this PopupPanel. |
addStyleName | PopupPanel | Adds a style name to this PopupPanel. |
getTag | String | Gets the text tag of this PopupPanel. |
setTag | PopupPanel | Sets the text tag of this PopupPanel. |
setId | PopupPanel | Sets the id of this PopupPanel. |
getId | String | Returns the id that has been assigned to this object. |
addCloseHandler | PopupPanel | Add a handler for close events. |
clear | PopupPanel | Remove all widgets from the PopupPanel. |
setAnimationEnabled | PopupPanel | Sets whether opening and closing the PopupPanel is animated. |
setPopupPositionAndShow | PopupPanel | Set the popup position. |
setModal | PopupPanel | Sets whether this PopupPanel is in "modal" mode. |
setGlassEnabled | PopupPanel | Enable or disable a "glass" pane. |
setAutoHideEnabled | PopupPanel | Enable or disable the autoHide feature. |
setPreviewingAllNativeEvents | PopupPanel | When enabled, the PopupPanel will preview all native events, even if another popup was opened after this one. |
setPopupPosition | PopupPanel | Sets the popup's position relative to the browser's client area. |
add | PopupPanel | Add a widget to the PopupPanel. |
setWidget | PopupPanel | Sets the widget inside this PopupPanel, removing anything previously there. |
class PushButton
Members:
Member | Type | Description |
---|---|---|
setSize | PushButton | Sets the size of this PushButton. |
setStyleAttribute | PushButton | Sets one of this PushButton's style attributes to a new value. |
setStyleAttributes | PushButton | Sets this PushButton's style attributes. |
setTitle | PushButton | Sets the hover title of this PushButton. |
setHeight | PushButton | Sets the height of this PushButton. |
setVisible | PushButton | Sets whether this PushButton is visible. |
setPixelSize | PushButton | Sets the size of this PushButton in pixels. |
setWidth | PushButton | Sets the width of this PushButton. |
setStylePrimaryName | PushButton | Sets the primary style name of this PushButton. |
addStyleDependentName | PushButton | Sets the dependent style name of this PushButton. |
setStyleName | PushButton | Sets the style name of this PushButton. |
addStyleName | PushButton | Adds a style name to this PushButton. |
addClickHandler | PushButton | Add a handler for click events. |
setHTML | PushButton | Sets the HTML content of this PushButton. |
getTag | String | Gets the text tag of this PushButton. |
setTag | PushButton | Sets the text tag of this PushButton. |
setEnabled | PushButton | Sets whether the PushButton is enabled. |
setId | PushButton | Sets the id of this PushButton. |
addMouseDownHandler | PushButton | Add a handler for mouse down events. |
addMouseMoveHandler | PushButton | Add a handler for mouse move events. |
addMouseOutHandler | PushButton | Add a handler for mouse out events. |
addMouseOverHandler | PushButton | Add a handler for mouse move events. |
addMouseUpHandler | PushButton | Add a handler for mouse up events. |
addMouseWheelHandler | PushButton | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
addKeyDownHandler | PushButton | Add a handler for key down events. |
addKeyPressHandler | PushButton | Add a handler for key press events. |
addKeyUpHandler | PushButton | Add a handler for key up events. |
setFocus | PushButton | Explicitly focus/unfocus this PushButton. |
setTabIndex | PushButton | Sets the PushButton's position in the tab index. |
setText | PushButton | Set the display text of this PushButton. |
addFocusHandler | PushButton | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | PushButton | Add a handler for blur events (losing keyboard focus). |
class RadioButton
Members:
Member | Type | Description |
---|---|---|
setSize | RadioButton | Sets the size of this RadioButton. |
setStyleAttribute | RadioButton | Sets one of this RadioButton's style attributes to a new value. |
setStyleAttributes | RadioButton | Sets this RadioButton's style attributes. |
setTitle | RadioButton | Sets the hover title of this RadioButton. |
setHeight | RadioButton | Sets the height of this RadioButton. |
setVisible | RadioButton | Sets whether this RadioButton is visible. |
setPixelSize | RadioButton | Sets the size of this RadioButton in pixels. |
setWidth | RadioButton | Sets the width of this RadioButton. |
setStylePrimaryName | RadioButton | Sets the primary style name of this RadioButton. |
addStyleDependentName | RadioButton | Sets the dependent style name of this RadioButton. |
setStyleName | RadioButton | Sets the style name of this RadioButton. |
addStyleName | RadioButton | Adds a style name to this RadioButton. |
addClickHandler | RadioButton | Add a handler for click events. |
setHTML | RadioButton | Sets the HTML content of this RadioButton. |
getTag | String | Gets the text tag of this RadioButton. |
setTag | RadioButton | Sets the text tag of this RadioButton. |
setFormValue | RadioButton | Set the value property on the input element that backs this RadioButton. |
setValue | RadioButton | Sets whether the RadioButton should be checked. |
setValue | RadioButton | Sets whether the RadioButton should be checked and optionally fires an event if the value changes as a result of this call. |
setEnabled | RadioButton | Sets whether the RadioButton is enabled. |
addValueChangeHandler | RadioButton | Add a handler for value change events. |
setId | RadioButton | Sets the id of this RadioButton. |
setName | RadioButton | Sets 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. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | RadioButton | Add a handler for mouse down events. |
addMouseMoveHandler | RadioButton | Add a handler for mouse move events. |
addMouseOutHandler | RadioButton | Add a handler for mouse out events. |
addMouseOverHandler | RadioButton | Add a handler for mouse move events. |
addMouseUpHandler | RadioButton | Add a handler for mouse up events. |
addMouseWheelHandler | RadioButton | Add a handler for mouse wheel events. |
addKeyDownHandler | RadioButton | Add a handler for key down events. |
addKeyPressHandler | RadioButton | Add a handler for key press events. |
addKeyUpHandler | RadioButton | Add a handler for key up events. |
setFocus | RadioButton | Explicitly focus/unfocus this RadioButton. |
setTabIndex | RadioButton | Sets the RadioButton's position in the tab index. |
addFocusHandler | RadioButton | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | RadioButton | Add a handler for blur events (losing keyboard focus). |
setText | RadioButton | Set the display text of this RadioButton. |
class ResetButton
Members:
Member | Type | Description |
---|---|---|
setSize | ResetButton | Sets the size of this ResetButton. |
setStyleAttribute | ResetButton | Sets one of this ResetButton's style attributes to a new value. |
setStyleAttributes | ResetButton | Sets this ResetButton's style attributes. |
setTitle | ResetButton | Sets the hover title of this ResetButton. |
setHeight | ResetButton | Sets the height of this ResetButton. |
setVisible | ResetButton | Sets whether this ResetButton is visible. |
setPixelSize | ResetButton | Sets the size of this ResetButton in pixels. |
setWidth | ResetButton | Sets the width of this ResetButton. |
setStylePrimaryName | ResetButton | Sets the primary style name of this ResetButton. |
addStyleDependentName | ResetButton | Sets the dependent style name of this ResetButton. |
setStyleName | ResetButton | Sets the style name of this ResetButton. |
addStyleName | ResetButton | Adds a style name to this ResetButton. |
addClickHandler | ResetButton | Add a handler for click events. |
setHTML | ResetButton | Sets the HTML content of this ResetButton. |
getTag | String | Gets the text tag of this ResetButton. |
setTag | ResetButton | Sets the text tag of this ResetButton. |
setEnabled | ResetButton | Sets whether the ResetButton is enabled. |
setId | ResetButton | Sets the id of this ResetButton. |
addMouseDownHandler | ResetButton | Add a handler for mouse down events. |
addMouseMoveHandler | ResetButton | Add a handler for mouse move events. |
addMouseOutHandler | ResetButton | Add a handler for mouse out events. |
addMouseOverHandler | ResetButton | Add a handler for mouse move events. |
addMouseUpHandler | ResetButton | Add a handler for mouse up events. |
addMouseWheelHandler | ResetButton | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
addKeyDownHandler | ResetButton | Add a handler for key down events. |
addKeyPressHandler | ResetButton | Add a handler for key press events. |
addKeyUpHandler | ResetButton | Add a handler for key up events. |
setFocus | ResetButton | Explicitly focus/unfocus this ResetButton. |
setTabIndex | ResetButton | Sets the ResetButton's position in the tab index. |
setText | ResetButton | Set the display text of this ResetButton. |
addFocusHandler | ResetButton | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | ResetButton | Add a handler for blur events (losing keyboard focus). |
class RichTextArea
Members:
Member | Type | Description |
---|---|---|
setSize | RichTextArea | Sets the size of this RichTextArea. |
setStyleAttribute | RichTextArea | Sets one of this RichTextArea's style attributes to a new value. |
setStyleAttributes | RichTextArea | Sets this RichTextArea's style attributes. |
setTitle | RichTextArea | Sets the hover title of this RichTextArea. |
setHeight | RichTextArea | Sets the height of this RichTextArea. |
setVisible | RichTextArea | Sets whether this RichTextArea is visible. |
setPixelSize | RichTextArea | Sets the size of this RichTextArea in pixels. |
setWidth | RichTextArea | Sets the width of this RichTextArea. |
setStylePrimaryName | RichTextArea | Sets the primary style name of this RichTextArea. |
addStyleDependentName | RichTextArea | Sets the dependent style name of this RichTextArea. |
setStyleName | RichTextArea | Sets the style name of this RichTextArea. |
addStyleName | RichTextArea | Adds a style name to this RichTextArea. |
addClickHandler | RichTextArea | Add a handler for click events. |
setHTML | RichTextArea | Sets the HTML content of this RichTextArea. |
addInitializeHandler | RichTextArea | Add a handler that runs when the RichTextArea initializes. |
getTag | String | Gets the text tag of this RichTextArea. |
setTag | RichTextArea | Sets the text tag of this RichTextArea. |
setEnabled | RichTextArea | Sets whether the RichTextArea is enabled. |
setId | RichTextArea | Sets the id of this RichTextArea. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | RichTextArea | Add a handler for mouse down events. |
addMouseMoveHandler | RichTextArea | Add a handler for mouse move events. |
addMouseOutHandler | RichTextArea | Add a handler for mouse out events. |
addMouseOverHandler | RichTextArea | Add a handler for mouse move events. |
addMouseUpHandler | RichTextArea | Add a handler for mouse up events. |
addMouseWheelHandler | RichTextArea | Add a handler for mouse wheel events. |
addKeyDownHandler | RichTextArea | Add a handler for key down events. |
addKeyPressHandler | RichTextArea | Add a handler for key press events. |
addKeyUpHandler | RichTextArea | Add a handler for key up events. |
setFocus | RichTextArea | Explicitly focus/unfocus this RichTextArea. |
setTabIndex | RichTextArea | Sets the RichTextArea's position in the tab index. |
addFocusHandler | RichTextArea | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | RichTextArea | Add a handler for blur events (losing keyboard focus). |
setText | RichTextArea | Set the display text of this RichTextArea. |
class ScrollPanel
Members:
Member | Type | Description |
---|---|---|
setId | ScrollPanel | Sets the id of this ScrollPanel. |
setSize | ScrollPanel | Sets the size of this ScrollPanel. |
setStyleAttribute | ScrollPanel | Sets one of this ScrollPanel's style attributes to a new value. |
setStyleAttributes | ScrollPanel | Sets this ScrollPanel's style attributes. |
setTitle | ScrollPanel | Sets the hover title of this ScrollPanel. |
setHeight | ScrollPanel | Sets the height of this ScrollPanel. |
setVisible | ScrollPanel | Sets whether this ScrollPanel is visible. |
setPixelSize | ScrollPanel | Sets the size of this ScrollPanel in pixels. |
setWidth | ScrollPanel | Sets the width of this ScrollPanel. |
setStylePrimaryName | ScrollPanel | Sets the primary style name of this ScrollPanel. |
addStyleDependentName | ScrollPanel | Sets the dependent style name of this ScrollPanel. |
setStyleName | ScrollPanel | Sets the style name of this ScrollPanel. |
addStyleName | ScrollPanel | Adds a style name to this ScrollPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | ScrollPanel | Remove all widgets from the ScrollPanel. |
getTag | String | Gets the text tag of this ScrollPanel. |
setTag | ScrollPanel | Sets the text tag of this ScrollPanel. |
add | ScrollPanel | Add a widget to the ScrollPanel. |
setAlwaysShowScrollBars | ScrollPanel | Sets whether to always show scrollbars even if they are not needed. |
setHorizontalScrollPosition | ScrollPanel | Sets the horizontal scroll position of this ScrollPanel. |
setScrollPosition | ScrollPanel | Sets the vertical scroll position of this ScrollPanel. |
addScrollHandler | ScrollPanel | Add a handler for scroll events. |
setWidget | ScrollPanel | Sets the widget inside this ScrollPanel, removing anything previously there. |
class ServerHandler
Members:
Member | Type | Description |
---|---|---|
setId | ServerHandler | Sets the id of this ServerHandler. |
getId | String | Returns the id that has been assigned to this object. |
getTag | String | Gets the text tag of this ServerHandler. |
setTag | ServerHandler | Sets the text tag of this ServerHandler. |
setCallbackFunction | ServerHandler | Sets the name of the function to call when this handler is invoked. |
addCallbackElement | ServerHandler | Adds a widget to this ServerHandler as a "callback element.". |
validateLength | ServerHandler | Sets this handler to fire only if the given widget's value is a string whose length is between min and max. |
validateNotMatches | ServerHandler | Sets this handler to fire only if the given widget's value does not match this regular expression. |
validateNotMatches | ServerHandler | Sets this handler to fire only if the given widget's value does not match this regular expression. |
validateNotRange | ServerHandler | Sets this handler to fire only if the given widget's value cannot be interpreted as a number that is between min and max. |
validateEmail | ServerHandler | Sets this handler to fire only if the given widget's value is a valid email address. |
validateRange | ServerHandler | Sets this handler to fire only if the given widget's value can be interpreted as a number and is between min and max. |
validateMatches | ServerHandler | Sets this handler to fire only if the given widget's value matches this regular expression. |
validateMatches | ServerHandler | Sets this handler to fire only if the given widget's value matches this regular expression. |
validateInteger | ServerHandler | Sets this handler to fire only if the given widget's value can be interpreted as an integer. |
validateNotEmail | ServerHandler | Sets this handler to fire only if the given widget's value is not a valid email address. |
validateNotNumber | ServerHandler | Sets this handler to fire only if the given widget's value cannot be interpreted as an number. |
validateNotLength | ServerHandler | Sets this handler to fire only if the given widget's value is a string whose length is less than min or greater than max. |
validateNotSum | ServerHandler | Sets 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. |
validateOptions | ServerHandler | Sets this handler to fire only if the given widget's value is one of the strings given in the options parameter. |
validateNotOptions | ServerHandler | Sets this handler to fire only if the given widget's value is not one of the strings given in the options parameter. |
validateNumber | ServerHandler | Sets this handler to fire only if the given widget's value can be interpreted as a number. |
validateNotInteger | ServerHandler | Sets this handler to fire only if the given widget's value cannot be interpreted as an integer. |
validateSum | ServerHandler | Sets this handler to fire only if the given widgets have values that are numbers and sum up to the given value. |
class SimpleCheckBox
Members:
Member | Type | Description |
---|---|---|
setSize | SimpleCheckBox | Sets the size of this SimpleCheckBox. |
setStyleAttribute | SimpleCheckBox | Sets one of this SimpleCheckBox's style attributes to a new value. |
setStyleAttributes | SimpleCheckBox | Sets this SimpleCheckBox's style attributes. |
setTitle | SimpleCheckBox | Sets the hover title of this SimpleCheckBox. |
setHeight | SimpleCheckBox | Sets the height of this SimpleCheckBox. |
setVisible | SimpleCheckBox | Sets whether this SimpleCheckBox is visible. |
setPixelSize | SimpleCheckBox | Sets the size of this SimpleCheckBox in pixels. |
setWidth | SimpleCheckBox | Sets the width of this SimpleCheckBox. |
setStylePrimaryName | SimpleCheckBox | Sets the primary style name of this SimpleCheckBox. |
addStyleDependentName | SimpleCheckBox | Sets the dependent style name of this SimpleCheckBox. |
setStyleName | SimpleCheckBox | Sets the style name of this SimpleCheckBox. |
addStyleName | SimpleCheckBox | Adds a style name to this SimpleCheckBox. |
addClickHandler | SimpleCheckBox | Add a handler for click events. |
setChecked | SimpleCheckBox | Sets whether this SimpleCheckBox should be checked. |
getTag | String | Gets the text tag of this SimpleCheckBox. |
setTag | SimpleCheckBox | Sets the text tag of this SimpleCheckBox. |
setEnabled | SimpleCheckBox | Sets whether the SimpleCheckBox is enabled. |
setId | SimpleCheckBox | Sets the id of this SimpleCheckBox. |
setName | SimpleCheckBox | Sets 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. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | SimpleCheckBox | Add a handler for mouse down events. |
addMouseMoveHandler | SimpleCheckBox | Add a handler for mouse move events. |
addMouseOutHandler | SimpleCheckBox | Add a handler for mouse out events. |
addMouseOverHandler | SimpleCheckBox | Add a handler for mouse move events. |
addMouseUpHandler | SimpleCheckBox | Add a handler for mouse up events. |
addMouseWheelHandler | SimpleCheckBox | Add a handler for mouse wheel events. |
addKeyDownHandler | SimpleCheckBox | Add a handler for key down events. |
addKeyPressHandler | SimpleCheckBox | Add a handler for key press events. |
addKeyUpHandler | SimpleCheckBox | Add a handler for key up events. |
setFocus | SimpleCheckBox | Explicitly focus/unfocus this SimpleCheckBox. |
setTabIndex | SimpleCheckBox | Sets the SimpleCheckBox's position in the tab index. |
addFocusHandler | SimpleCheckBox | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | SimpleCheckBox | Add a handler for blur events (losing keyboard focus). |
class SimplePanel
Members:
Member | Type | Description |
---|---|---|
setSize | SimplePanel | Sets the size of this SimplePanel. |
setStyleAttribute | SimplePanel | Sets one of this SimplePanel's style attributes to a new value. |
setStyleAttributes | SimplePanel | Sets this SimplePanel's style attributes. |
setTitle | SimplePanel | Sets the hover title of this SimplePanel. |
setHeight | SimplePanel | Sets the height of this SimplePanel. |
setVisible | SimplePanel | Sets whether this SimplePanel is visible. |
setPixelSize | SimplePanel | Sets the size of this SimplePanel in pixels. |
setWidth | SimplePanel | Sets the width of this SimplePanel. |
setStylePrimaryName | SimplePanel | Sets the primary style name of this SimplePanel. |
addStyleDependentName | SimplePanel | Sets the dependent style name of this SimplePanel. |
setStyleName | SimplePanel | Sets the style name of this SimplePanel. |
addStyleName | SimplePanel | Adds a style name to this SimplePanel. |
setId | SimplePanel | Sets the id of this SimplePanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | SimplePanel | Remove all widgets from the SimplePanel. |
getTag | String | Gets the text tag of this SimplePanel. |
setTag | SimplePanel | Sets the text tag of this SimplePanel. |
add | SimplePanel | Add a widget to the SimplePanel. |
setWidget | SimplePanel | Sets the widget inside this SimplePanel, removing anything previously there. |
class SimpleRadioButton
Members:
Member | Type | Description |
---|---|---|
setSize | SimpleRadioButton | Sets the size of this SimpleRadioButton. |
setStyleAttribute | SimpleRadioButton | Sets one of this SimpleRadioButton's style attributes to a new value. |
setStyleAttributes | SimpleRadioButton | Sets this SimpleRadioButton's style attributes. |
setTitle | SimpleRadioButton | Sets the hover title of this SimpleRadioButton. |
setHeight | SimpleRadioButton | Sets the height of this SimpleRadioButton. |
setVisible | SimpleRadioButton | Sets whether this SimpleRadioButton is visible. |
setPixelSize | SimpleRadioButton | Sets the size of this SimpleRadioButton in pixels. |
setWidth | SimpleRadioButton | Sets the width of this SimpleRadioButton. |
setStylePrimaryName | SimpleRadioButton | Sets the primary style name of this SimpleRadioButton. |
addStyleDependentName | SimpleRadioButton | Sets the dependent style name of this SimpleRadioButton. |
setStyleName | SimpleRadioButton | Sets the style name of this SimpleRadioButton. |
addStyleName | SimpleRadioButton | Adds a style name to this SimpleRadioButton. |
addClickHandler | SimpleRadioButton | Add a handler for click events. |
setChecked | SimpleRadioButton | Sets whether this SimpleRadioButton should be checked. |
getTag | String | Gets the text tag of this SimpleRadioButton. |
setTag | SimpleRadioButton | Sets the text tag of this SimpleRadioButton. |
setEnabled | SimpleRadioButton | Sets whether the SimpleRadioButton is enabled. |
setId | SimpleRadioButton | Sets the id of this SimpleRadioButton. |
addMouseDownHandler | SimpleRadioButton | Add a handler for mouse down events. |
addMouseMoveHandler | SimpleRadioButton | Add a handler for mouse move events. |
addMouseOutHandler | SimpleRadioButton | Add a handler for mouse out events. |
addMouseOverHandler | SimpleRadioButton | Add a handler for mouse move events. |
addMouseUpHandler | SimpleRadioButton | Add a handler for mouse up events. |
addMouseWheelHandler | SimpleRadioButton | Add a handler for mouse wheel events. |
setName | SimpleRadioButton | Sets 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. |
getId | String | Returns the id that has been assigned to this object. |
addKeyDownHandler | SimpleRadioButton | Add a handler for key down events. |
addKeyPressHandler | SimpleRadioButton | Add a handler for key press events. |
addKeyUpHandler | SimpleRadioButton | Add a handler for key up events. |
setFocus | SimpleRadioButton | Explicitly focus/unfocus this SimpleRadioButton. |
setTabIndex | SimpleRadioButton | Sets the SimpleRadioButton's position in the tab index. |
addFocusHandler | SimpleRadioButton | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | SimpleRadioButton | Add a handler for blur events (losing keyboard focus). |
class SplitLayoutPanel
Members:
Member | Type | Description |
---|---|---|
setWidgetMinSize | SplitLayoutPanel | Sets the minimum allowable size for the given widget. |
setSize | SplitLayoutPanel | Sets the size of this SplitLayoutPanel. |
setStyleAttribute | SplitLayoutPanel | Sets one of this SplitLayoutPanel's style attributes to a new value. |
setStyleAttributes | SplitLayoutPanel | Sets this SplitLayoutPanel's style attributes. |
setTitle | SplitLayoutPanel | Sets the hover title of this SplitLayoutPanel. |
setHeight | SplitLayoutPanel | Sets the height of this SplitLayoutPanel. |
setVisible | SplitLayoutPanel | Sets whether this SplitLayoutPanel is visible. |
setPixelSize | SplitLayoutPanel | Sets the size of this SplitLayoutPanel in pixels. |
setWidth | SplitLayoutPanel | Sets the width of this SplitLayoutPanel. |
setStylePrimaryName | SplitLayoutPanel | Sets the primary style name of this SplitLayoutPanel. |
addStyleDependentName | SplitLayoutPanel | Sets the dependent style name of this SplitLayoutPanel. |
setStyleName | SplitLayoutPanel | Sets the style name of this SplitLayoutPanel. |
addStyleName | SplitLayoutPanel | Adds a style name to this SplitLayoutPanel. |
getTag | String | Gets the text tag of this SplitLayoutPanel. |
setTag | SplitLayoutPanel | Sets the text tag of this SplitLayoutPanel. |
setId | SplitLayoutPanel | Sets the id of this SplitLayoutPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | SplitLayoutPanel | Remove all widgets from the SplitLayoutPanel. |
add | SplitLayoutPanel | Add a widget to the SplitLayoutPanel. |
addSouth | SplitLayoutPanel | Adds a widget to the east edge of the dock. |
addEast | SplitLayoutPanel | Adds a widget to the east edge of the dock. |
add | SplitLayoutPanel | Adds a widget at the center of the dock. No further widgets may be added after this one. |
addNorth | SplitLayoutPanel | Adds a widget to the north edge of the dock. |
addWest | SplitLayoutPanel | Adds a widget to the west edge of the dock. |
remove | SplitLayoutPanel | Remove the widget with the given index from the SplitLayoutPanel. |
remove | SplitLayoutPanel | Remove the given widget from the SplitLayoutPanel. |
class StackPanel
Members:
Member | Type | Description |
---|---|---|
setSize | StackPanel | Sets the size of this StackPanel. |
setStyleAttribute | StackPanel | Sets one of this StackPanel's style attributes to a new value. |
setStyleAttributes | StackPanel | Sets this StackPanel's style attributes. |
setTitle | StackPanel | Sets the hover title of this StackPanel. |
setHeight | StackPanel | Sets the height of this StackPanel. |
setVisible | StackPanel | Sets whether this StackPanel is visible. |
setPixelSize | StackPanel | Sets the size of this StackPanel in pixels. |
setWidth | StackPanel | Sets the width of this StackPanel. |
setStylePrimaryName | StackPanel | Sets the primary style name of this StackPanel. |
addStyleDependentName | StackPanel | Sets the dependent style name of this StackPanel. |
setStyleName | StackPanel | Sets the style name of this StackPanel. |
addStyleName | StackPanel | Adds a style name to this StackPanel. |
getTag | String | Gets the text tag of this StackPanel. |
setTag | StackPanel | Sets the text tag of this StackPanel. |
add | StackPanel | Adds a widget to the stack with the given header text. |
add | StackPanel | Adds a widget to the stack with the given header text. |
setStackText | StackPanel | Sets the text associated with a child by its index. |
setStackText | StackPanel | Sets the text associated with a child by its index. |
setId | StackPanel | Sets the id of this StackPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | StackPanel | Remove all widgets from the StackPanel. |
add | StackPanel | Add a widget to the StackPanel. |
remove | StackPanel | Remove the widget with the given index from the StackPanel. |
remove | StackPanel | Remove the given widget from the StackPanel. |
class SubmitButton
Members:
Member | Type | Description |
---|---|---|
setSize | SubmitButton | Sets the size of this SubmitButton. |
setStyleAttribute | SubmitButton | Sets one of this SubmitButton's style attributes to a new value. |
setStyleAttributes | SubmitButton | Sets this SubmitButton's style attributes. |
setTitle | SubmitButton | Sets the hover title of this SubmitButton. |
setHeight | SubmitButton | Sets the height of this SubmitButton. |
setVisible | SubmitButton | Sets whether this SubmitButton is visible. |
setPixelSize | SubmitButton | Sets the size of this SubmitButton in pixels. |
setWidth | SubmitButton | Sets the width of this SubmitButton. |
setStylePrimaryName | SubmitButton | Sets the primary style name of this SubmitButton. |
addStyleDependentName | SubmitButton | Sets the dependent style name of this SubmitButton. |
setStyleName | SubmitButton | Sets the style name of this SubmitButton. |
addStyleName | SubmitButton | Adds a style name to this SubmitButton. |
addClickHandler | SubmitButton | Add a handler for click events. |
setHTML | SubmitButton | Sets the HTML content of this SubmitButton. |
getTag | String | Gets the text tag of this SubmitButton. |
setTag | SubmitButton | Sets the text tag of this SubmitButton. |
setEnabled | SubmitButton | Sets whether the SubmitButton is enabled. |
setId | SubmitButton | Sets the id of this SubmitButton. |
addMouseDownHandler | SubmitButton | Add a handler for mouse down events. |
addMouseMoveHandler | SubmitButton | Add a handler for mouse move events. |
addMouseOutHandler | SubmitButton | Add a handler for mouse out events. |
addMouseOverHandler | SubmitButton | Add a handler for mouse move events. |
addMouseUpHandler | SubmitButton | Add a handler for mouse up events. |
addMouseWheelHandler | SubmitButton | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
addKeyDownHandler | SubmitButton | Add a handler for key down events. |
addKeyPressHandler | SubmitButton | Add a handler for key press events. |
addKeyUpHandler | SubmitButton | Add a handler for key up events. |
setFocus | SubmitButton | Explicitly focus/unfocus this SubmitButton. |
setTabIndex | SubmitButton | Sets the SubmitButton's position in the tab index. |
setText | SubmitButton | Set the display text of this SubmitButton. |
addFocusHandler | SubmitButton | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | SubmitButton | Add a handler for blur events (losing keyboard focus). |
class SuggestBox
Members:
Member | Type | Description |
---|---|---|
setSize | SuggestBox | Sets the size of this SuggestBox. |
setStyleAttribute | SuggestBox | Sets one of this SuggestBox's style attributes to a new value. |
setStyleAttributes | SuggestBox | Sets this SuggestBox's style attributes. |
setTitle | SuggestBox | Sets the hover title of this SuggestBox. |
setHeight | SuggestBox | Sets the height of this SuggestBox. |
setVisible | SuggestBox | Sets whether this SuggestBox is visible. |
setPixelSize | SuggestBox | Sets the size of this SuggestBox in pixels. |
setWidth | SuggestBox | Sets the width of this SuggestBox. |
setStylePrimaryName | SuggestBox | Sets the primary style name of this SuggestBox. |
addStyleDependentName | SuggestBox | Sets the dependent style name of this SuggestBox. |
setStyleName | SuggestBox | Sets the style name of this SuggestBox. |
addStyleName | SuggestBox | Adds a style name to this SuggestBox. |
getTag | String | Gets the text tag of this SuggestBox. |
setTag | SuggestBox | Sets the text tag of this SuggestBox. |
setValue | SuggestBox | Sets the value of this SuggestBox. |
addValueChangeHandler | SuggestBox | Add a handler for value change events. |
setId | SuggestBox | Sets the id of this SuggestBox. |
getId | String | Returns the id that has been assigned to this object. |
addKeyDownHandler | SuggestBox | Add a handler for key down events. |
addKeyPressHandler | SuggestBox | Add a handler for key press events. |
addKeyUpHandler | SuggestBox | Add a handler for key up events. |
setAnimationEnabled | SuggestBox | Sets whether opening and closing the SuggestBox is animated. |
setFocus | SuggestBox | Explicitly focus/unfocus this SuggestBox. |
setTabIndex | SuggestBox | Sets the SuggestBox's position in the tab index. |
setText | SuggestBox | Set the display text of this SuggestBox. |
addSelectionHandler | SuggestBox | Add a handler for selection events. |
class TabBar
Members:
Member | Type | Description |
---|---|---|
setId | TabBar | Sets the id of this TabBar. |
setSize | TabBar | Sets the size of this TabBar. |
setStyleAttribute | TabBar | Sets one of this TabBar's style attributes to a new value. |
setStyleAttributes | TabBar | Sets this TabBar's style attributes. |
setTitle | TabBar | Sets the hover title of this TabBar. |
setHeight | TabBar | Sets the height of this TabBar. |
setVisible | TabBar | Sets whether this TabBar is visible. |
setPixelSize | TabBar | Sets the size of this TabBar in pixels. |
setWidth | TabBar | Sets the width of this TabBar. |
setStylePrimaryName | TabBar | Sets the primary style name of this TabBar. |
addStyleDependentName | TabBar | Sets the dependent style name of this TabBar. |
setStyleName | TabBar | Sets the style name of this TabBar. |
addStyleName | TabBar | Adds a style name to this TabBar. |
getId | String | Returns the id that has been assigned to this object. |
getTag | String | Gets the text tag of this TabBar. |
setTag | TabBar | Sets the text tag of this TabBar. |
setTabEnabled | TabBar | Set whether the given tab is enabled. |
addTab | TabBar | Add a tab with the given title. |
addTab | TabBar | Add a tab with the given widget as its title. |
addTab | TabBar | Add a tab with the given title. |
setTabText | TabBar | Set the header text of a given tab. |
selectTab | TabBar | Select a tab by index. |
addSelectionHandler | TabBar | Add a handler for selection events. |
class TabPanel
Members:
Member | Type | Description |
---|---|---|
setSize | TabPanel | Sets the size of this TabPanel. |
setStyleAttribute | TabPanel | Sets one of this TabPanel's style attributes to a new value. |
setStyleAttributes | TabPanel | Sets this TabPanel's style attributes. |
setTitle | TabPanel | Sets the hover title of this TabPanel. |
setHeight | TabPanel | Sets the height of this TabPanel. |
setVisible | TabPanel | Sets whether this TabPanel is visible. |
setPixelSize | TabPanel | Sets the size of this TabPanel in pixels. |
setWidth | TabPanel | Sets the width of this TabPanel. |
setStylePrimaryName | TabPanel | Sets the primary style name of this TabPanel. |
addStyleDependentName | TabPanel | Sets the dependent style name of this TabPanel. |
setStyleName | TabPanel | Sets the style name of this TabPanel. |
addStyleName | TabPanel | Adds a style name to this TabPanel. |
getTag | String | Gets the text tag of this TabPanel. |
setTag | TabPanel | Sets the text tag of this TabPanel. |
add | TabPanel | Adds a widget to the stack with the given header text. |
add | TabPanel | Adds a widget to the stack with the given header text. |
setAnimationEnabled | TabPanel | Sets whether changing tabs TabPanel is animated. |
setId | TabPanel | Sets the id of this TabPanel. |
getId | String | Returns the id that has been assigned to this object. |
setAnimationEnabled | TabPanel | Sets whether opening and closing the TabPanel is animated. |
add | TabPanel | Add a widget to the TabPanel. |
add | TabPanel | Add a widget to this TabPanel with the given widget as its tab header. |
selectTab | TabPanel | Select a tab by index. |
addSelectionHandler | TabPanel | Add a handler for selection events. |
class TextArea
Members:
Member | Type | Description |
---|---|---|
addChangeHandler | TextArea | Add a handler for change events. |
setSize | TextArea | Sets the size of this TextArea. |
setStyleAttribute | TextArea | Sets one of this TextArea's style attributes to a new value. |
setStyleAttributes | TextArea | Sets this TextArea's style attributes. |
setTitle | TextArea | Sets the hover title of this TextArea. |
setHeight | TextArea | Sets the height of this TextArea. |
setVisible | TextArea | Sets whether this TextArea is visible. |
setPixelSize | TextArea | Sets the size of this TextArea in pixels. |
setWidth | TextArea | Sets the width of this TextArea. |
setStylePrimaryName | TextArea | Sets the primary style name of this TextArea. |
addStyleDependentName | TextArea | Sets the dependent style name of this TextArea. |
setStyleName | TextArea | Sets the style name of this TextArea. |
addStyleName | TextArea | Adds a style name to this TextArea. |
addClickHandler | TextArea | Add a handler for click events. |
setValue | TextArea | Sets the value of this TextArea. |
getTag | String | Gets the text tag of this TextArea. |
setTag | TextArea | Sets the text tag of this TextArea. |
setReadOnly | TextArea | Sets whether the text in this TextArea is read only and can't be edited. |
setSelectionRange | TextArea | Sets the range of text to be selected. |
setValue | TextArea | /** Sets this TextArea's value and potentially fire events. |
setValue | TextArea | Sets this TextArea's value without firing any events. |
setCursorPos | TextArea | Sets the cursor position inside this TextArea. |
setEnabled | TextArea | Sets whether the TextArea is enabled. |
addValueChangeHandler | TextArea | Add a handler for value change events. |
setId | TextArea | Sets the id of this TextArea. |
setName | TextArea | Sets 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. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | TextArea | Add a handler for mouse down events. |
addMouseMoveHandler | TextArea | Add a handler for mouse move events. |
addMouseOutHandler | TextArea | Add a handler for mouse out events. |
addMouseOverHandler | TextArea | Add a handler for mouse move events. |
addMouseUpHandler | TextArea | Add a handler for mouse up events. |
addMouseWheelHandler | TextArea | Add a handler for mouse wheel events. |
addKeyDownHandler | TextArea | Add a handler for key down events. |
addKeyPressHandler | TextArea | Add a handler for key press events. |
addKeyUpHandler | TextArea | Add a handler for key up events. |
setCharacterWidth | TextArea | Sets the requested width of the text box. |
setVisibleLines | TextArea | Sets the number of text lines that are visible. |
setFocus | TextArea | Explicitly focus/unfocus this TextArea. |
setTabIndex | TextArea | Sets the TextArea's position in the tab index. |
setText | TextArea | Set the display text of this TextArea. |
addFocusHandler | TextArea | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | TextArea | Add a handler for blur events (losing keyboard focus). |
class TextBox
Members:
Member | Type | Description |
---|---|---|
addChangeHandler | TextBox | Add a handler for change events. |
setSize | TextBox | Sets the size of this TextBox. |
setStyleAttribute | TextBox | Sets one of this TextBox's style attributes to a new value. |
setStyleAttributes | TextBox | Sets this TextBox's style attributes. |
setTitle | TextBox | Sets the hover title of this TextBox. |
setHeight | TextBox | Sets the height of this TextBox. |
setVisible | TextBox | Sets whether this TextBox is visible. |
setPixelSize | TextBox | Sets the size of this TextBox in pixels. |
setWidth | TextBox | Sets the width of this TextBox. |
setStylePrimaryName | TextBox | Sets the primary style name of this TextBox. |
addStyleDependentName | TextBox | Sets the dependent style name of this TextBox. |
setStyleName | TextBox | Sets the style name of this TextBox. |
addStyleName | TextBox | Adds a style name to this TextBox. |
addClickHandler | TextBox | Add a handler for click events. |
setValue | TextBox | Sets the value of this TextBox. |
getTag | String | Gets the text tag of this TextBox. |
setTag | TextBox | Sets the text tag of this TextBox. |
setReadOnly | TextBox | Sets whether the text in this TextBox is read only and can't be edited. |
setSelectionRange | TextBox | Sets the range of text to be selected. |
setValue | TextBox | /** Sets this TextBox's value and potentially fire events. |
setValue | TextBox | Sets this TextBox's value without firing any events. |
setCursorPos | TextBox | Sets the cursor position inside this TextBox. |
setEnabled | TextBox | Sets whether the TextBox is enabled. |
addValueChangeHandler | TextBox | Add a handler for value change events. |
setId | TextBox | Sets the id of this TextBox. |
setName | TextBox | Sets 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. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | TextBox | Add a handler for mouse down events. |
addMouseMoveHandler | TextBox | Add a handler for mouse move events. |
addMouseOutHandler | TextBox | Add a handler for mouse out events. |
addMouseOverHandler | TextBox | Add a handler for mouse move events. |
addMouseUpHandler | TextBox | Add a handler for mouse up events. |
addMouseWheelHandler | TextBox | Add a handler for mouse wheel events. |
addKeyDownHandler | TextBox | Add a handler for key down events. |
addKeyPressHandler | TextBox | Add a handler for key press events. |
addKeyUpHandler | TextBox | Add a handler for key up events. |
setVisibleLength | TextBox | Sets the number of visible characters in the text box. |
setMaxLength | TextBox | Sets the maximum allowable length of the text box's contents. |
setFocus | TextBox | Explicitly focus/unfocus this TextBox. |
setTabIndex | TextBox | Sets the TextBox's position in the tab index. |
setText | TextBox | Set the display text of this TextBox. |
addFocusHandler | TextBox | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | TextBox | Add a handler for blur events (losing keyboard focus). |
class ToggleButton
Members:
Member | Type | Description |
---|---|---|
setSize | ToggleButton | Sets the size of this ToggleButton. |
setStyleAttribute | ToggleButton | Sets one of this ToggleButton's style attributes to a new value. |
setStyleAttributes | ToggleButton | Sets this ToggleButton's style attributes. |
setTitle | ToggleButton | Sets the hover title of this ToggleButton. |
setHeight | ToggleButton | Sets the height of this ToggleButton. |
setVisible | ToggleButton | Sets whether this ToggleButton is visible. |
setPixelSize | ToggleButton | Sets the size of this ToggleButton in pixels. |
setWidth | ToggleButton | Sets the width of this ToggleButton. |
setStylePrimaryName | ToggleButton | Sets the primary style name of this ToggleButton. |
addStyleDependentName | ToggleButton | Sets the dependent style name of this ToggleButton. |
setStyleName | ToggleButton | Sets the style name of this ToggleButton. |
addStyleName | ToggleButton | Adds a style name to this ToggleButton. |
addClickHandler | ToggleButton | Add a handler for click events. |
setHTML | ToggleButton | Sets the HTML content of this ToggleButton. |
getTag | String | Gets the text tag of this ToggleButton. |
setTag | ToggleButton | Sets the text tag of this ToggleButton. |
setDown | ToggleButton | Sets whether the button is down. |
setEnabled | ToggleButton | Sets whether the ToggleButton is enabled. |
setId | ToggleButton | Sets the id of this ToggleButton. |
addMouseDownHandler | ToggleButton | Add a handler for mouse down events. |
addMouseMoveHandler | ToggleButton | Add a handler for mouse move events. |
addMouseOutHandler | ToggleButton | Add a handler for mouse out events. |
addMouseOverHandler | ToggleButton | Add a handler for mouse move events. |
addMouseUpHandler | ToggleButton | Add a handler for mouse up events. |
addMouseWheelHandler | ToggleButton | Add a handler for mouse wheel events. |
getId | String | Returns the id that has been assigned to this object. |
addKeyDownHandler | ToggleButton | Add a handler for key down events. |
addKeyPressHandler | ToggleButton | Add a handler for key press events. |
addKeyUpHandler | ToggleButton | Add a handler for key up events. |
setFocus | ToggleButton | Explicitly focus/unfocus this ToggleButton. |
setTabIndex | ToggleButton | Sets the ToggleButton's position in the tab index. |
setText | ToggleButton | Set the display text of this ToggleButton. |
addFocusHandler | ToggleButton | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | ToggleButton | Add a handler for blur events (losing keyboard focus). |
class TreeItem
Members:
Member | Type | Description |
---|---|---|
setId | TreeItem | Sets the id of this TreeItem. |
addItem | TreeItem | Adds a TreeItem as a child to this TreeItem. |
addItem | TreeItem | Adds a new child tree item containing the specified widget. |
addItem | TreeItem | Adds a new child tree item containing the specified HTML. |
getId | String | Returns the id that has been assigned to this object. |
setHTML | TreeItem | Sets the HTML content of this TreeItem. |
getTag | String | Gets the text tag of this TreeItem. |
setTag | TreeItem | Sets the text tag of this TreeItem. |
setText | TreeItem | Set the display text of this TreeItem. |
setWidget | TreeItem | Sets the widget to be shown inside this TreeItem. |
setState | TreeItem | Sets whether this TreeItem is open or closed. |
setState | TreeItem | Sets whether this TreeItem is open or closed and optionally fire events. |
setSelected | TreeItem | Set whether this item is selected. |
class Tree
Members:
Member | Type | Description |
---|---|---|
setSelectedItem | Tree | Selects the given item and optionally fire events. |
setSelectedItem | Tree | Selects the given item. |
addItem | Tree | Adds a TreeItem as a child to this Tree. |
addItem | Tree | Adds a new child tree item containing the specified widget. |
addItem | Tree | Adds a new child tree item containing the specified HTML. |
setSize | Tree | Sets the size of this Tree. |
setStyleAttribute | Tree | Sets one of this Tree's style attributes to a new value. |
setStyleAttributes | Tree | Sets this Tree's style attributes. |
setTitle | Tree | Sets the hover title of this Tree. |
setHeight | Tree | Sets the height of this Tree. |
setVisible | Tree | Sets whether this Tree is visible. |
setPixelSize | Tree | Sets the size of this Tree in pixels. |
setWidth | Tree | Sets the width of this Tree. |
setStylePrimaryName | Tree | Sets the primary style name of this Tree. |
addStyleDependentName | Tree | Sets the dependent style name of this Tree. |
setStyleName | Tree | Sets the style name of this Tree. |
addStyleName | Tree | Adds a style name to this Tree. |
getTag | String | Gets the text tag of this Tree. |
setTag | Tree | Sets the text tag of this Tree. |
setId | Tree | Sets the id of this Tree. |
addCloseHandler | Tree | Add a handler for close events. |
getId | String | Returns the id that has been assigned to this object. |
addMouseDownHandler | Tree | Add a handler for mouse down events. |
addMouseMoveHandler | Tree | Add a handler for mouse move events. |
addMouseOutHandler | Tree | Add a handler for mouse out events. |
addMouseOverHandler | Tree | Add a handler for mouse move events. |
addMouseUpHandler | Tree | Add a handler for mouse up events. |
addMouseWheelHandler | Tree | Add a handler for mouse wheel events. |
addKeyDownHandler | Tree | Add a handler for key down events. |
addKeyPressHandler | Tree | Add a handler for key press events. |
addKeyUpHandler | Tree | Add a handler for key up events. |
setAnimationEnabled | Tree | Sets whether opening and closing the Tree is animated. |
setFocus | Tree | Explicitly focus/unfocus this Tree. |
setTabIndex | Tree | Sets the Tree's position in the tab index. |
add | Tree | Add a widget to the Tree. |
addFocusHandler | Tree | Add a handler for focus events (gaining keyboard focus). |
addBlurHandler | Tree | Add a handler for blur events (losing keyboard focus). |
addSelectionHandler | Tree | Add a handler for selection events. |
addOpenHandler | Tree | Add a handler for open events. |
class VerticalPanel
Members:
Member | Type | Description |
---|---|---|
setVerticalAlignment | VerticalPanel | Set the vertical alignment of widgets added to this VerticalPanel. |
setHorizontalAlignment | VerticalPanel | Set the horizontal alignment of widgets added to this VerticalPanel. |
setSize | VerticalPanel | Sets the size of this VerticalPanel. |
setStyleAttribute | VerticalPanel | Sets one of this VerticalPanel's style attributes to a new value. |
setStyleAttributes | VerticalPanel | Sets this VerticalPanel's style attributes. |
setTitle | VerticalPanel | Sets the hover title of this VerticalPanel. |
setHeight | VerticalPanel | Sets the height of this VerticalPanel. |
setVisible | VerticalPanel | Sets whether this VerticalPanel is visible. |
setPixelSize | VerticalPanel | Sets the size of this VerticalPanel in pixels. |
setWidth | VerticalPanel | Sets the width of this VerticalPanel. |
setStylePrimaryName | VerticalPanel | Sets the primary style name of this VerticalPanel. |
addStyleDependentName | VerticalPanel | Sets the dependent style name of this VerticalPanel. |
setStyleName | VerticalPanel | Sets the style name of this VerticalPanel. |
addStyleName | VerticalPanel | Adds a style name to this VerticalPanel. |
getTag | String | Gets the text tag of this VerticalPanel. |
setTag | VerticalPanel | Sets the text tag of this VerticalPanel. |
setBorderWidth | VerticalPanel | Sets the border width. |
setId | VerticalPanel | Sets the id of this VerticalPanel. |
getId | String | Returns the id that has been assigned to this object. |
clear | VerticalPanel | Remove all widgets from the VerticalPanel. |
setCellWidth | VerticalPanel | Sets the width of the cell associated with the given widget, related to the panel as a whole. |
setCellVerticalAlignment | VerticalPanel | Sets the vertical alignment of the given widget within its cell. |
setCellHorizontalAlignment | VerticalPanel | Sets the horizontal alignment of the given widget within its cell. |
setSpacing | VerticalPanel | Sets the amount of spacing between this panel's cells. |
setBorderWidth | VerticalPanel | Sets the width of the border to be applied to all cells in this panel. |
setCellHeight | VerticalPanel | Sets the height of the cell associated with the given widget, related to the panel as a whole. |
add | VerticalPanel | Add a widget to the VerticalPanel. |
remove | VerticalPanel | Remove the widget with the given index from the VerticalPanel. |
remove | VerticalPanel | Remove the given widget from the VerticalPanel. |