|
Name
|
Type
|
Supports EL?
|
Description
|
|
accessKey
|
char
|
Yes
|
Character used to gain quick access to this checkbox.
For accessibility reasons, this functionality is not supported in
screen reader mode.
If the same access key appears in multiple locations in the
same page of
output, the rendering user agent will cycle
among the elements accessed by the similar keys.
This attribute is sometimes referred to as the "mnemonic".
The character specified by this attribute
must
exist in the
text
attribute of this selectBooleanCheckbox instance.
If it does not, the user will receive no visual indication of
the existence of the accessKey.
|
|
attributeChangeListener
|
javax.faces.el.MethodBinding
|
Only EL
|
a method reference to an attribute change listener
|
|
autoSubmit
|
boolean
|
Yes
|
If set to TRUE on a form element, the component will automatically submit
the enclosing form when an appropriate action takes place (a click, text
change, etc.).
|
|
disabled
|
boolean
|
Yes
|
whether the element is disabled.
|
|
immediate
|
boolean
|
Yes
|
whether the value is converted and validated immediately in the Apply Request Values phase, or in the Process Validators phase.
|
|
label
|
String
|
Yes
|
the label of the bean.
|
|
partialTriggers
|
String[
]
|
Yes
|
the IDs of the components that should trigger a partial update.
This component will listen on the trigger components. If one of the
trigger components receives an event that will cause it to update
in some way, this component will request to be updated too.
|
|
readOnly
|
boolean
|
Yes
|
whether the element is read-only.
|
|
required
|
boolean
|
Yes
|
whether a non-null, non-empty value must be entered. If false, validators will not be executed when the value is null or empty.
|
|
requiredMessageDe
tail
|
String
|
Yes
|
the message to be displayed, if 'required' validation fails.
Parameters:
-
{0} the label that identifies the component
|
|
selected
|
boolean
|
Yes
|
whether or not the component is
currently selected. This is a typesafe alias for the "value"
attribute.
|
|
simple
|
boolean
|
Yes
|
a boolean value that controls whether the component
provides label and message support; when set to "true", the component will
not display messaging support or the label (these attributes may be ignored: label,
labelAndAccessKey, accessKey, messageDescUrl messageTargetFrame, showRequired,
tip), and may use simpler layout primitives
|
|
text
|
String
|
Yes
|
the text value of the checkbox.
|
|
textAndAccessKey
|
String
|
Yes
|
An attribute that will simultaneously set both the "text"
and "accessKey" attributes from a single value, using
conventional ampersand ('
&
') notation.
For example, setting this attribute to "T
&
amp;ext" will
set the text to "Text" and the access key to 'e'.
|
|
validator
|
javax.faces.el.MethodBinding
|
Only EL
|
a method reference to a validator method
|
|
valign
|
String
|
Yes
|
the vertical alignment of the label and
other contents. The acceptable values are "middle", "top", and "bottom".
|
|
value
|
Object
|
Yes
|
the value of the component
|
|
valueChangeListener
|
javax.faces.el.MethodBinding
|
Only EL
|
a method reference to an value change listener
|