Enum HoverMode

java.lang.Object
java.lang.Enum<HoverMode>
com.smartgwt.client.types.HoverMode
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<HoverMode>, Constable

public enum HoverMode extends Enum<HoverMode> implements ValueEnum
When canHover and showHoverComponents are both true, HoverMode dictates the type of UI to be displayed when a user hovers over a row or cell.

There are a number of builtin HoverModes and you can override getCellHoverComponent() to create your own hover behaviors.

  • Enum Constant Details

    • DETAIL_FIELD

      public static final HoverMode DETAIL_FIELD
      Show a single field's value in an HTMLFlow. Field to use is ListGrid.detailField.

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "detailField".

    • DETAILS

      public static final HoverMode DETAILS
      Show a DetailViewer displaying those fields from the record which are not already displayed in the grid.

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "details".

  • Method Details

    • values

      public static HoverMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static HoverMode valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
      Specified by:
      getValue in interface ValueEnum