我有一个基于用户查询动态生成列的 GridView。这意味着有时我可以有 1 列具有 xxx 列名,或者我最多可以有 4 列。
所以: () 表示可选
AAA | (BBB) | (CCC) | (DDD)
1 7 45 2
22 9 6 33
... ... ... ...
我需要总结每一列的总数,而不知道在程序运行之前哪些列可用。
我正在尝试使用 GridView_RowDataBound 事件的 e.Row.RowType == DataControlRowType.Footer 部分,但我似乎无法弄清楚如何让它工作。
我通过事件的 e.Row.RowType == DataControlRowType.DataRow 部分将运行总计保存在变量中,但我似乎无法弄清楚如何将保存的项目“注入”到基于网格的页脚可用的列。
谁能给我一点帮助?
编辑
Gridview 使用基本标记完成,因为列是动态构建的。
<asp:GridView ID="gv" runat="server" ShowFooter="true" nRowDataBound="gv_RowDataBound">
</asp:GridView>
然后是列的代码:
private void BindGrid()
{
DataTable dt = new DataTable();
var stt = from t in edcQuery.ToList()
where t.Technician.TeamId == 1
orderby t.RequestType.Name
select new
{
RequestType = t.RequestType.Name,
Tech = t.Technician.Name,
};
dt.Columns.Add("Support Ticket Type");
DataRow dr;
foreach (var col in stt.OrderBy(x => x.Tech).GroupBy(x => x.Tech))
{
dt.Columns.Add(col.Key.Substring(0, col.Key.IndexOf(' ')).Trim());
}
foreach (var type in stt.GroupBy(x => x.RequestType))
{
dr = dt.NewRow();
dr["Support Ticket Type"] = type.Key;
foreach (var tech in type.GroupBy(x => x.Tech))
{
dr[tech.Key.Substring(0, tech.Key.IndexOf(' ')).Trim()] = (object)tech.Count() == System.DBNull.Value ? 0 : tech.Count();
}
dt.Rows.Add(dr);
}
//gvEDCSupportTicketType.FooterRow.Cells[2].Text = "0";
gvEDCSupportTicketType.DataSource = dt;
gvEDCSupportTicketType.DataBind();
}
double atot = 0.0;
double btot = 0.0;
double ctot = 0.0;
double dtot = 0.0;
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
var dataRow = (DataRowView)e.Row.DataItem;
string[] columnNames = { "AAA", "BBB", "CCC", "DDD" };
foreach (var item in columnNames)
{
var checkName = dataRow.Row.Table.Columns.Cast<DataColumn>().Any(x => x.ColumnName.Equals(item, StringComparison.InvariantCultureIgnoreCase));
if (checkName)
{
if (DataBinder.Eval(e.Row.DataItem, item) != DBNull.Value && Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, item)) != 0)
{
switch (item)
{
case "AAA":
atot += Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, item));
break;
case "BBB":
btot += Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, item));
break;
case "CCC":
ctot += Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, item));
break;
case "DDD":
dtot += Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, item));
break;
}
}
}
}
}
else if (e.Row.RowType == DataControlRowType.Footer)
{
e.Row.Cells[0].Text = "Totals:";
e.Row.Cells[0].Attributes.Add("style", "text-align: right;");
}
}
如您所见,它从数据表构建网格,并且仅使用运行时所需的列。没有静态的 FooterTemplate 或任何东西。