This is a migrated thread and some comments may be shown as answers.

Summary doesnt works

1 Answer 96 Views
GridView
This is a migrated thread and some comments may be shown as answers.
dennis
Top achievements
Rank 1
dennis asked on 20 Apr 2010, 12:29 AM
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)

{

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);
}

1 Answer, 1 is accepted

Sort by
0
Jack
Telerik team
answered on 20 Apr 2010, 04:54 PM
Hi dennis,

Version 2010.1.10.218 was a beta release and this was a known issue. It is addressed in our latest release - Q1 2010 SP1 and I recommend that you try this version. We will appreciate your feedback about it.

Sincerely yours,
Jack
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
dennis
Top achievements
Rank 1
Answers by
Jack
Telerik team
Share this question
or