public class Label extends StylableTag
<tbl:toolbar>
tag.
Syntax:
<tbl:label id=... clazz=... style=... image=... title=... tooltip=... visible=true|false >
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.
Modifier and Type | Field and 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.
|
id, pageContext
EVAL_BODY_AGAIN
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
Constructor and Description |
---|
Label() |
Modifier and Type | Method and 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) |
addDynamicAttributes, addIdAndStyles, getClazz, getDynamicActionAttributes, getDynamicAttribute, getFullClass, getIdPrefix, getStyle, getSubclass, initDefaultAttributes, setClazz, setDynamicAttribute, setMoreDynamicAttributes, setPageContext, setStyle, setSubclass
doAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setParent, setValue
private static final long serialVersionUID
private Table table
private Toolbar toolbar
private String image
private String title
private String tooltip
private boolean visible
public void setImage(String image)
public String getImage()
public void setTitle(String title)
public String getTitle()
public void setTooltip(String tooltip)
public String getTooltip()
public void setVisible(boolean visible)
public boolean isVisible()
public int doStartTag() throws JspException
doStartTag
in interface Tag
doStartTag
in class TagSupport
JspException
public int doEndTag() throws JspException
doEndTag
in interface Tag
doEndTag
in class TagSupport
JspException