New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Display Sort Index for Multi-Column Sorting
This how to article presents a possible solution for displaying sort index of grid columns when multi-column sorting is enabled(AllowMultiColumnSorting="True").
From the code inside grid PreRender event you can see how to represent a numeric sequence of the order in which the columns are sorted.
ASP.NET
<telerik:RadGrid RenderMode="Lightweight" runat="server" ID="RadGrid1" OnNeedDataSource="RadGrid1_NeedDataSource" AllowPaging="true"
OnPreRender="RadGrid1_PreRender" MasterTableView-AllowMultiColumnSorting="true"
AllowSorting="true">
</telerik:RadGrid>