Okay, so I have it where totals get calculated on the grid and that works fine if I just have one. But I am working on a way to display multiple grids on a single page so that I can print them out like invoices (with page breaks). See image below. Now it appears that every datarow on the whole page is done before any column footers. Does anyone have and idea/ideas for this? I really appreciate it. Please see my code. Thanks!, Warren
double totalPrice = 0;
public void RowDataBound(object sender, GridRowEventArgs e)
{
if (e.Row.RowType == GridRowType.DataRow)
{
totalPrice += double.Parse(e.Row.Cells[3].Text);
}
else if (e.Row.RowType == GridRowType.ColumnFooter)
{
e.Row.Cells[2].Text = "Total:";
e.Row.Cells[3].Text = "<strong>" + totalPrice.ToString("C") + "</strong>";
totalPrice = 0;
}
}
Links: http://www.obout.com/grid/aspnet_totals.aspx http://www.obout.com/grid/ex_total.aspx http://i.stack.imgur.com/NQ14R.jpg