f:view |
Creates the top-level view
locale |
The locale for this view. |
renderKitId (JSF 1.2) |
The render kit ID for this view |
beforePhase, afterPhase |
Phase listeners that are called in every phase except "restore view" |
|
f:subview |
Creates a subview of a view
binding, id, rendered |
Basic attributes |
|
f:facet |
Adds a facet to a component
name |
the name of this facet |
|
f:attribute |
Adds an attribute to a component
name, value |
the name and value of the attribute to set |
|
f:param |
Constructs a parameter child component
name |
An optional name for this parameter component. |
value |
The value stored in this component. |
binding, id |
Basic attributes |
|
f:actionListener
f:valueChangeListener |
Adds an action listener or value change listener to a component
type |
The name of the listener class |
|
f:setPropertyChange Listener (JSF 1.2) |
Adds an action listener to a component that sets a bean property to a given value.
value |
The bean property to set when the action event occurs |
binding, id |
The value to set it to |
|
f:converter |
Adds an arbitary converter to a component
converterId |
The ID of the converter |
|
f:convertDateTime |
Adds a datetime converter to a component
type |
date (default), time, or both |
dateStyle |
default, short, medium, long, or full |
timeStyle |
default, short, medium, long, or full |
pattern |
Formatting pattern, as defined in java. text.SimpleDateFormat |
locale |
Locale whose preferences are to be used for parsing and formatting |
timezone |
Time zone to use for parsing and formatting |
|
f:convertNumber |
Adds a number converter to a component
type |
number (default), currency , or percent |
pattern |
Formatting pattern, as defined in java.text.DecimalFormat |
maxFractionDigits |
Maximum number of digits in the fractional part |
minFractionDigits |
Minimum number of digits in the fractional part |
maxIntegerDigits |
Maximum number of digits in the integer part |
minIntegerDigits |
Minimum number of digits in the integer part |
integerOnly |
True if only the integer part is parsed (default: false) |
groupingUsed |
True if grouping separators are used (default: true) |
locale |
Locale whose preferences are to be used for parsing and formatting |
currencyCode |
ISO 4217 currency code to use when converting currency values |
currencySymbol |
Currency symbol to use when converting currency values |
|
f:validator |
Adds a validator to a component
validatorId |
The ID of the validator |
|
f:validateDoubleRange
f:validateLongRange
f:validateLength |
Validates a double or long value, or the length of a string
minimum, maximum |
the minimum and maximum of the valid rang |
|
f:loadBundle |
Loads a resource bundle, stores properties as a Map
basename |
The resource bundle name |
value |
The name of the variable that is bound to the bundle map |
|
f:selectitems |
Specifies items for a select one or select many component
binding, id |
Basic attributes |
value |
Value expression that points to a SelectItem, an array or Collection of SelectItem objects, or a Map mapping labels to values. |
|
f:selectitem |
Specifies an item for a select one or select many component
binding, id |
Basic attributes |
itemDescription |
Description used by tools only |
itemDisabled |
Boolean value that sets the item's disabled property |
itemLabel |
Text shown by the item |
itemValue |
Item's value, which is passed to the server as a request parameter |
value |
Value expression that points to a SelectItem instance |
|
f:verbatim |
Adds markup to a JSF page
escape |
If set to true, escapes <, >, and & characters. Default value is false. |
rendered (JSF 1.2) |
Basic attributes |
|