|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RowEndEditAction>
com.smartgwt.client.types.RowEndEditAction
public enum RowEndEditAction
While editing a ListGrid, what cell should we edit when the user attempts to navigate into a cell past the end of an editable row, via a Tab keypress, or a programmatic saveAndEditNextCell() call?
Enum Constant Summary | |
---|---|
DONE
complete the edit. |
|
NEXT
navigate to the first editable cell in the next record |
|
SAME
navigate to the first editable cell in the same record |
|
STOP
Leave focus in the cell being edited (take no action) |
Method Summary | |
---|---|
String |
getValue()
|
static RowEndEditAction |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RowEndEditAction[] |
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 RowEndEditAction SAME
public static final RowEndEditAction NEXT
public static final RowEndEditAction DONE
public static final RowEndEditAction STOP
Method Detail |
---|
public static RowEndEditAction[] values()
for (RowEndEditAction c : RowEndEditAction.values()) System.out.println(c);
public static RowEndEditAction 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 |