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