更改列的顺序

发布于 2024-07-22 12:12:49 字数 94 浏览 15 评论 0原文

我正在使用网格视图。 我有 4 个自动生成的列和 1 个由我自己生成的列。 现在首先显示我生成的列,然后显示自动生成的列。 我想先显示自动生成的列,然后显示我生成的列。

I am using gridView. I have 4 auto generated columns and 1 generated by my self. Now the column which i have generated is displayed first and then the auto generated columns.
I want to display auto generated columns first then my generated column.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神也荒唐 2024-07-29 12:12:49

为此,您需要知道数据字段(要绑定的数据项)并使用模板或绑定列来完成此操作,例如:

自动生成列网格

<asp:GridView id="gv" runat="server" AutoGenerateColumns="True">
</asp:GridView>

手动生成列网格

<asp:GridView ID="gv" runat="server" AutoGenerateColumns="false">
    <Columns>
        <asp:BoundField HeaderText="My First Column" DataField="myField1" />
        <asp:BoundField HeaderText="My Second Column" DataField="myField2" />
        <asp:BoundField HeaderText="My Third Column" DataField="myField3" />

        <asp:TemplateField HeaderText="My Fourth Column">
            <ItemTemplate>
                <asp:Label ID="lbl" runat="server" Text='<%# Eval("myField4") %>' />
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>

您可以使用一个 BoundFieldTemplateField,使用模板您可以做更多的事情,创建一个下拉列表而不是标签等......在 BoundField 中,输出将始终是标签,并且您只能使用 .NET 术语来格式化字符串值,例如 {0:d}

您有更多预定义模板可供使用,例如复选框、按钮、超链接、命令和图像。

for that you need to know the datafield (data item that you want to bound) and use either template or boundcolumns to accomplish that, like:

an auto generate column grid

<asp:GridView id="gv" runat="server" AutoGenerateColumns="True">
</asp:GridView>

a manually generate column grid

<asp:GridView ID="gv" runat="server" AutoGenerateColumns="false">
    <Columns>
        <asp:BoundField HeaderText="My First Column" DataField="myField1" />
        <asp:BoundField HeaderText="My Second Column" DataField="myField2" />
        <asp:BoundField HeaderText="My Third Column" DataField="myField3" />

        <asp:TemplateField HeaderText="My Fourth Column">
            <ItemTemplate>
                <asp:Label ID="lbl" runat="server" Text='<%# Eval("myField4") %>' />
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>

You can use either a BoundField or a TemplateField, with the template you can do much more, create a dropdown instead of a Label, etc... in a BoundField the output will always be a Label and you can only format the string value using the .NET nomenclature like {0:d}

You have more pre-defined templates to use such as Checkbox, Button, Hyperlink, Command and Image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文