noSort Attribute

Applies To: Windows Server 2008

The noSort attribute is a Boolean value. If true, display the suggested values in the defined order of the suggestion elements; otherwise, sort the suggested values in alphabetical or numerical order.

Syntax

noSort="<true|false>"

where

true represents display the suggested values in the defined order of the suggestion elements.

false represents display in alphabetical or numerical order.

Remarks

The noSort attribute is an optional attribute, false by default.

Examples

This XML fragment specifies a comboBox element that will display the list of suggestions in elemental order.

        <comboBox refId="Sample_ComboBox_Filename" noSort="true" >
          <label>Sample Executable File Name</label>
          <default>None</default>
          <suggestion>Filename A</suggestion>
          <suggestion>Filename B</suggestion>
          <suggestion>EXECUTABLE.EXE</suggestion>
        </comboBox>

Additional references

comboBox Element

dropdownList Element