Example #1
0
File: Grid.cs Project: g992com/esb
 protected virtual void OnSort(GridSortEventArgs e)
 {
     EventHandler<GridSortEventArgs> handler = Events[_sortHandlerKey] as EventHandler<GridSortEventArgs>;
     if (handler != null)
     {
         handler(this, e);
     }
 }
Example #2
0
 protected void Grid1_Sort(object sender, ExtAspNet.GridSortEventArgs e)
 {
     BindGridWithSort(e.SortField, e.SortDirection);
 }