将DetailsView 行分组在一起?
如果我有一个包含许多行的详细信息视图,是否可以将某些行“分组”在一起? IE。使用 div 和一些标签或诸如此类的东西将它们与其余行分开。我尝试这样做,但无法在模板项之间添加 asp 标签。唯一的方法是创建多个DetailsView 吗?
谢谢
If i have a DetailsView with many rows, is it possible to "Group" some of the rows together? Ie. make them seperated from the rest of the rows by using a div and some labels or whatnot. I tried to do this but you cant add asp tags between template items. Is the only way to do this is by creating multiple DetailsView?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我用DetailsView解决类似问题的方法
(css 样式取自 Bootstrap)
技巧是插入一个空模板字段,其中标题和控件具有相同的背景颜色来模拟空行。您可以将文本/标签放在 HeaderText 内或 ItemTemplate 内或两者内。
This is what I did to solve similar problem with DetailsView
(css styles taken from Bootstrap)
The trick is insert an empty template field with header and control having same background color to simulate empty row. You can put text/labels inside HeaderText or inside ItemTemplate or both.