Hi, why this, doesnt works?, i have 3 columns, with fieldName and uniquename corresponding to each gridviewsummaryitem. (Bets and Wins are decimal type, and Fecha is DateTime with FormatString = "{0:d}")
Im using the version: 2010.1.10.218.
private void radButton1_Click(object sender, EventArgs e)
Im using the version: 2010.1.10.218.
private void radButton1_Click(object sender, EventArgs e)
{
radGridView1.DataSource =
new ManageGeneralAgent().GetGeneralBalance().ToList();
}
public
frmReports()
{
GridViewSummaryRowItem
summaryRow = new GridViewSummaryRowItem();
summaryRow.Add(
new GridViewSummaryItem("Fecha", "", GridAggregateFunction.None));
summaryRow.Add(
new GridViewSummaryItem("Bets", "Total : {0}", GridAggregateFunction.Count));
summaryRow.Add(
new GridViewSummaryItem("Wins", "Total : {0}", GridAggregateFunction.Sum));
radGridView1.MasterGridViewTemplate.SummaryRowsBottom.Add(summaryRow);
}