0

並べ替える必要がある 2 つの列を持つこのグリッド ビューがあります。

問題は、データを gridview データ ソースにバインドするクラスのリストを取得していることです。グリッド列をクリックすると、並べ替え式が発生しますが、データ ソースは null です。どうすればこれを達成できますか。

マークアップ:

<asp:GridView ID="grdDelegateList" runat="server" CssClass="gridviewBorder" AutoGenerateColumns="False" AllowSorting="true"
                    EmptyDataText="There are no delegates assigned for this bridge." CellPadding="2"
                    Style="margin-left: 0px" BackColor="White" Font-Names="Calibri" BorderWidth="1px"
                    Width="100%" AllowPaging="True" GridLines="Horizontal" RowHoverBackColor="#666666"
                    RowHoverForeColor="White" SelectedRowStyle-BackColor="#333333" SelectedRowStyle-ForeColor="White"
                    PageSize="20" OnPageIndexChanging="grdDelegateList_PageIndexChanging" OnRowCommand="grdDelegateList_RowCommand"
                    OnRowDataBound="grdDelegateList_RowDataBound" 
                    OnRowDeleting="grdDelegateList_RowDeleting" onsorting="grdDelegateList_Sorting">
                    <Columns>
                        <asp:BoundField HeaderText="Employee ID" DataField="DelegateID" ItemStyle-HorizontalAlign="Center" SortExpression="DelegateID"
                            HeaderStyle-HorizontalAlign="Center" />
                        <asp:BoundField HeaderText="Display Name" DataField="FullName" ItemStyle-HorizontalAlign="Left" SortExpression="FullName"
                            HeaderStyle-HorizontalAlign="Left" />
                        <asp:TemplateField HeaderText="Remove" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">
                            <ItemTemplate>
                                <span style="cursor: pointer">
                                    <asp:LinkButton ID="ImgRemove" runat="server" CommandName="Delete" CommandArgument='<%# Eval("ID") %>'
                                        Text="Remove" OnClientClick="return confirm('Are you sure you want to remove this Delegate');">
                                        <img alt="Remove" src="Images/trash.png" style="border:0;" />
                                    </asp:LinkButton></span>
                            </ItemTemplate>
                        </asp:TemplateField>
                    </Columns>

                </asp:GridView>

ソート式イベント:

 protected void grdDelegateList_Sorting(object sender, GridViewSortEventArgs e)
        {
            DataTable table = grdDelegateList.DataSource as DataTable;//this is coming                 null

            if (table != null)
            {
                DataView dataView = new DataView(table);
                dataView.Sort = e.SortExpression + " " + ConvertSortDirection(e.SortDirection);

                grdDelegateList.DataSource = dataView;
                grdDelegateList.DataBind();
            }
        }

private string ConvertSortDirection(SortDirection sortDirection)
        {
            string newSortDirection = String.Empty;

            switch (sortDirection)
            {
                case SortDirection.Ascending:
                    newSortDirection = "ASC";
                    break;

                case SortDirection.Descending:
                    newSortDirection = "DESC";
                    break;
            }

            return newSortDirection;
        }

データソースがnullなので、データベースからデータを再度取得する必要がありますか?はいの場合、リストを取得しています。最初にリストをデータテーブルに変換するカスタムロジックを追加する必要がありますか?それとも動作しますか?リストも。助言がありますか??

4

1 に答える 1

0

現在のシナリオでは、データソースがリストでありデータテーブルではないため、null を取得しています。したがって、グリッドをバインドするときは、リストから変換されたデータテーブルを使用する方がよいでしょう。ソート ロジックの残りの部分は影響を受けません。

アップデート:

セッションでデータテーブルを保持します。セッションからデータテーブルを並べ替えた後、並べ替えイベントでグリッドを取得して再バインドします。また、更新された並べ替え式でセッション テーブルも更新することを忘れないでください。http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.sorting.aspxを参照してください

于 2013-08-12T09:58:39.500 に答える