快速格式化gridview中的所有列
我有一个包含很多列的 gridview,我希望它们以相同的方式格式化(简单的东西,比如 ItemStyle="solid")。
有没有一种快速方法可以将相同的项目样式等应用于网格视图中的所有列?
谢谢你!
I have a gridview with a lot of columns, and I wanted them formatted the same way (easy stuff, like ItemStyle="solid").
Is there a quick way to apply the same itemstyle, etc. to all columns in a gridview?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
网格使用表格元素。数据字段是 td,页眉和页脚是 th。因此,您可以使用表格元素定义一个 CSS 类并调用 CSS 类。或者,您可以使用 Gridview 的 ItemStyle 和 AlternatingItemStyle 属性。
The Grid uses Table elements. Datafields are td and headers and footers are th. So you can define a css class with the table elements and call the CSS Class. Alternately you can use the ItemStyle and AlternatingItemStyle properties of the Gridview.