如何在 GridView 中显示标题但没有结果
使用 LINQDataSource 时,在未获取任何记录的 GridView 上仍然显示列标题的最佳方法是什么?
What is the best way to still show column headings on a GridView that doesn't get any records when using LINQDataSource?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Matt Berseth 有一篇文章,其中他对 GridView 进行了子类化并实现了此行为。
Matt Berseth has an article in which he subclasses GridView and implements this behavior.
我能想到的最简单的方法就是在 EmptyDataTemplate 中伪造它。
除此之外,您可以添加一个新的标题行 DataBound 事件之一。
The easiest way I can think of off the top of my head would be to fake it in the EmptyDataTemplate.
Past that you could add a new header row one of the DataBound events.