selectable choice |
QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
---|---|---|---|---|---|---|---|
class | xs:NMTOKENS | optional | |||||
dir | restriction of xs:token | optional | |||||
disabled | restriction of xs:token | optional | |||||
id | xs:ID | optional | |||||
label | Text | optional | |||||
lang | LanguageCode | optional | |||||
onclick | Script | optional | |||||
ondblclick | Script | optional | |||||
onkeydown | Script | optional | |||||
onkeypress | Script | optional | |||||
onkeyup | Script | optional | |||||
onmousedown | Script | optional | |||||
onmousemove | Script | optional | |||||
onmouseout | Script | optional | |||||
onmouseover | Script | optional | |||||
onmouseup | Script | optional | |||||
selected | restriction of xs:token | optional | |||||
style | StyleSheet | optional | |||||
title | Text | optional | |||||
value | optional | ||||||
xml:lang | union of(xs:language, restriction of xs:string) | optional |
|
<xs:element name="option"> <xs:annotation> <xs:documentation>selectable choice</xs:documentation> </xs:annotation> <xs:complexType mixed="true"> <xs:attributeGroup ref="attrs"/> <xs:attribute name="selected"> <xs:simpleType> <xs:restriction base="xs:token"> <xs:enumeration value="selected"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="disabled"> <xs:simpleType> <xs:restriction base="xs:token"> <xs:enumeration value="disabled"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="label" type="Text"/> <xs:attribute name="value"/> </xs:complexType> </xs:element> |