コード例 #1
0
 protected void Sort(SortInformation <TItem> sortInformation)
 {
     currentSort = sortInformation;
     paginationControls.GoToPage(1);
 }
コード例 #2
0
 public bool Equals(SortInformation <TItem> other)
 {
     return(Key == other.Key && Type == other.Type);
 }
コード例 #3
0
 protected void Sort(ChangeEventArgs e)
 {
     currentSort = new SortInformation <TItem>((string)e.Value);
     paginationControls.GoToPage(1);
 }