%--
--
-- Required Parameters:
-- * label - The description that will be used to identfy the control.
-- * name - The name of the attribute to put and pull the result from.
-- Equates to the NAME parameter of the HTML tag INPUT.
-- * trueLabel
-- * falseLabel
-- Optional Parameters:
-- * labelposition - determines were the label will be place in relation
-- to the control. Default is to the left of the control.
-- * disabledTrue - DISABLED parameter of the HTML INPUT tag.
-- * tabindexTrue - tabindex parameter of the HTML INPUT tag.
-- * onchangeTrue - onkeyup parameter of the HTML INPUT tag.
-- * checkRadio - determine which radio option is checked by default
--
--%>
<%@ taglib uri="webwork" prefix="webwork" %>
<%@ include file="/template/standard/controlheader.jsp" %>
"
value="true"
id="_true"
disabled="disabled"tabindex=""onclick=""
checked="checked"
/>
_true">
On
"
value="false"
id="_false"
disabled="disabled"tabindex=""onclick=""
checked="checked"
/>
_false">
Off
<%@ include file="/template/standard/controlfooter.jsp" %>