Consultor Eletrônico



Kbase P162504: How to implement column sorting in the UltraGrid
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   07/05/2010
Status: Unverified

GOAL:

How to implement column sorting in the UltraGrid

GOAL:

How to sort the rows of an UltraGrid by any column

FACT(s) (Environment):

Windows
OpenEdge 10.2x

FIX:

The capability for a user to sort rows in an UltraGrid by column can be implemented using the Infragistics.Win.UltraWinGrid.UltraGrid.DisplayLayout:Override:HeaderClickAction property. The allowable values of this property are:

Select - Do not sort, just select the column
SortSingle - Sort on a single column
SortMulti - Sort on multiple columns selected by holding down the shift key, in the order in which they are selected.
For example:

ultraGridCustomer:DisplayLayout:Override:HeaderClickAction = HeaderClickAction:SortSingle.