Site Map | About Us | Contact Us  
 The same content in Microsoft HTML help file format is included in the download package.

Grid.ColumnSort Event

Occurs when user clicked on a sortable column when the Grid is running in Server running mode or Callback running mode.

[Visual Basic]
Public Event ColumnSort As GridColumnEventHandler
[C#]
public event GridColumnEventHandler ColumnSort;

Event Data

The event handler receives an argument of type GridColumnEventArgs containing data related to this event. The following GridColumnEventArgs property provides information specific to this event.

Property Description
Column Gets the GridColumn thas is associated with this event.

Remarks

This event is not fired when the Grid is running on Client running mode. On client running mode, the Grid performs sorting on the client side.

See sorting on for sample code on how to handle this event.

See Also

Grid Class | EO.Web Namespace


Direct link to this topic