Package com.smartgwt.client.types
Enum PreRenderImageMode
- All Implemented Interfaces:
ValueEnum,Serializable,Comparable<PreRenderImageMode>,Constable
Controls how framework-generated icons (group expand/collapse, tree openers, folder icons, value icons, boolean checkboxes) are handled in the canvas
ListGrid.preRender preview. Icons in the HTML grid are rendered as <img> or CSS-styled <span> elements. The canvas preview approximates these using Canvas 2D drawing or reserves the correct amount of space.
Regardless of this setting, icon space is always reserved so that text positioning matches the final HTML grid layout.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiongetValue()static PreRenderImageModeReturns the enum constant of this type with the specified name.static PreRenderImageMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALL
All detectable framework icons are cached via Image objects and drawn viactx.drawImage(). Icons with resolvable URLs (group openers, raster value icons) are rendered; sprite and CSS-class icons fall back to space reservation. First render for any given icon URL shows space only (async image loading); subsequent renders show the actual icon.If this enumerated value is used in a
Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "all". -
SPACE
Icon positions are detected and the correct horizontal space is reserved, but no images are drawn. Text is offset to match the HTML grid layout.If this enumerated value is used in a
Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "space".
-
-
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
-