Enum ExpansionMode
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<ExpansionMode>
,Constable
canExpandRecords
is true, ExpansionMode
dictates the type of UI to be displayed in the expanded portion of the row. There are a number of builtin
ExpansionModes and you can override getExpansionComponent()
to create your own expansion behaviors.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionShow a single field's value in anHTMLFlow
.Show aDetailViewer
displaying those fields from the record not already displayed in the grid, together with a separateListGrid
containing related-records.Show aDetailViewer
displaying those fields from the record which are not already displayed in the grid.Show aDynamicForm
to edit those fields from the record which are not already present in the grid.Show a separateListGrid
containing related-records. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static ExpansionMode
Returns the enum constant of this type with the specified name.static ExpansionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DETAIL_FIELD
Show a single field's value in anHTMLFlow
. Field to use isListGrid.detailField
.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "detailField". -
DETAILS
Show aDetailViewer
displaying those fields from the record which are not already displayed in the grid.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "details". -
RELATED
Show a separateListGrid
containing related-records. SeeListGridRecord.detailDS
andListGrid.recordDetailDSProperty
for more information.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "related". -
EDITOR
Show aDynamicForm
to edit those fields from the record which are not already present in the grid. If the record is collapsed with unsaved changes andListGrid.expansionEditorShowSaveDialog
is not set, Edits will be saved automatically, or stored aseditValues
ifListGrid.autoSaveEdits
is false. Otherwise, a confirmation dialog is displayed. Can optionally show asave button
andauto-collapse
when save is pressed. If a record fails validation on save and the field in question is not visible in the grid, the record is automatically expanded and validated to show the errors.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "editor". -
DETAIL_RELATED
Show aDetailViewer
displaying those fields from the record not already displayed in the grid, together with a separateListGrid
containing related-records.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "detailRelated".
-
-
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
-