有没有办法“对齐” 数据重复器控件中的列?
有没有办法“对齐”数据重复器控件中的列?
IE 目前看起来像这样:
user1 - colA colB colC colD colE
user2 - colD colE
我希望它看起来像:
user1
-colA
-colB
-colC
-colD
-colE
user1
-colD
-colE
我需要每条记录的列在附加时正确对齐 记录可能没有给定列的数据。
这些要求需要中继器而不是网格控制。
有任何想法吗?
Is there a way to "align" columns in a data repeater control?
I.E currently it looks like this:
user1 - colA colB colC colD colE
user2 - colD colE
I want it to look like:
user1
-colA
-colB
-colC
-colD
-colE
user1
-colD
-colE
I need to columns for each record to align properly when additional
records might not have data for a given column.
The requirements call for a repeater and not a grid control.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您可以访问重复中缺少多少列,则只需将以下内容作为表标记即可。 如果您无权访问此内容,您可以发布数据转发器的源以及您要反对的数据源吗?
If you have access to how many columns are mising in the repeat, then just the following as the table tag. I you don't have access to this, can you post the source for your data repeater and what DataSource you're going against?
我建议您不要使用
来定义列,而是使用 CSS。
AND
这种方法可以让内容增长而不实际影响表结构。
I would suggest that instead of using
<td>
to define the columns, that you use CSS instead.AND
This approach lets the content grow without actually affecting the table structure.
这是代码。 列数将根据用于生成列表的标准而动态变化。
谢谢。
This is the code. The number of columns will be dynamic based on the criteria used to generate the list.
Thanks.