|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<HoverMode>
com.smartgwt.client.types.HoverMode
public enum HoverMode
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 Summary | |
|---|---|
DETAIL_FIELD
Show a single field's value in an HTMLFlow. |
|
DETAIL_RELATED
Show a DetailViewer displaying those fields from the record not already
displayed in the grid, together with a separate ListGrid containing
related-records. |
|
DETAILS
Show a DetailViewer displaying those fields from the record which are not
already displayed in the grid. |
|
RELATED
Show a separate ListGrid containing related-records. |
|
| Method Summary | |
|---|---|
String |
getValue()
|
static HoverMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static HoverMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final HoverMode DETAIL_FIELD
HTMLFlow. Field to use is detailField.
public static final HoverMode DETAILS
DetailViewer displaying those fields from the record which are not
already displayed in the grid.
public static final HoverMode RELATED
ListGrid containing related-records. See detailDS and recordDetailDSProperty for more information.
public static final HoverMode DETAIL_RELATED
DetailViewer displaying those fields from the record not already
displayed in the grid, together with a separate ListGrid containing
related-records.
| Method Detail |
|---|
public static HoverMode[] values()
for (HoverMode c : HoverMode.values()) System.out.println(c);
public static HoverMode valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getValue()
getValue in interface ValueEnum
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||