Applet Schema
LISTITEM Element
See Also  Send comments on this topic.
Applet Schema : LISTITEM Element

Glossary Item Box

Description

Used to define an item in a ComboBox or ListBox form control.

Diagram

LISTITEM Element

Overview

LISTITEM
Used to define an item in a ComboBox or ListBox form control.
text required xs:string
The text displayed in the combo box or list box.
value required xs:string
The value associated with the text.

Attributes

NameTypeUseDefaultFixedDescription
textxs:stringrequired  The text displayed in the combo box or list box.
valuexs:stringrequired  The value associated with the text.

Examples

Source

<xs:element name="LISTITEM" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to define an item in a ComboBox or ListBox form control.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="text" use="required" type="xs:string">
      <xs:annotation>
        <xs:documentation>The text displayed in the combo box or list box.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="value" use="required" type="xs:string">
      <xs:annotation>
        <xs:documentation>The value associated with the text.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2013 All Rights Reserved.