更改列的顺序
我正在使用网格视图。 我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要知道数据字段(要绑定的数据项)并使用模板或绑定列来完成此操作,例如:
自动生成列网格
手动生成列网格
您可以使用一个 BoundField 或 TemplateField,使用模板您可以做更多的事情,创建一个下拉列表而不是标签等......在 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
a manually generate column grid
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.