Class RowTag
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
org.deltava.taglib.BrowserInfoTag
org.deltava.taglib.html.ElementTag
org.deltava.taglib.view.RowTag
- All Implemented Interfaces:
- Serializable,- IterationTag,- JspTag,- Tag
A JSP Tag to render view table rows with a specified CSS class.
- Since:
- 1.0
- Version:
- 11.0
- Author:
- Luke
- See Also:
- 
Field SummaryFields inherited from class org.deltava.taglib.html.ElementTag_classes, _data, _outFields inherited from class javax.servlet.jsp.tagext.TagSupportid, pageContextFields inherited from interface javax.servlet.jsp.tagext.IterationTagEVAL_BODY_AGAINFields inherited from interface javax.servlet.jsp.tagext.TagEVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintdoEndTag()Closes the table row by printing a </TR> tag to the JSP output stream.intOpens the table row by rendering a <TR> tag to the JSP output stream.voidSets the entry to display in the table row.Methods inherited from class org.deltava.taglib.html.ElementTaggetFormIndexCount, getName, getParentFormTag, release, setClassName, setID, setNumericAttr, setPageContext, setStyleMethods inherited from class org.deltava.taglib.BrowserInfoTaggetBrowserContext, passedCAPTCHAMethods inherited from class javax.servlet.jsp.tagext.TagSupportdoAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setParent, setValue
- 
Constructor Details- 
RowTagpublic RowTag()Creates the tag.
 
- 
- 
Method Details- 
setEntrySets the entry to display in the table row.- Parameters:
- obj- the Object to display.
 
- 
doStartTagOpens the table row by rendering a <TR> tag to the JSP output stream. If a CSS class name has been specified, then this will be set as the CLASS for the row. If the entry implements theViewEntryinterface, then the tableRowClassName property will be used as the class name. If the class name is NULL, no class property for the row will be set.- Specified by:
- doStartTagin interface- Tag
- Overrides:
- doStartTagin class- ElementTag
- Returns:
- TagSupport.EVAL_BODY_INCLUDE
- Throws:
- JspException- if an I/O error occurs
 
- 
doEndTagCloses the table row by printing a </TR> tag to the JSP output stream.- Specified by:
- doEndTagin interface- Tag
- Overrides:
- doEndTagin class- TagSupport
- Returns:
- TagSupport.EVAL_PAGE
- Throws:
- JspException- if an I/O error occurs
 
 
-