如何根据嵌入式中继器中的字段对 DataGrid 列进行排序?

发布于 2025-01-06 16:55:19 字数 1196 浏览 1 评论 0原文

我有一个 DataGrid,其中有一列从 DataGrid 的 ItemDataBound 事件期间填充的中继器派生其内容。我需要能够根据中继器中的值对 DataGrid 行进行排序。下面是 DataGrid 的简化示例:

<DataGrid id="dgResults" Runat="server" AllowSorting="true">
    <Columns>
        <asp:boundcolumn HeaderText="ID" datafield="group_id" Visible="False" />
        <asp:BoundColumn HeaderText="Group" DataField="group_name" SortExpression="group_name" />
        <asp:TemplateColumn SortExpression="meeting_start_time">
            <HeaderTemplate>
                <asp:LinkButton CommandName="Sort" Text="Time" CausesValidation="False" runat="server" />
            </HeaderTemplate>
            <ItemTemplate>
                <asp:Repeater ID="Schedule_Repeater" runat="server">
                    <ItemTemplate>
                        <%# Eval("meeting_start_time", "{0:t}")%>
                    </ItemTemplate>
                </asp:Repeater>
            </ItemTemplate>
        </asp:TemplateColumn>
    </Columns>
</DataGrid>

如您所见,第三列包含会议开始时间,其值通过中继器显示。

如何告诉 DataGrid 按中继器中的 meeting_start_time 值对“时间”列进行排序?

I have a DataGrid which has one column that derives its contents from a Repeater that is populated during the DataGrid's ItemDataBound event. I need to be able to sort the DataGrid rows based on the value in the Repeater. Here is a shortened sample of the DataGrid:

<DataGrid id="dgResults" Runat="server" AllowSorting="true">
    <Columns>
        <asp:boundcolumn HeaderText="ID" datafield="group_id" Visible="False" />
        <asp:BoundColumn HeaderText="Group" DataField="group_name" SortExpression="group_name" />
        <asp:TemplateColumn SortExpression="meeting_start_time">
            <HeaderTemplate>
                <asp:LinkButton CommandName="Sort" Text="Time" CausesValidation="False" runat="server" />
            </HeaderTemplate>
            <ItemTemplate>
                <asp:Repeater ID="Schedule_Repeater" runat="server">
                    <ItemTemplate>
                        <%# Eval("meeting_start_time", "{0:t}")%>
                    </ItemTemplate>
                </asp:Repeater>
            </ItemTemplate>
        </asp:TemplateColumn>
    </Columns>
</DataGrid>

As you can see, the third column contains the meeting_start_time, whose value is displayed via a Repeater.

How do I tell the DataGrid to sort the "Time" column by the meeting_start_time values in the Repeater?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文