Field-Attribute

Description

Field-Attribute indicates the selection style used for Binary/Trinary fields.

Parameters

Name Type Description
ATTRIBUTES-NOT-DEFINED string Used when the selection mode is not defined.
BINARY-ATTRIBUTE-LISTBOX string Indicates that the field uses a list box.
BINARY-ATTRIBUTE-RADIOBUTTON string Indicates that the field uses radio buttons.
BINARY-ATTRIBUTE-CHECKBOX string Indicates that the field uses check boxes.
BINARY-ATTRIBUTE-TRINARY string Indicates that the field uses a third value.

Usage

The Field-Attribute helps identify the selection mode for a Binary/Trinary field that is returned in the FieldSelectionHolder response. For more information, see FieldSelectionsHolder.

XML

The following XML shows Field-Attribute in the <ae:attribute> element as seen in the GetFieldSelectionsResponse.

<ae:GetFieldSelectionsResponse>
   <ae:return>
      <ae:field xsi:type="ae:FieldIdentifier">
         <ae:displayName>Active/Inactive</ae:displayName>
         <ae:id>80</ae:id>
         <ae:uuid>e90174d9-76fa-4ac2-b2bd-13944626c685</ae:uuid>
         <ae:dbName>ACTIVEINACTIVE</ae:dbName>
      </ae:field>
      <ae:type>BINARY-SELECTION</ae:type>
      <ae:attribute>BINARY-ATTRIBUTE-LISTBOX</ae:attribute>
      <ae:option>
         <ae:id>
            <ae:displayName>Active</ae:displayName>
            <ae:id>0</ae:id>
         </ae:id>
         <ae:orderIndex>0</ae:orderIndex>
      </ae:option>
      <ae:option>
         <ae:id>
            <ae:displayName>Inactive</ae:displayName>
            <ae:id>1</ae:id>
         </ae:id>
         <ae:orderIndex>1</ae:orderIndex>
      </ae:option>
   </ae:return>