Version

SortedFields Property

Returns the collection of FieldSortDescription objects that determine sort order and groupby status (read-only).
Syntax
'Declaration
 
Public ReadOnly Property SortedFields As FieldSortDescriptionCollection
public FieldSortDescriptionCollection SortedFields {get;}
Remarks

Refer to the Fields topic in the Developer's Guide for an explanation of fields.

Refer to the Theory of Operation topic in the Developer's Guide for an explanation of how this object is used.

Example
The following sample demonstrates using the GroupByMode to provide automatic Outlook style grouping for a DateTime field. In addition, the sample also initializes the grid so that it is grouped by the Value field when the application starts. To do this, a FieldSortDescription is added to the SortedFields collection of the FieldLayout. The FieldSortDescription identifies the Name of the field to sort as well as the sort direction and that this field should be grouped by as well.
<igDP:XamDataGrid>
    
<igDP:XamDataGrid.FieldLayouts>

        
<igDP:FieldLayout>
            
<igDP:FieldLayout.Fields>

                
<igDP:Field Name="Value">

                    
<igDP:Field.Settings>
                        
<igDP:FieldSettings GroupByMode="OutlookDate" />
                    
</igDP:Field.Settings>

                
</igDP:Field>

            
</igDP:FieldLayout.Fields>

            
<igDP:FieldLayout.SortedFields>
                
<igDP:FieldSortDescription IsGroupBy="True" Direction="Descending" FieldName="Value"/>
            
</igDP:FieldLayout.SortedFields>

        
</igDP:FieldLayout>

    
</igDP:XamDataGrid.FieldLayouts>

    
<sys:DateTime>2010/7/1</sys:DateTime>
    
<sys:DateTime>2010/1/1</sys:DateTime>
    
<sys:DateTime>2005/7/1</sys:DateTime>
    
<sys:DateTime>2005/1/1</sys:DateTime>
</igDP:XamDataGrid>
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also