Class ResetButton

All Implemented Interfaces:
HasAllDragAndDropHandlers, HasAllFocusHandlers, HasAllGestureHandlers, HasAllKeyHandlers, HasAllMouseHandlers, HasAllTouchHandlers, HasBlurHandlers, HasClickHandlers, HasDoubleClickHandlers, HasDragEndHandlers, HasDragEnterHandlers, HasDragHandlers, HasDragLeaveHandlers, HasDragOverHandlers, HasDragStartHandlers, HasDropHandlers, HasFocusHandlers, HasGestureChangeHandlers, HasGestureEndHandlers, HasGestureStartHandlers, HasKeyDownHandlers, HasKeyPressHandlers, HasKeyUpHandlers, HasMouseDownHandlers, HasMouseMoveHandlers, HasMouseOutHandlers, HasMouseOverHandlers, HasMouseUpHandlers, HasMouseWheelHandlers, HasTouchCancelHandlers, HasTouchEndHandlers, HasTouchMoveHandlers, HasTouchStartHandlers, HasAttachHandlers, HasHandlers, HasSafeHtml, EventListener, Focusable, HasEnabled, HasFocus, HasHTML, HasText, HasVisibility, IsWidget, SourcesClickEvents, SourcesFocusEvents, SourcesKeyboardEvents, SourcesMouseEvents

public class ResetButton extends Button
A standard push-button widget which will automatically reset its enclosing FormPanel if any.

CSS Style Rules

.gwt-ResetButton
the outer element
  • Constructor Details

    • ResetButton

      public ResetButton()
      Creates a button with no caption.
    • ResetButton

      public ResetButton(SafeHtml html)
      Creates a button with the given HTML caption.
      Parameters:
      html - the HTML caption
    • ResetButton

      public ResetButton(String html)
      Creates a button with the given HTML caption.
      Parameters:
      html - the HTML caption
    • ResetButton

      public ResetButton(SafeHtml html, ClickHandler handler)
      Creates a button with the given HTML caption and click listener.
      Parameters:
      html - the HTML caption
      handler - the click handler
    • ResetButton

      public ResetButton(String html, ClickHandler handler)
      Creates a button with the given HTML caption and click listener.
      Parameters:
      html - the HTML caption
      handler - the click handler
    • ResetButton

      protected ResetButton(Element element)
      This constructor may be used by subclasses to explicitly use an existing element. This element must be a <button> element with type reset.
      Parameters:
      element - the element to be used
  • Method Details

    • wrap

      public static Button wrap(Element element)
      Creates a ResetButton widget that wraps an existing <button> element. This element must already be attached to the document. If the element is removed from the document, you must call RootPanel.detachNow(Widget).
      Parameters:
      element - the element to be wrapped