1.如果让分组项一开始就以某个列分组,并且展开。
protected void UltraWebGrid1_InitializeLayout(object sender, LayoutEventArgs e)
{
{
//控制分组
this.UltraWebGrid1.Columns.FromKey("工作总结项目").IsGroupByColumn = true;
}
}
protected void UltraWebGrid1_PreRender(object sender, EventArgs e)
{
//控制展开 (注意,必须在这个事件里,别的事件不行!)
this.UltraWebGrid1.ExpandAll(true);
}
{
//控制展开 (注意,必须在这个事件里,别的事件不行!)
this.UltraWebGrid1.ExpandAll(true);
}
2.超级链接列使用,先设置列类型为超级连接列,然后在UltraWebGrid1_InitializeRow事件里写:
e.Row.Cells.FromKey("详细
").TargetURL = "@[_blank]" + "../BussModule/WorkSum/Detail.aspx?ID=" + code;