如何更改动态数据中显示列的顺序?

发布于 2024-07-13 17:27:09 字数 990 浏览 6 评论 0原文

对于我的一些动态数据元数据表,我想控制显示列的顺序。 我有一个自定义页面,并创建了一个与我的表名称相同的子目录。 我将 ListDetails.aspx 和代码文件复制到新目录。 并将 AutoGenerateColumns 更改为 false(在 Gridview 中),将 AutoGenerateRows 更改为 false(DetailsView)。它们都不起作用!请帮助我。J

最好的问候,

萨哈尔

            <Columns>
              <asp:DynamicField  DataField="DestFieldTypeDescription" />
              <asp:DynamicField  DataField="DestFieldTypeName" /> 
              <asp:DynamicField  DataField="DestFieldTypeID" />




            </Columns>
            <PagerStyle CssClass="footer" />        
            <SelectedRowStyle CssClass="selected" />
            <PagerTemplate>
                <asp:GridViewPager runat="server" />
            </PagerTemplate>
            <EmptyDataTemplate>
                There are currently no items in this table.
            </EmptyDataTemplate>
        </asp:GridView>

For some of my Dynamic Data meta data tables I would like to control the order of the displayed columns.
I have a custom page and I created a sub-directory named the same as my table. I copied the ListDetails.aspx and code file to the new directory.
And changed AutoGenerateColumns to false(in Gridview) and AutoGenerateRows to false(DetailsView. None of them worked! Please please help me. J

Best regards,

Sahar

            <Columns>
              <asp:DynamicField  DataField="DestFieldTypeDescription" />
              <asp:DynamicField  DataField="DestFieldTypeName" /> 
              <asp:DynamicField  DataField="DestFieldTypeID" />




            </Columns>
            <PagerStyle CssClass="footer" />        
            <SelectedRowStyle CssClass="selected" />
            <PagerTemplate>
                <asp:GridViewPager runat="server" />
            </PagerTemplate>
            <EmptyDataTemplate>
                There are currently no items in this table.
            </EmptyDataTemplate>
        </asp:GridView>

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

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

发布评论

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

评论(2

我为君王 2024-07-20 17:27:09

当我遇到这样的问题时,我的更改没有反映在输出中,我首先怀疑的是我编辑了错误的文件。

在 GridView 上方或下方放置一些内容,例如“Hello World”,并确认该文件正在执行。

如果该文件没有被执行,那么它的路由没有被传递到正确的文件。 如果您使用默认模板,您的路线可能位于 Global.asax 中。

When I get a problem like this where my changes are not being reflected in the output, the first thing I suspect is that I'm editing the wrong file.

Put something above or below the GridView, like "Hello World" and confirm that this file is being executed.

If the file is not getting executed, then its your route that isn't getting handed off to the right file. Your route is probably in Global.asax if your using the default template.

心舞飞扬 2024-07-20 17:27:09

确保路由到“ListDetails”视图以获取正确的操作。

或者换句话说,启用组合页面模式:
在 Global.asax.cs RegisterRoutes() 方法中取消注释这些行:

routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx")
{
    Action = PageAction.List,
    ViewName = "ListDetails",
    Model = model
});

routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx")
{
    Action = PageAction.Details,
    ViewName = "ListDetails",
    Model = model
});

Make sure that you route to the "ListDetails" View for the correct Actions.

or in other words, enable combined-page mode:
Uncomment these lines in the Global.asax.cs RegisterRoutes() method:

routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx")
{
    Action = PageAction.List,
    ViewName = "ListDetails",
    Model = model
});

routes.Add(new DynamicDataRoute("{table}/ListDetails.aspx")
{
    Action = PageAction.Details,
    ViewName = "ListDetails",
    Model = model
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文