ASP.NET MVC FlexGrid 101表头固定是哪个属性
本帖最后由 zhangsan 于 2021-2-3 15:45 编辑ASP.NET MVC FlexGrid 101表头固定是哪个属性
默认本身就是有1行的固定行作为表头,你如果要设为多行的话,可以参考下面的代码用HeaderTemplate设置
.HeaderTemplate(builder =>
{
builder.RowCount(2);
builder.Cells(c =>
{
c.Set(0, 0, 2, 1, "Name");
c.Set(0, 1, 2, 1, "Currency");
c.Set(0, 2, 1, 4, "Performance");
c.Set(0, 6, 1, 4, "Allocation");
});
})
页:
[1]