UltraWebGrid多表头的实现
编程技术  /  houtizong 发布于 3年前   154
// All the Headers for bound columns initialize to OriginX = 0.
// Since we want them
// to appear below the added column headers
//we are going to need to move them down a level
//先把所有列头都设为第二行
foreach (Infragistics.WebUI.UltraWebGrid.UltraGridColumn
?c in UltraWebGrid1.DisplayLayout.Bands[0].Columns)
{
?c.Header.RowLayoutColumnInfo.OriginY = 1;
//纵向起始点,0为第一行,1为第二行
}
//创建一个列头对象
var ch = new
Infragistics.WebUI.UltraWebGrid.ColumnHeader(true);
ch.Caption = "表头"; ? //列头文本标题
ch.RowLayoutColumnInfo.OriginX = 1; ? //横向起始点,0为第一列,1为第二列
ch.RowLayoutColumnInfo.OriginY = 0; ? //纵向起始点,0为第一行,1为第二行
ch.RowLayoutColumnInfo.SpanX = 2; ? //设置横向跨度
e.DisplayLayout.HeaderStyleDefault.Height = Unit.Pixel(15);
e.Layout.Bands[0].HeaderLayout.Add(ch); //增加到列头集合中
//把非多表头的列,进行跨行
foreach (Infragistics.WebUI.UltraWebGrid.UltraGridColumn
c in e.Layout.Bands[0].Columns)
{
? if (c.Key != "col2_1" && c.Key != "col2_2")
?//c.Key 非多表头列的key值
? {
? ?c.Header.RowLayoutColumnInfo.OriginY = 0; //从第一行开始
? ?c.Header.RowLayoutColumnInfo.SpanY = 2; //跨2行
? ?}
}
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接