Package com.smartgwt.client.types
Enum HoverPersistMode
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<HoverPersistMode>
,Constable
Customizes how users can interact with hovers.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionlike "clickPin", but the hover is pinned as soon as the user places the cursor over the hover, and needs an outside-click to dismisslike "underMouse", but if the user clicks in the hover, it is pinned until the user clicks outside of the hoverHover is dismissed as soon as the mouse moves off the target.the user has a brief window to move the cursor over the hover to prevent it from being dismissed, until mouseOut from the hover, allowing interactive hovers. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static HoverPersistMode
Returns the enum constant of this type with the specified name.static HoverPersistMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
Hover is dismissed as soon as the mouse moves off the target. This default type of hover cannot offer an interaction because the hover vanishes on mouseOut from the targetIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none". -
UNDERMOUSE
the user has a brief window to move the cursor over the hover to prevent it from being dismissed, until mouseOut from the hover, allowing interactive hovers. Note, if you want your hover to disappear as soon as something is clicked (like a link, for example), callHover.hide()
If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "underMouse". -
CLICKPIN
like "underMouse", but if the user clicks in the hover, it is pinned until the user clicks outside of the hoverIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "clickPin". -
AUTOPIN
like "clickPin", but the hover is pinned as soon as the user places the cursor over the hover, and needs an outside-click to dismissIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "autoPin".
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getValue
-