| |||||||
FRAMES NO FRAMES |
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<anyxmlelement xmlns:f="http://java.sun.com/jsf/core" />
This tag library implements the standard JSF core tags.
Tag Library Information | |
Display Name | JSF core tag library. |
Version | 1.2 |
Short Name | f |
URI | http://java.sun.com/jsf/core |
Tag Summary | |
subview | Base class for components that provide a new "namespace" for the ids of their child components. See the javadocs for interface NamingContainer for further details. |
view | Creates a JSF View, which is a container that holds all of the components that are part of the view. Unless otherwise specified, all attributes accept static values or EL expressions. See the javadoc for this class in the JSF Specification for further details. |
param | This tag associates a parameter name-value pair with the nearest parent UIComponent. A UIComponent is created to represent this name-value pair, and stored as a child of the parent component; what effect this has depends upon the renderer of that parent component. Unless otherwise specified, all attributes accept static values or EL expressions. |
selectItem | This tag associates a single SelectItem with the nearest parent UIComponent. The item represents a single option for a component such as an h:selectBooleanCheckbox or h:selectOneMenu. See also component selectItems. Unless otherwise specified, all attributes accept static values or EL expressions. UISelectItem should be nestetd inside a UISelectMany or UISelectOne component, and results in the addition of a SelectItem instance to the list of available options for the parent component |
selectItems | This tag associates a set of selection list items with the nearest parent UIComponent. The set of SelectItem objects is retrieved via a value-binding. Unless otherwise specified, all attributes accept static values or EL expressions. UISelectItems should be nested inside a UISelectMany or UISelectOne component, and results in the addition of one ore more SelectItem instance to the list of available options for the parent component |
convertDateTime | This tag associates a date time converter with the nearest parent UIComponent. Unless otherwise specified, all attributes accept static values or EL expressions. see Javadoc of JSF Specification |
convertNumber | This tag creates a number formatting converter and associates it with the nearest parent UIComponent. Unless otherwise specified, all attributes accept static values or EL expressions. see Javadoc of JSF Specification |
validateDoubleRange | Creates a validator and associateds it with the nearest parent UIComponent. When invoked, the validator ensures that values are valid doubles that lie within the minimum and maximum values specified. Commonly associated with a h:inputText entity. Unless otherwise specified, all attributes accept static values or EL expressions. see Javadoc of JSF Specification |
validateLength | Creates a validator and associateds it with the nearest parent UIComponent. When invoked, the validator ensures that values are valid strings with a length that lies within the minimum and maximum values specified. Commonly associated with a h:inputText entity. Unless otherwise specified, all attributes accept static values or EL expressions. see Javadoc of JSF Specification |
validateLongRange | Creates a validator and associateds it with the nearest parent UIComponent. When invoked, the validator ensures that values are valid longs that lie within the minimum and maximum values specified. Commonly associated with a h:inputText entity. Unless otherwise specified, all attributes accept static values or EL expressions. see Javadoc of JSF Specification |
facet | This tag adds its child as a facet of the nearest parent UIComponent. A child consisting of multiple elements should be nested within a container component (i.e., within an h:panelGroup for HTML library components). Unless otherwise specified, all attributes accept static values or EL expressions. see Javadoc of JSF Specification |
Listeners |
org.apache.myfaces.webapp.StartupServletContextListener |
| |||||||
FRAMES NO FRAMES |