Fieldset taglib ver. 1.5

    Custom JSP taglib lets you draw a box around some set of HTML/JSP elements. For example:
 


<%@ taglib uri="taglib.tld" prefix="f" %>

<f:fieldset>
 <f:caption>Health information:</f:caption>
 <f:body>
 Height <input type="text" size="3">
 Weight <input type="text" size="3">
 </f:body>
</f:fieldset>

and you will get some like this:

Health information:
Height Weight

This tag is similar to Group taglib.

Tags are:

fieldset

Body tag draws a border.

1) align Optional parameter. Describes an align for the content (e.g. left, right, center).

caption

Body tag describes a caption (title) for the box. Parameters are:

1) align Optional parameter. Describes an align for the title (e.g. left, right, center).
2) accesskey Optional parameter. This attribute assigns an access key to an element. An access key is a single character from the document character set.

body

Body tag describes a content for the box. Parameters are: none

for downloading:

Library: fieldset.jar    Description: taglib.tld

© Coldbeans      Comments?

See also Coldtags suite - the largest collection of custom JSP tags.