Tobago Extensions 1.5.x


Standard Syntax:
     <%@ taglib prefix="tx" uri="http://myfaces.apache.org/tobago/extension" %>

XML Syntax:
     <anyxmlelement xmlns:tx="http://myfaces.apache.org/tobago/extension" />

Tobago Framework Extension Tag Library 1.5.x - (C) Copyright 2005-2011 The Apache Software Foundation

Tag Library Information
Display NameTobago Extensions 1.5.x
Version1.2
Short Nametx
URIhttp://myfaces.apache.org/tobago/extension
 

Tag Summary
dateRenders a date input field with a date picker and a label.
Short syntax of:

 <tc:panel> <f:facet name="layout"> <tc:gridLayout columns="auto;*"/> </f:facet> <tc:label value="#{label}" for="@auto"/> <tc:date value="#{value}"> ... </tc:in> </tc:panel> 

Extended tag: org.apache.myfaces.tobago.internal.taglib.DateTag

fileRenders a file input field with a label.

Short syntax of:

 <tc:panel> <f:facet name="layout"> <tc:gridLayout columns="auto;*"/> </f:facet> <tc:label value="#{label}" for="@auto"/> <tc:file value="#{value}"> ... </tc:in> </tc:panel> 

Extended tag: org.apache.myfaces.tobago.internal.taglib.FileTag

inRenders a text input field with a label.
Short syntax of:

 <tc:panel> <f:facet name="layout"> <tc:gridLayout columns="auto;*"/> </f:facet> <tc:label value="#{label}" for="@auto"/> <tc:in value="#{value}"> ... </tc:in> </tc:panel> 

Extended tag: org.apache.myfaces.tobago.internal.taglib.InTag

labelRenders a label to any component.
Short syntax of:
 <tc:panel> <f:facet name="layout"> <tc:gridLayout columns="auto;*"/> </f:facet> <tc:label value="#{label}" for="@auto"/> ... </tc:panel> 
This is the universal version of the special versions: <tx:in>, etc. In other words:
 <tx:label> <tc:in/> </tx:label> 
does the same like
 <tx:in/> 

Extended tag: org.apache.myfaces.tobago.internal.taglib.LabelTag

menuCheckboxRenders a menu item like a check box.
 <tx:menuCheckbox/>
is the short form of
 <tc:menuCommand> <f:facet name="checkbox"> <tc:selectBooleanCheckbox/> </f:facet> </tc:menuCommand>

Extended tag: org.apache.myfaces.tobago.internal.taglib.component.MenuCheckboxTag

menuRadioRenders menu items like radio buttons (select one).
 <tx:menuRadio> <tc:selectItems/> <!-- body --> </tx:menuRadio>
is the short form of
 <tc:menuCommand> <f:facet name="radio"> <tc:selectOneRadio> <tc:selectItems/> <!-- body --> </tc:selectOneRadio> </f:facet> </tc:menuCommand>

Extended tag: org.apache.myfaces.tobago.internal.taglib.MenuRadioTag

selectBooleanCheckboxRenders a checkbox.

Extended tag: org.apache.myfaces.tobago.internal.taglib.SelectBooleanCheckboxTag

selectManyCheckboxRender a group of checkboxes.

Extended tag: org.apache.myfaces.tobago.internal.taglib.SelectManyCheckboxTag

selectManyListboxRenders a multi selection option listbox with a label.

Extended tag: org.apache.myfaces.tobago.internal.taglib.SelectManyListboxTag

selectManyShuttleRenders a multi selection option shuttle with a label.

Extended tag: org.apache.myfaces.tobago.internal.taglib.SelectManyShuttleTag

selectOneChoiceRender a single selection dropdown list with a label.

Extended tag: org.apache.myfaces.tobago.internal.taglib.SelectOneChoiceTag

selectOneListboxRender a single selection option listbox.

Extended tag: org.apache.myfaces.tobago.internal.taglib.SelectOneListboxTag

selectOneRadioRender a set of radio buttons.

Extended tag: org.apache.myfaces.tobago.internal.taglib.SelectOneRadioTag

textareaRenders a multi line text input control with a label.
Short syntax of:

 <tc:panel> <f:facet name="layout"> <tc:gridLayout columns="auto;*"/> </f:facet> <tc:label value="#{label}" for="@auto"/> <tc:textarea value="#{value}"> ... </tc:in> </tc:panel> 

Extended tag: org.apache.myfaces.tobago.internal.taglib.TextareaTag

timeRenders a time input field with a label.
Short syntax of:

 <tc:panel> <f:facet name="layout"> <tc:gridLayout columns="auto;*"/> </f:facet> <tc:label value="#{label}" for="@auto"/> <tc:time value="#{value}"> ... </tc:in> </tc:panel> 

Extended tag: org.apache.myfaces.tobago.internal.taglib.TimeTag

 


Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-3 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.