|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.smartgwt.client.core.JsObject
com.smartgwt.client.core.DataClass
com.smartgwt.client.core.RefDataClass
com.smartgwt.client.data.Hilite
public class Hilite
Definition of a hilite style.
See Hiliting
for an overview.
Field Summary |
---|
Fields inherited from class com.smartgwt.client.core.JsObject |
---|
jsObj |
Constructor Summary | |
---|---|
Hilite()
|
|
Hilite(JavaScriptObject jsObj)
|
Method Summary | |
---|---|
static Hilite[] |
convertToHiliteArray(JavaScriptObject nativeArray)
Convert the native Javascript Hilite array representation into a Hilite array. |
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. |
String |
getCssText()
CSS text to be applied to cells where this hilite is applied, for example, "background-color:#FF0000" |
Boolean |
getDisabled()
Whether this hilite is currently disabled. |
String |
getFieldName()
Name of the field, or array of fieldNames, this hilite should be applied to. |
String |
getHtmlAfter()
HTML to append to the end of cell values where this hilite is applied. |
String |
getHtmlBefore()
HTML to prepend to cell values where this hilite is applied. |
String |
getHtmlValue()
Value to show in place of the actual value from the record, for a record that matches this hilite. |
String |
getId()
Unique id for this hilite definition. |
static Hilite |
getOrCreateRef(JavaScriptObject jsObj)
|
String |
getTextColor()
When edited via a HiliteEditor, the value for the foreground color of this hilite. |
String |
getTitle()
User-visible title for this hilite. |
void |
setBackgroundColor(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(String cssText)
CSS text to be applied to cells where this hilite is applied, for example, "background-color:#FF0000" |
void |
setDisabled(Boolean disabled)
Whether this hilite is currently disabled. |
void |
setFieldName(String fieldName)
Name of the field, or array of fieldNames, this hilite should be applied to. |
void |
setFieldNames(String... fieldNames)
Name of the fields that hilite should be applied to. |
void |
setHtmlAfter(String htmlAfter)
HTML to append to the end of cell values where this hilite is applied. |
void |
setHtmlBefore(String htmlBefore)
HTML to prepend to cell values where this hilite is applied. |
void |
setHtmlValue(String htmlValue)
Value to show in place of the actual value from the record, for a record that matches this hilite. |
void |
setId(String id)
Unique id for this hilite definition. |
void |
setTextColor(String textColor)
When edited via a HiliteEditor, the value for the foreground color of this hilite. |
void |
setTitle(String title)
User-visible title for this hilite. |
Methods inherited from class com.smartgwt.client.core.RefDataClass |
---|
getRef, getRef |
Methods inherited from class com.smartgwt.client.core.JsObject |
---|
isCreated, setJsObj |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Hilite()
public Hilite(JavaScriptObject jsObj)
Method Detail |
---|
public static Hilite getOrCreateRef(JavaScriptObject jsObj)
public void setBackgroundColor(String backgroundColor)
cssText
. When a hilite is saved in a HiliteEditor, both attributes are set automatically.
backgroundColor
- backgroundColor Default value is nullpublic String getBackgroundColor()
cssText
. When a hilite is saved in a HiliteEditor, both attributes are set automatically.
public void setCssText(String cssText)
cssText
- cssText Default value is nullpublic String getCssText()
public void setDisabled(Boolean disabled)
Hilites can be programmatically enabled and disabled via DataBoundComponent.enableHilite
.
disabled
- disabled Default value is falsepublic Boolean getDisabled()
Hilites can be programmatically enabled and disabled via DataBoundComponent.enableHilite
.
public void setFieldName(String fieldName)
If unset, hilite is applied to every field of the record.
fieldName
- fieldName Default value is nullpublic String getFieldName()
If unset, hilite is applied to every field of the record.
public void setHtmlAfter(String htmlAfter)
htmlAfter
- htmlAfter Default value is nullpublic String getHtmlAfter()
public void setHtmlBefore(String htmlBefore)
htmlBefore
- htmlBefore Default value is nullpublic String getHtmlBefore()
public void setHtmlValue(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
- htmlValue Default value is nullpublic 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.
public void setId(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
- id Default value is nullpublic 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.
public void setTextColor(String textColor)
cssText
.
When a hilite is saved in a HiliteEditor, both attributes are set automatically.
textColor
- textColor Default value is nullpublic String getTextColor()
cssText
.
When a hilite is saved in a HiliteEditor, both attributes are set automatically.
public void setTitle(String title)
title
- title Default value is nullpublic String getTitle()
public void setFieldNames(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()
public static Hilite[] convertToHiliteArray(JavaScriptObject nativeArray)
nativeArray
- native hilite array
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |