input Tag Library, version 1.0

A tag library that produces HTML form elements that are prepopulated with default input. Supported tags include <input> with types of "text", "password", "textarea", "radio", and "checkbox", and <select> elements.

How To Declare This Library

You can use this tag library by adding the following declaration to your JSP pages:

<%@ taglib uri="http://jakarta.apache.org/taglibs/input-0.90" prefix="input" %>

Library Tags

checkbox

Description: Displays a check box

Body: Tag has no body

Attributes:
Name Required? Allows Scripting?
attributes false true
default false true
defaults false true
name true true
value false true

radio

Description: Displays a radio button

Body: Tag has no body

Attributes:
Name Required? Allows Scripting?
attributes false true
default false true
name true true
value true true

select

Description: Displays a selection box

Body: Tag has no body

Attributes:
Name Required? Allows Scripting?
attributes false true
default false true
name true true
options true true

text

Description: Displays a one-line text-entry box

Body: Tag has no body

Attributes:
Name Required? Allows Scripting?
attributes false true
default false true
name true true

textarea

Description: Displays a textarea box

Body: Tag has no body

Attributes:
Name Required? Allows Scripting?
attributes false true
default false true
name true true