在 Telerik radgrid 中将列数据显示为标题
I have a table in dataset like: ------------------- id class name sub ------------------------ 1 mca aditya network 2 mca abhishek daa 3 mca akhilesh algorithm 4 btech ram cs 5 btech shyam ds 6 btech anand client/server 7 mba furqan os 8 mba arvind marketing 9 mba aayush hr I want a result set in telerik rad grid like the following: ---------------- class name sub ------------------------ mca aditya network abhishek daa akhilesh algorithm btech ram cs shyam ds anand client/server mba furqan os arvind marketing aayush hr
I have a table in dataset like: ------------------- id class name sub ------------------------ 1 mca aditya network 2 mca abhishek daa 3 mca akhilesh algorithm 4 btech ram cs 5 btech shyam ds 6 btech anand client/server 7 mba furqan os 8 mba arvind marketing 9 mba aayush hr I want a result set in telerik rad grid like the following: ---------------- class name sub ------------------------ mca aditya network abhishek daa akhilesh algorithm btech ram cs shyam ds anand client/server mba furqan os arvind marketing aayush hr
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
John DeVight 为 Telerik MVC 网格编写了扩展 。他有一个名为 hideGroupColumns 的函数,可以隐藏分组的列。语法如下所示:
Telerik 社区论坛有 对此扩展的一些讨论。
John DeVight has written an extension to the Telerik MVC grid. He has a function called hideGroupColumns that hides columns that are grouped. The syntax looks like this:
The Telerik community forums has some discussion of this extension.