Advertisement

10.17.2007 at 11:48AM PDT, ID: 22899905
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

ASP.NET c# gridview SortExpression SortDirection w/ manually binding data

Tags: gridview, sortexpression
Gridview properties SortExpression and SortDirection not maintaining values when using paging...

1) I am manually binding to a MySQL database
2) Therefore I am manually handling the firing of the Paging and the Sorting events in codebehind.
3) I do a sort on Column.  It sorts fine...
4) I click on say Page 4.. The sorting is completely lost but goes to page 4 of the default sorting (as if the page was loaded the first time and no sort was indicated)

I don't understand why the gridview maintains the PageIndex Value and not the SortExpression and SortDirection values when posting back...For example, if I click on Page 4 and then click a new column to sort.  The GridView.pageIndex holds it value.

But if I click on a column header for sorting and then click on page 4.  The gridview.sortdirection and gridview.sortexpression are reset....

ASPX
[code]
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server" />
        <asp:UpdatePanel ID="upEmployeeList" runat="server" UpdateMode="conditional" EnableViewState="true">
            <ContentTemplate>
            <asp:GridView cellpadding=5 ID="gvEmployeeList" runat="server"
                AutoGenerateColumns="false" PageSize="20" AllowSorting="true" AllowPaging="true"
                OnPageIndexChanging="gvEmployeeList_PageIndexChanging"
                OnSorting="gvEmployeeList_Sorting"
                OnRowCommand="gvEmployeeList_RowCommand"
                EnableViewState="true"
            >
                <Columns>
                    <asp:BoundField DataField="EmpId" HeaderText="Emp ID" SortExpression="EmpId" ReadOnly="true" />
                    <asp:BoundField DataField="Last_Name" HeaderText="Last Name" SortExpression="Last_Name" ReadOnly="true" />
                    <asp:BoundField DataField="First_Name" HeaderText="First Name" SortExpression="First_Name" ReadOnly="true" />
                    <asp:BoundField DataField="Manager" HeaderText="Manager" SortExpression="Manager" ReadOnly="true" />
                    <asp:BoundField DataField="Division" HeaderText="Division" SortExpression="Division" ReadOnly="true" />
                    <asp:BoundField DataField="Department" HeaderText="Department" SortExpression="Department" ReadOnly="true" />
                    <asp:BoundField DataField="Floor" HeaderText="Floor" SortExpression="Floor" ReadOnly="true" />
                    <asp:ButtonField ImageUrl="~/admin/images/grid_edit.gif" CommandName="edit" ButtonType="Image" />
                    <asp:ButtonField ImageUrl="~/admin/images/grid_delete.gif" CommandName="delete" ButtonType="Image" />
                </Columns>
                <HeaderStyle CssClass="gridHeader"  />
                <RowStyle BackColor="#E7E7FF" ForeColor="#4A3C8C" HorizontalAlign="Left" VerticalAlign="Middle" />
                <SelectedRowStyle BackColor="#738A9C" Font-Bold="True" ForeColor="#F7F7F7" />
                <PagerStyle BackColor="#E7E7FF" ForeColor="#4A3C8C" HorizontalAlign="Right" />
                <AlternatingRowStyle BackColor="#F7F7F7" HorizontalAlign="Left" VerticalAlign="Middle" />
            </asp:GridView>            
        </ContentTemplate>
[/code]
c# file
[code]
    private string sSortDirection="ASC";
    private string sSortExpression="EmpId";

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            gvEmployeeList.DataSource = ds_gvEmployeeList();
            gvEmployeeList.DataBind();
        }
    }
    protected DataSet ds_gvEmployeeList()
    {
        string sSQL = "SELECT a.*,  CONCAT(b.Last_Name,', ',b.First_Name) as Manager, d.NAME as Division, c.NAME as Department ";
        sSQL = sSQL + " from employee a ";
        sSQL = sSQL + " LEFT JOIN Employee b ON a.MGRID=b.EmpID ";
        sSQL = sSQL + " LEFT JOIN Department c ON a.DEPTID=c.DEPTID ";
        sSQL = sSQL + " LEFT JOIN Division d ON a.DVSNID=d.DVSNID ";
        sSQL = sSQL + " ORDER BY " + sSortExpression + " " + sSortDirection;

        DataSet dsTemp = new DataSet();
        using (OleDbDataAdapter da_gvEmployeeList = new OleDbDataAdapter(sSQL, sConnect)){
            da_gvEmployeeList.Fill(dsTemp, "EmployeeList");
        }
        return dsTemp;
    }
    protected void gvEmployeeList_PageIndexChanging(Object sender, GridViewPageEventArgs e)
    {
        gvEmployeeList.PageIndex = e.NewPageIndex;
        gvEmployeeList.DataSource = ds_gvEmployeeList();
        gvEmployeeList.DataBind();
    }
    private string GetSortDirection(string sSortDirection){
        switch (sSortDirection)
        {
            case "ASC":
                return "DESC";
            case "DESC":
                return "ASC";
            default:
                return "ASC";
        }
    }
    protected void gvEmployeeList_Sorting(Object sender, GridViewSortEventArgs e)
    {
        sSortDirection = GetSortDirection(e.SortDirection.ToString());
        sSortExpression = e.SortExpression;
        gvEmployeeList.DataSource = ds_gvEmployeeList();
        gvEmployeeList.DataBind();
    }

any help is greatly appreciated!

Yours in deepest gratitude,

Angela Law


Start your free trial to view this solution
Question Stats
Zone: Programming
Question Asked By: angelalaw
Solution Provided By: TheLearnedOne
Participating Experts: 2
Solution Grade: A
Views: 566
Translate:
Loading Advertisement...
10.17.2007 at 11:54AM PDT, ID: 20095983

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
10.17.2007 at 01:20PM PDT, ID: 20096708

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
10.17.2007 at 01:22PM PDT, ID: 20096730

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
10.17.2007 at 01:24PM PDT, ID: 20096750

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
10.17.2007 at 01:25PM PDT, ID: 20096762

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
10.17.2007 at 01:26PM PDT, ID: 20096773

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29 / EE_QW_1_20070628