如何更改动态数据中显示列的顺序?
对于我的一些动态数据元数据表,我想控制显示列的顺序。 我有一个自定义页面,并创建了一个与我的表名称相同的子目录。 我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当我遇到这样的问题时,我的更改没有反映在输出中,我首先怀疑的是我编辑了错误的文件。
在 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.
确保路由到“ListDetails”视图以获取正确的操作。
或者换句话说,启用组合页面模式:
在 Global.asax.cs RegisterRoutes() 方法中取消注释这些行:
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: