com.infragistics.faces.input.taglib.html
Class InputDecimalTag
java.lang.Object
javax.faces.webapp.UIComponentTag
com.infragistics.faces.input.taglib.html.InputDecimalTag
- All Implemented Interfaces:
- javax.servlet.jsp.tagext.Tag
- public class InputDecimalTag
- extends javax.faces.webapp.UIComponentTag
JSP Tags For The inputDecimal Component.
Use
To use the component in a JSP page, declare the taglib:
<%@ taglib prefix="ig" uri="http://www.infragistics.com/faces/netadvantage" %>
and instantiate:
<ig:inputDecimal >
Attributes
| Name | Type | Default | Description |
| converter | Converter | "" | Converter instance registered with this component. |
| disabled | boolean | "false" | Input sensitivity status. Disabled components may not be selected by the user and are visibly disabled. |
| immediate | boolean | "" | flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase |
| locale | Locale | "" | Locale for numerical representation |
| maximumFractionDigits | int | "" | Maximum number of digits in the fraction part of the numerical value |
| maximumIntegerDigits | int | "" | Maximum number of digits in the integer part of the numerical value |
| maximumNumber | Number | "" | Maximum numerical value is allowed for this field |
| minimumFractionDigits | int | "" | Minimum number of digits in the fraction part of the numerical value |
| minimumIntegerDigits | int | "" | Minimum number of digits in the integer part of the numerical value |
| minimumNumber | Number | "" | Minimum numerical value is allowed for this field |
| numberType | NumberType | "NumberType.DOUBLE" | Numerical type internal representation |
| parseIntegerOnly | boolean | "false" | Allow only integer numerical values on input |
| readOnly | boolean | "false" | Input sensitivity status. Read-only components may not be editted by the user are not visibly disabled. |
| required | boolean | "" | Flag indicating that the user is required to provide a submitted value for this input component. |
| shortcut | String | "" | Shorcut key associated with the component. A platform dependent modifier (alt, shift etc) is automatically added. |
| style | String | "" | CSS style applied when this component is rendered. |
| styleClass | String | "" | Space-separated list of CSS style class(es) applied when this component is rendered. |
| tooltip | String | "" | Tooltip string associated with this component. The string is automatically displayed in the browser status bar or as a popup tooltip where appropriate. |
| validator | Validator | "" | MethodBinding representing a validator method that will be called during Process Validations to perform correctness checks on the value of this component. |
| value | Object | "" | The current value of this component |
| valueChangeListener | MethodBinding | "" | MethodBinding representing a value change listener method that will be notified when a new value has been set for this input component. The expression must evaluate to a public method that takes a ValueChangeEvent parameter, with a return type of void. |
| Fields inherited from interface javax.servlet.jsp.tagext.Tag |
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE |
| Methods inherited from class javax.faces.webapp.UIComponentTag |
doEndTag, doStartTag, getComponentInstance, getCreated, getParent, getParentUIComponentTag, isValueReference, setBinding, setId, setPageContext, setParent, setRendered |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
InputDecimalTag
public InputDecimalTag()
Constructor
getComponentType
public java.lang.String getComponentType()
getRendererType
public java.lang.String getRendererType()
release
public void release()
setConverter
public void setConverter(java.lang.String newValue)
setDisabled
public void setDisabled(java.lang.String newValue)
setImmediate
public void setImmediate(java.lang.String newValue)
setLocale
public void setLocale(java.lang.String newValue)
setMaximumFractionDigits
public void setMaximumFractionDigits(java.lang.String newValue)
setMaximumIntegerDigits
public void setMaximumIntegerDigits(java.lang.String newValue)
setMaximumNumber
public void setMaximumNumber(java.lang.String newValue)
setMinimumFractionDigits
public void setMinimumFractionDigits(java.lang.String newValue)
setMinimumIntegerDigits
public void setMinimumIntegerDigits(java.lang.String newValue)
setMinimumNumber
public void setMinimumNumber(java.lang.String newValue)
setNumberType
public void setNumberType(java.lang.String newValue)
setParseIntegerOnly
public void setParseIntegerOnly(java.lang.String newValue)
setReadOnly
public void setReadOnly(java.lang.String newValue)
setRequired
public void setRequired(java.lang.String newValue)
setShortcut
public void setShortcut(java.lang.String newValue)
setStyle
public void setStyle(java.lang.String newValue)
setStyleClass
public void setStyleClass(java.lang.String newValue)
setTooltip
public void setTooltip(java.lang.String newValue)
setValidator
public void setValidator(java.lang.String newValue)
setValue
public void setValue(java.lang.String newValue)
setValueChangeListener
public void setValueChangeListener(java.lang.String newValue)