|
Exclusive checkbox taglib ver. 1.2 JSP custom taglib for UI development. This taglib lets you add a special behavior for your checkboxes.
Only one checkbox can be checked at a time. It is useful when only one of choices can be chosen, similar to a radio button.
But the use of checkboxes lets you to uncheck something what is not possible with radio buttons.
For example:
<%@ taglib uri="taglib.tld" prefix="e" %>
<form>
<input type="checkbox" name="opt1" value="must_have" id="c1">Must have
<input type="checkbox" name="opt1" value="must_not_have" id="c2">Must not have
</form>
<e:ExclusiveCheckbox id1="c1" id2="c2"/>
Try It Out: http://www.servletsuite.com/servlets/exchecktag.htm
|