Version

applySortIndicator Method

Could be used only for client-side sorting when EnableClientRendering property is set to true. This method will display the correct sort indicator for the given column, depending on the value of the sortDirection.
Syntax
ASP.NET Ajax Javascript (Specification) 
function applySortIndicator( 
   column : GridColumn,
   sortDirection : Numer
) : (Any);
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfSorting.applySortIndicator(GridColumn,Numer);

Parameters

column
The column to apply the sort indicator to.
sortDirection
Sort direction- 0 - None, 1 - Ascending, 2 - Descending.
See Also