com.smartgwt.client.types
Enum RowEndEditAction

java.lang.Object
  extended by java.lang.Enum<RowEndEditAction>
      extended by com.smartgwt.client.types.RowEndEditAction
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<RowEndEditAction>

public enum RowEndEditAction
extends Enum<RowEndEditAction>
implements ValueEnum

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

SAME

public static final RowEndEditAction SAME
navigate to the first editable cell in the same record


NEXT

public static final RowEndEditAction NEXT
navigate to the first editable cell in the next record


DONE

public static final RowEndEditAction DONE
complete the edit.


STOP

public static final RowEndEditAction STOP
Leave focus in the cell being edited (take no action)

Method Detail

values

public static RowEndEditAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RowEndEditAction c : RowEndEditAction.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RowEndEditAction 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