ui:inputSelectOption

An HTML option element that is nested in a ui:inputSelect component. Denotes the available options in the list.

Attributes

Attribute Name Attribute Type Description Required?
body Component[] The body of the component. In markup, this is everything in the body of the tag.
class String A CSS style to be attached to the component. This style is added in addition to base styles output by the component.
disabled Boolean Specifies whether the component should be displayed in a disabled state. Default value is "false".
label String The text displayed on the component.
name String The name of the component.
text String The input value attribute.
value Boolean Indicates whether the status of the option is selected. Default value is “false”.

Events

Event Name Event Type Description
select COMPONENT The event fired when the user selects some text.
mouseover COMPONENT The event fired when the user moves the mouse pointer over the component.
mousemove COMPONENT The event fired when the user moves the mouse pointer over the component.
blur COMPONENT The event fired when the user moves off from the component.
focus COMPONENT The event fired when the user focuses on the component.
keypress COMPONENT The event fired when the user presses or holds down a keyboard key on the component.
keyup COMPONENT The event fired when the user releases a keyboard key on the component.
keydown COMPONENT The event fired when the user presses a keyboard key on the component.
click COMPONENT The event fired when the user clicks on the component.
dblclick COMPONENT The event fired when the user double-clicks the component.
mouseout COMPONENT The event fired when the user moves the mouse pointer away from the component.
mouseup COMPONENT The event fired when the user releases the mouse button over the component.
mousedown COMPONENT The event fired when the user clicks a mouse button over the component.