Attributes |
Name | Required | Request-time | Type | Description |
cssClass | false | true | java.lang.String | A CSS class for styling the component. |
data | false | true | java.util.Map | Miscellaneous data to be stored via a map. For example, the HashMap<"class-name", foo> would render as the attribute data-class-name = foo; . |
disabled | false | true | boolean | Whether the component is disabled. The default value is false . |
label | false | true | java.lang.Object | Text to display as the option in the select form. |
localizeLabel | false | true | boolean | Whether to translate the label's text into the user's language. The default value is true . |
selected | false | true | boolean | Whether the option is selected when the component loads. The default value is false . |
style | false | true | java.lang.String | Styling for the option component. For example, to align the text to the right you would specify text-align:right; . |
useModelValue | false | true | boolean | No Description |
value | false | true | java.lang.Object | A value for the option. If no value is given, the value is taken from the label attribute. |