|
|||||||||
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.widgets.form.fields.FormItemIcon
public class FormItemIcon
Form item icon descriptor objects used by Form Items to specify the appearance and behavior of icons displayed after the item in the page flow.
Field Summary |
---|
Fields inherited from class com.smartgwt.client.core.JsObject |
---|
jsObj |
Constructor Summary | |
---|---|
FormItemIcon()
|
|
FormItemIcon(JavaScriptObject jsObj)
|
Method Summary | |
---|---|
HandlerRegistration |
addFormItemClickHandler(FormItemClickHandler handler)
Add a formItemClick handler. |
boolean |
equals(Object o)
|
Integer |
getHeight()
If set, this property determines the height of this icon in px. |
Boolean |
getNeverDisable()
If icon.neverDisable is true, when this form item is disabled, the icon will remain enabled. |
static FormItemIcon |
getOrCreateRef(JavaScriptObject jsObj)
|
String |
getPrompt()
If set, this property will be displayed as a prompt (and tooltip text) for this form item icon. |
Boolean |
getShowFocused()
Should this icon's image switch to the appropriate "focused" source when the user puts focus on the form item or icon? |
Boolean |
getShowFocusedWithItem()
If this icon will be updated to show focus (see showFocused , showFocusedIcons ), this property governs whether
the focused state should be shown when the item as a whole recieves focus or just if the icon recieves focus. |
Boolean |
getShowOver()
Should this icon's image switch to the appropriate "over" source when the user rolls over or focuses on the icon? |
String |
getSrc()
If set, this property determines this icon's image source. |
Integer |
getWidth()
If set, this property determines the width of this icon in px. |
int |
hashCode()
|
void |
keyPress(String keyName,
char character,
DynamicForm form,
FormItem item,
FormItemIcon icon)
StringMethod action to fire when this icon has focus and recieves a keypress event. |
void |
setHeight(Integer height)
If set, this property determines the height of this icon in px. |
void |
setNeverDisable(Boolean neverDisable)
If icon.neverDisable is true, when this form item is disabled, the icon will remain enabled. |
void |
setPrompt(String prompt)
If set, this property will be displayed as a prompt (and tooltip text) for this form item icon. |
void |
setShowFocused(Boolean showFocused)
Should this icon's image switch to the appropriate "focused" source when the user puts focus on the form item or icon? |
void |
setShowFocusedWithItem(Boolean showFocusedWithItem)
If this icon will be updated to show focus (see showFocused , showFocusedIcons ), this property governs whether
the focused state should be shown when the item as a whole recieves focus or just if the icon recieves focus. |
void |
setShowOver(Boolean showOver)
Should this icon's image switch to the appropriate "over" source when the user rolls over or focuses on the icon? |
void |
setSrc(String src)
If set, this property determines this icon's image source. |
void |
setWidth(Integer width)
If set, this property determines the width of this icon in px. |
Methods inherited from class com.smartgwt.client.core.JsObject |
---|
isCreated, setJsObj |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.google.gwt.event.shared.HasHandlers |
---|
fireEvent |
Constructor Detail |
---|
public FormItemIcon()
public FormItemIcon(JavaScriptObject jsObj)
Method Detail |
---|
public static FormItemIcon getOrCreateRef(JavaScriptObject jsObj)
public void setSrc(String src)
defaultIconSrc
property will be used instead.defaultIconSrc
this URL will be modified by adding
"_Over" or "_Disabled" if appropriate to show the icons over or disabled state.
src
- src Default value is nullpublic String getSrc()
defaultIconSrc
property will be used instead.defaultIconSrc
this URL will be modified by adding
"_Over" or "_Disabled" if appropriate to show the icons over or disabled state.
public void setShowOver(Boolean showOver)
Note : This is an advanced setting
showOver
- showOver Default value is nullpublic Boolean getShowOver()
public void setShowFocused(Boolean showFocused)
Note : This is an advanced setting
showFocused
- showFocused Default value is nullpublic Boolean getShowFocused()
public void setShowFocusedWithItem(Boolean showFocusedWithItem)
showFocused
, showFocusedIcons
), this property governs whether
the focused state should be shown when the item as a whole recieves focus or just if the icon recieves focus. If this
property is unset, default behavior is to show focused state when the item recieves focus.
Note : This is an advanced setting
showFocusedWithItem
- showFocusedWithItem Default value is nullpublic Boolean getShowFocusedWithItem()
showFocused
, showFocusedIcons
), this property governs whether
the focused state should be shown when the item as a whole recieves focus or just if the icon recieves focus. If this
property is unset, default behavior is to show focused state when the item recieves focus.
public void setNeverDisable(Boolean neverDisable)
icon.neverDisable
is true, when this form item is disabled, the icon will remain enabled. Note that
disabling the entire form will disable all items, together with their icons including those marked as neverDisable -
this property only has an effect if the form is enabled and a specific item is disabled within it.
Note : This is an advanced setting
neverDisable
- neverDisable Default value is nullpublic Boolean getNeverDisable()
icon.neverDisable
is true, when this form item is disabled, the icon will remain enabled. Note that
disabling the entire form will disable all items, together with their icons including those marked as neverDisable -
this property only has an effect if the form is enabled and a specific item is disabled within it.
public void setWidth(Integer width)
iconWidth
property will be used instead.
width
- width Default value is nullpublic Integer getWidth()
iconWidth
property will be used instead.
public void setHeight(Integer height)
iconHeight
property will be used instead.
height
- height Default value is nullpublic Integer getHeight()
iconHeight
property will be used instead.
public void setPrompt(String prompt)
If unset the form
item's iconPrompt
property will be used instead.
Note : This is an advanced setting
prompt
- prompt Default value is nullpublic String getPrompt()
If unset the form
item's iconPrompt
property will be used instead.
public HandlerRegistration addFormItemClickHandler(FormItemClickHandler handler)
StringMethod action to fire when this icon is clicked If unset the form item's iconClick
method will
be fired instead (if specified).
addFormItemClickHandler
in interface HasFormItemClickHandlers
handler
- the formItemClick handler
HandlerRegistration
used to remove this handlerpublic void keyPress(String keyName, char character, DynamicForm form, FormItem item, FormItemIcon icon)
iconKeyPress
method will be fired instead (if specified).
keyName
- Name of the key pressedcharacter
- character produced by the keypressform
- The Dynamic Form to which this icon's item belongs.item
- The Form Item containing this iconicon
- A pointer to the form item iconpublic boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |