Records chooser taglib ver. 1.3

    Custom JSP taglib. Tag recordChooser lets you select an integer value from the given interval. For example:
 


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

<form ...>
  <c:recordChooser name="test" minValue="1" maxValue="15" border="false" edit="false"/>
</form>

and you will get some like this:

Tags are:

recordChooser

Custom tag for getting an integer value from the given interval. Parameters are:

1) name describes a name for this element
2) style Optional parameter. Describes your own CSS style
3) className Optional parameter. Describes your own CSS class
4) initValue Optional parameter. Describes an initial value. Default value is 1.
5) minValue Describes a minimal value.
6) maxValue Describes a maximal value.
7) edit Optional parameter. Enables/disables direct changes for control. Default value is true (enabled).
8) border Optional parameter. Describes a border drawing policy (draw/do not draw). Default value is true
9) autoSubmit Optional parameter. Possible values are true or false. Enables/disables form submission after data changing. Default value is false (disabled).
10) onChange Optional parameter. Describes a name for your own JavaScript function to be called when the value has been changed.

for downloading:

Library: rctag.jar    Description: taglib.tld

© Coldbeans      Comments?

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