Class Label
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- net.sf.basedb.clients.web.taglib.StylableTag
-
- net.sf.basedb.clients.web.taglib.table.Label
-
- All Implemented Interfaces:
Serializable
,DynamicAttributes
,IterationTag
,JspTag
,Tag
,DynamicActionAttributes
public class Label extends StylableTag
This tag creates a label on a toolbar. The tag must be located inside a<tbl:toolbar>
tag.Syntax:
<tbl:label id=... clazz=... style=... image=... title=... tooltip=... visible=true|false >
Tag attributes Attribute Default value Required Description id - no The ID of the label. The value of this attribute goes directly into the standard HTML id
attribute. This means that if you need a reference to the table object in your own JavaScript code, you may for example use the following code:button = document.getElementById('<id>');
clazz label no The value if this attribute goes directly into the standard HTML class
attribute. This allows you to apply different styles to different tables.style - no The value if this attribute goes directly into the standard HTML style
attribute. This allows you to apply different styles to different tables.image - no The file name of an image to show on the label. It is expected that the image is located in the /images
directory. Do not specify a complete path.title - no The text of the button. tooltip - no A text that will be shown while the user has the mouse over the label. visible true no If the label should be visible or not. This tag has no subtags.
- Version:
- 2.0
- Author:
- Nicklas
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private String
image
An optional image to show in the button.private static long
serialVersionUID
private Table
table
The parent <tbl:table> tag.private String
title
An optional title text on the button.private Toolbar
toolbar
The parent <tbl:toolbar> tag.private String
tooltip
An optional tooltip that will show when the mouse is over the button.private boolean
visible
If the button should be visible or not.-
Fields inherited from class javax.servlet.jsp.tagext.TagSupport
id, pageContext
-
Fields inherited from interface javax.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAIN
-
Fields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
-
-
Constructor Summary
Constructors Constructor Description Label()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
doEndTag()
int
doStartTag()
String
getImage()
String
getTitle()
String
getTooltip()
boolean
isVisible()
void
setImage(String image)
void
setTitle(String title)
void
setTooltip(String tooltip)
void
setVisible(boolean visible)
-
Methods inherited from class net.sf.basedb.clients.web.taglib.StylableTag
addDynamicAttributes, addIdAndStyles, getClazz, getDynamicActionAttributes, getDynamicAttribute, getFullClass, getIdPrefix, getStyle, getSubclass, initDefaultAttributes, setClazz, setDynamicAttribute, setMoreDynamicAttributes, setPageContext, setStyle, setSubclass
-
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
doAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setParent, setValue
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
table
private Table table
The parent <tbl:table> tag.
-
toolbar
private Toolbar toolbar
The parent <tbl:toolbar> tag.
-
image
private String image
An optional image to show in the button.
-
title
private String title
An optional title text on the button.
-
tooltip
private String tooltip
An optional tooltip that will show when the mouse is over the button.
-
visible
private boolean visible
If the button should be visible or not.
-
-
Method Detail
-
setImage
public void setImage(String image)
-
getImage
public String getImage()
-
setTitle
public void setTitle(String title)
-
getTitle
public String getTitle()
-
setTooltip
public void setTooltip(String tooltip)
-
getTooltip
public String getTooltip()
-
setVisible
public void setVisible(boolean visible)
-
isVisible
public boolean isVisible()
-
doStartTag
public int doStartTag() throws JspException
- Specified by:
doStartTag
in interfaceTag
- Overrides:
doStartTag
in classTagSupport
- Throws:
JspException
-
doEndTag
public int doEndTag() throws JspException
- Specified by:
doEndTag
in interfaceTag
- Overrides:
doEndTag
in classTagSupport
- Throws:
JspException
-
-