//Called when trying to sort columns on page. protected void ItemLookUp_Sorting(object sender, GridViewSortEventArgs e) { //Method calls for the binding method and creates a new Datasource for the table to be based around the requested sorting this.Binding(Base.Sorting(e)); }
protected void GridViewItem_Sorting(object sender, GridViewSortEventArgs e) { this.ItemBinding(BaseItem.Sorting(e)); //Method calls for the binding method and creates a new Datasource for the table to be based around the requested sorting }