public class Hilite extends RefDataClass
See Hiliting
for an overview.
id
Constructor and Description |
---|
Hilite() |
Hilite(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBackgroundColor()
When edited via a
HiliteEditor , the value for the background color of this
hilite. |
Criteria |
getCriteria()
Criteria defining what records this hilite should apply to.
|
java.lang.String |
getCssText()
CSS text to be applied to cells where this hilite is applied, for example, "background-color:#FF0000"
|
java.lang.Boolean |
getDisabled()
Whether this hilite is currently disabled.
|
java.lang.String |
getFieldName()
Name of the field, or array of fieldNames, this hilite should be applied to.
|
java.lang.String |
getHtmlAfter()
HTML to append to the end of cell values where this hilite is applied.
|
java.lang.String |
getHtmlBefore()
HTML to prepend to cell values where this hilite is applied.
|
java.lang.String |
getHtmlValue()
Value to show in place of the actual value from the record, for a record that matches this hilite.
|
java.lang.String |
getIcon()
URL of an icon to show when this hilite is applied to a cell.
|
java.lang.String |
getId()
Unique id for this hilite definition.
|
static Hilite |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
java.lang.String |
getReplacementValue()
HTML which replaces the cell's textual value where this hilite is applied.
|
java.lang.String |
getTextColor()
When edited via a
HiliteEditor , the value for the foreground color of this
hilite. |
java.lang.String |
getTitle()
User-visible title for this hilite.
|
void |
setBackgroundColor(java.lang.String backgroundColor)
When edited via a
HiliteEditor , the value for the background color of this
hilite. |
void |
setCriteria(Criteria criteria)
Criteria defining what records this hilite should apply to.
|
void |
setCssText(java.lang.String cssText)
CSS text to be applied to cells where this hilite is applied, for example, "background-color:#FF0000"
|
void |
setDisabled(java.lang.Boolean disabled)
Whether this hilite is currently disabled.
|
void |
setFieldName(java.lang.String fieldName)
Name of the field, or array of fieldNames, this hilite should be applied to.
|
void |
setFieldNames(java.lang.String... fieldNames)
Name of the fields that hilite should be applied to.
|
void |
setHtmlAfter(java.lang.String htmlAfter)
HTML to append to the end of cell values where this hilite is applied.
|
void |
setHtmlBefore(java.lang.String htmlBefore)
HTML to prepend to cell values where this hilite is applied.
|
void |
setHtmlValue(java.lang.String htmlValue)
Value to show in place of the actual value from the record, for a record that matches this hilite.
|
void |
setIcon(java.lang.String icon)
URL of an icon to show when this hilite is applied to a cell.
|
void |
setId(java.lang.String id)
Unique id for this hilite definition.
|
void |
setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj) |
void |
setReplacementValue(java.lang.String replacementValue)
HTML which replaces the cell's textual value where this hilite is applied.
|
void |
setTextColor(java.lang.String textColor)
When edited via a
HiliteEditor , the value for the foreground color of this
hilite. |
void |
setTitle(java.lang.String title)
User-visible title for this hilite.
|
getRef, getRef, internalSetID
doAddHandler, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsDoubleArray, getAttributeAsFloat, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsLong, getAttributeAsMap, getAttributeAsObject, getAttributeAsRecord, getAttributeAsString, getAttributeAsStringArray, getAttributes, getHandlerCount, getJsObj, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttributeAsJavaObject
public Hilite()
public Hilite(com.google.gwt.core.client.JavaScriptObject jsObj)
public static Hilite getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public void setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj)
public void setBackgroundColor(java.lang.String backgroundColor)
HiliteEditor
, the value for the background color of this
hilite. If this is omitted, it will be automatically derived from the backgroundColor attribute of cssText
. When a hilite is saved in a HiliteEditor, both attributes are set
automatically.backgroundColor
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getBackgroundColor()
HiliteEditor
, the value for the background color of this
hilite. If this is omitted, it will be automatically derived from the backgroundColor attribute of cssText
. When a hilite is saved in a HiliteEditor, both attributes are set
automatically.String
Hiliting overview and related methods
public void setCssText(java.lang.String cssText)
cssText
- . See CSSText
. Default value is nullHiliting overview and related methods
public java.lang.String getCssText()
CSSText
Hiliting overview and related methods
public void setDisabled(java.lang.Boolean disabled)
Hilites can be programmatically enabled and disabled via DataBoundComponent.enableHilite
.
disabled
- disabled Default value is falseHiliting overview and related methods
public java.lang.Boolean getDisabled()
Hilites can be programmatically enabled and disabled via DataBoundComponent.enableHilite
.
Hiliting overview and related methods
public void setFieldName(java.lang.String fieldName)
If unset, hilite is applied to every field of the record.
fieldName
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getFieldName()
If unset, hilite is applied to every field of the record.
String
Hiliting overview and related methods
public void setHtmlAfter(java.lang.String htmlAfter)
htmlAfter
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getHtmlAfter()
String
Hiliting overview and related methods
public void setHtmlBefore(java.lang.String htmlBefore)
htmlBefore
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getHtmlBefore()
String
Hiliting overview and related methods
public void setHtmlValue(java.lang.String htmlValue)
This can be used to take ranges of numeric values and simplify them to "Low", "Medium", "High" or similar textual values, translate very small or very large values to "Outlier" or "Negligible", and similar use cases.
htmlValue
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getHtmlValue()
This can be used to take ranges of numeric values and simplify them to "Low", "Medium", "High" or similar textual values, translate very small or very large values to "Outlier" or "Negligible", and similar use cases.
String
Hiliting overview and related methods
public void setIcon(java.lang.String icon)
hiliteIconPosition
or hiliteIconPosition
.icon
- . See SCImgURL
. Default value is nullHiliting overview and related methods
public java.lang.String getIcon()
hiliteIconPosition
or hiliteIconPosition
.SCImgURL
Hiliting overview and related methods
public void setId(java.lang.String id)
For hilites that include criteria
this is not required.
If you are explicitly marking records for hiliting, set hiliteProperty
on the record to this id.
id
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getId()
For hilites that include criteria
this is not required.
If you are explicitly marking records for hiliting, set hiliteProperty
on the record to this id.
String
Hiliting overview and related methods
public void setReplacementValue(java.lang.String replacementValue)
Note that sorting, filtering, etc behavior will still operate on the underlying value. For example, if there is a date field with the FilterEditor enabled, the default search interface will still offer date-range based filtering even if hilites have caused values to be displayed as text such as "current" or "past due".
replacementValue
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getReplacementValue()
Note that sorting, filtering, etc behavior will still operate on the underlying value. For example, if there is a date field with the FilterEditor enabled, the default search interface will still offer date-range based filtering even if hilites have caused values to be displayed as text such as "current" or "past due".
String
Hiliting overview and related methods
public void setTextColor(java.lang.String textColor)
HiliteEditor
, the value for the foreground color of this
hilite. If this is omitted, it will be automatically derived from the textColor attribute of cssText
. When a hilite is saved in a HiliteEditor, both attributes are set
automatically.textColor
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getTextColor()
HiliteEditor
, the value for the foreground color of this
hilite. If this is omitted, it will be automatically derived from the textColor attribute of cssText
. When a hilite is saved in a HiliteEditor, both attributes are set
automatically.String
Hiliting overview and related methods
public void setTitle(java.lang.String title)
title
- . See String
. Default value is nullHiliting overview and related methods
public java.lang.String getTitle()
String
Hiliting overview and related methods
public void setFieldNames(java.lang.String... fieldNames)
If unset, hilite is applied to every field of the record.
fieldNames
- fieldNames Default value is nullpublic void setCriteria(Criteria criteria)
criteria
- criteria Default value is nullpublic Criteria getCriteria()