具有动态列数的中继器

发布于 2024-12-15 11:04:46 字数 334 浏览 2 评论 0原文

具有动态列的中继器。

我必须根据设置显示列。有时我想显示姓名、年龄、性别、薪水。所以存储过程会返回

Name  Age  Sex  Salary
-----------------------
 Rauf  23   M     10
 Amal  25   M     10

有时我只需要显示姓名和薪水。所以数据将是

Name  Salary
------------
 Rauf  10
 Amal  10

如何设计一个Repeater控件来显示这种类型的具有动态列的表?

Repeater with dynamic columns.

I have to show columns based of settings. Sometimes I want to show Name, Age, Sex, Salary. So the stored procedure will return

Name  Age  Sex  Salary
-----------------------
 Rauf  23   M     10
 Amal  25   M     10

Sometimes I need to show Name and Salary only. So the data will be

Name  Salary
------------
 Rauf  10
 Amal  10

How can I design a Repeater control to show this type of tables having dynamic columns ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对岸观火 2024-12-22 11:04:47

除非性能真的很重要,否则我会采取简单的方法并使用固定列(所有列),并设置visible=false以防您不需要它们。

Unless perfomance i really crucial, I would take the easy way and use fixed columns (all of them) and just set visible=false in case you do not need them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文