Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.