Package com.smartgwt.client.types
Enum FormItemElementType
- All Implemented Interfaces:
- ValueEnum,- Serializable,- Comparable<FormItemElementType>,- Constable
HTML elements that make up a complete FormItem (note, not all FormItems use all of  these elements) 
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionThe form item as a whole, including the text element, any icons, and any hint text for the item.The "control" cell containing the text box and pickerThe cell containing the item's picker icon, if it has oneThe item's native text box, if it has oneThe cell containing the title
- 
Method SummaryModifier and TypeMethodDescriptiongetValue()static FormItemElementTypeReturns the enum constant of this type with the specified name.static FormItemElementType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
CELLThe form item as a whole, including the text element, any icons, and any hint text for the item. This is the cell containing the form itemIf this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "cell".
- 
CONTROLThe "control" cell containing the text box and pickerIf this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "control".
- 
PICKER_ICONThe cell containing the item's picker icon, if it has oneIf this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "pickerIcon".
- 
TEXT_BOXThe item's native text box, if it has oneIf this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "textBox".
- 
TITLEThe cell containing the titleIf this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "title".
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
-