]> 1.0 1.2 h http://java.sun.com/jsf/html JSF HTML tag library. This tag library implements the standard JSF HTML tags. column org.apache.myfaces.taglib.html.HtmlColumnTag JSP This tag is commonly used as a child of the dataTable tag, to represent a column of data. It can be decorated with "header" and "footer" facets to drive the output of header and footer rows. Row values are specified via its children. Unless otherwise specified, all attributes accept static values or EL expressions. &ui_component_attributes; commandButton org.apache.myfaces.taglib.html.HtmlCommandButtonTag JSP This tag renders as an HTML input element. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_command_button_attributes; commandLink org.apache.myfaces.taglib.html.HtmlCommandLinkTag JSP This tag renders as an HTML a element. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_command_link_attributes; dataTable org.apache.myfaces.taglib.html.HtmlDataTableTag JSP This component renders as an HTML table element. It has as its children h:column entities, which describe the columns of the table. It can be decorated with facets named "header" and "footer" to specify header and footer rows. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_data_table_attributes; form org.apache.myfaces.taglib.html.HtmlFormTag JSP Renders an HTML form element. Unless otherwise specified, all attributes accept static values or EL expressions. &ui_form_attributes; &html_universal_attributes; &html_event_handler_attributes; &html_form_attributes; graphicImage org.apache.myfaces.taglib.html.HtmlGraphicImageTag JSP Renders an HTML img element. Unless otherwise specified, all attributes accept static values or EL expressions. &ui_graphic_attributes; &html_universal_attributes; &html_event_handler_attributes; &spec_img_attributes; inputHidden org.apache.myfaces.taglib.html.HtmlInputHiddenTag JSP Renders as an HTML input tag with its type set to "hidden". Unless otherwise specified, all attributes accept static values or EL expressions. &ui_input_attributes; inputSecret org.apache.myfaces.taglib.html.HtmlInputSecretTag JSP Renders as an HTML input tag with its type set to "password". Unless otherwise specified, all attributes accept static values or EL expressions. &ui_input_attributes; &html_input_attributes; &html_universal_attributes; &html_event_handler_attributes; &standard_input_secret_attributes; inputText org.apache.myfaces.taglib.html.HtmlInputTextTag JSP Renders a HTML input element. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_input_text_attributes; inputTextarea org.apache.myfaces.taglib.html.HtmlInputTextareaTag JSP Renders a HTML textarea element. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_input_textarea_attributes; message org.apache.myfaces.taglib.html.HtmlMessageTag JSP Renders the first FacesMessage that is assigned to the component referenced by the "for" attribute. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_message_attributes; messages org.apache.myfaces.taglib.html.HtmlMessagesTag JSP
  • If globalOnly = true, only global messages, that have no associated clientId, will be displayed.
  • else if there is a "for" attribute, only messages that are assigned to the component referenced by the "for" attribute are displayed.
  • else all messages are displayed.
Unless otherwise specified, all attributes accept static values or EL expressions. ]]>
&standard_messages_attributes;
outputLabel org.apache.myfaces.taglib.html.HtmlOutputLabelTag JSP Renders a HTML label element. In addition to the JSF specification, MyFaces allows it to directly give an output text via the "value" attribute. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_output_label_attributes; outputLink org.apache.myfaces.taglib.html.HtmlOutputLinkTag JSP Renders a HTML a element. Child f:param elements are added to the href attribute as query parameters. Other children are rendered as the link text or image. Unless otherwise specified, all attributes accept static values or EL expressions. &ui_output_attributes; &html_universal_attributes; &html_event_handler_attributes; &html_anchor_attributes; outputFormat org.apache.myfaces.taglib.html.HtmlOutputFormatTag JSP Renders as text, applying the child f:param values to the value attribute as a MessageFormat string. If this element has an ID or CSS style properties, the text is wrapped in a span element. Unless otherwise specified, all attributes accept static values or EL expressions. &ui_output_attributes; &html_universal_attributes; &html_event_handler_attributes; &html_escape_attribute; outputText org.apache.myfaces.taglib.html.HtmlOutputTextTag JSP Renders the value of the associated UIOutput component. If this element has an ID or CSS style properties, the text is wrapped in a span element. Unless otherwise specified, all attributes accept static values or EL expressions. &ui_output_attributes; &html_universal_attributes; &html_event_handler_attributes; &html_escape_attribute; panelGrid org.apache.myfaces.taglib.html.HtmlPanelGridTag JSP This element renders as an HTML table with specified number of columns. Children of this element are rendered as cells in the table, filling rows from left to right. Facets named "header" and "footer" are optional and specify the content of the thead and tfoot rows, respectively. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_panel_grid_attributes; panelGroup org.apache.myfaces.taglib.html.HtmlPanelGroupTag JSP This element is used to group other components where the specification requires one child element. If any of the HTML or CSS attributes are set, its content is rendered within a span element. Unless otherwise specified, all attributes accept static values or EL expressions. &standard_panel_group_attributes; selectBooleanCheckbox org.apache.myfaces.taglib.html.HtmlSelectBooleanCheckboxTag JSP Renders as an HTML input tag with its type set to "checkbox", and its name attribute set to the id. The "checked" attribute is rendered if the value of this component is true.

Unless otherwise specified, all attributes accept static values or EL expressions. ]]> &standard_select_boolean_checkbox_attributes; selectManyCheckbox org.apache.myfaces.taglib.html.HtmlSelectManyCheckboxTag JSP The set of available options is defined by adding child f:selectItem or f:selectItems components to this component.

The value attribute must be a value-binding expression to a property of type List, Object array or primitive array. That "collection" is expected to contain objects of the same type as SelectItem.getValue() returns for the child SelectItem objects. On rendering, any child whose value is in the list will be selected initially. During the update phase, the property setter is called to replace the original collection with a completely new collection object of the appropriate type. The new collection object contains the value of each child SelectItem object that is currently selected.

Unless otherwise specified, all attributes accept static values or EL expressions. ]]> &standard_select_many_checkbox_attributes; selectManyListbox org.apache.myfaces.taglib.html.HtmlSelectManyListboxTag JSP The set of available options is defined by adding child f:selectItem or f:selectItems components to this component.

The list is rendered as an HTML select element. The "multiple" attribute is set on the element and the size attribute is set to the provided value, defaulting to the number of items in the list if no value is provided. If the size is set to 1, then a "drop-down" list (aka "combo-box") is presented, though if this is the intention then a selectManyMenu should be used instead.

The value attribute must be a value-binding expression to a property of type List, Object array or primitive array. That "collection" is expected to contain objects of the same type as SelectItem.getValue() returns for the child SelectItem objects. On rendering, any child whose value is in the list will be selected initially. During the update phase, the property is set to contain a "collection" of values for those child SelectItem objects that are currently selected.

Unless otherwise specified, all attributes accept static values or EL expressions. ]]> &standard_select_many_listbox_attributes; selectManyMenu org.apache.myfaces.taglib.html.HtmlSelectManyMenuTag JSP The set of available options is defined by adding child f:selectItem or f:selectItems components to this component.

Renders as an HTML select element, with the choices made up of child f:selectItem or f:selectItems elements. The multiple attribute is set and the size attribute is set to 1.

The value attribute must be a value-binding expression to a property of type List, Object array or primitive array. That "collection" is expected to contain objects of the same type as SelectItem.getValue() returns for the child SelectItem objects. On rendering, any child whose value is in the list will be selected initially. During the update phase, the property is set to contain a "collection" of values for those child SelectItem objects that are currently selected.

Unless otherwise specified, all attributes accept static values or EL expressions. ]]> &standard_select_many_menu_attributes; selectOneListbox org.apache.myfaces.taglib.html.HtmlSelectOneListboxTag JSP Rendered as a listbox with the MULTIPLE attribute set to false.

The available choices are defined via child f:selectItem or f:selectItems elements. The size of the listbox defaults to the number of available choices; if size is explicitly set to a smaller value, then scrollbars will be rendered. If size is set to 1 then a "drop-down menu" (aka "combo-box") is rendered, though if this is the intent then selectOneMenu should be used instead.

The value attribute of this component is read to determine which of the available options is initially selected; its value should match the "value" property of one of the child SelectItem objects.

On submit of the enclosing form, the value attribute's bound property is updated to contain the "value" property from the chosen SelectItem.

Unless otherwise specified, all attributes accept static values or EL expressions. ]]> &standard_select_one_listbox_attributes; selectOneMenu org.apache.myfaces.taglib.html.HtmlSelectOneMenuTag JSP Renders a drop-down menu (aka "combo-box") containing a set of choices, of which only one can be chosen at a time. The available choices are defined via child f:selectItem or f:selectItems elements.

The value attribute of this component is read to determine which of the available options is initially selected; its value should match the "value" property of one of the child SelectItem objects.

On submit of the enclosing form, the value attribute's bound property is updated to contain the "value" property from the chosen SelectItem.

Unless otherwise specified, all attributes accept static values or EL expressions. ]]> &standard_select_one_menu_attributes; selectOneRadio org.apache.myfaces.taglib.html.HtmlSelectOneRadioTag JSP Renders as an HTML table element, containing an input element for each child f:selectItem or f:selectItems elements. The input elements are rendered as type radio.

The value attribute of this component is read to determine which of the available options is initially selected; its value should match the "value" property of one of the child SelectItem objects.

On submit of the enclosing form, the value attribute's bound property is updated to contain the "value" property from the chosen SelectItem.

Unless otherwise specified, all attributes accept static values or EL expressions. ]]> &standard_select_one_radio_attributes;