1:
In Q2 2010 there is no Method like EvaluateAggregate in SummaryItem. I need this method to implement SummaryAggregates like Sum / 4.0.
How can i implement this feature in Q2 ?
2:
Now i see ColumnIndexChanging is obsolete. I need column reordering only for columns with index > 3 for Example. How do i implement this now? --> Solved: Using Columns.CollectionChanging
Edit:
CollectionChanging/Changed solved not the problem. These events are fired 2 times for 1 column reordering (remove and add). in these events i dont see the new or the old index at the same time. Any solutions?
3:
How do i pin a SummaryItem?
4:
GridViewSummaryItem is not working anymore.
Example:
GridViewDataColumn column = new GridViewDecimalColumn("880", "880");
column.FormatString = "{0:N2}";
GridViewSummaryItem summaryItem = new GridViewSummaryItem(column.UniqueName, column.FormatString, GridAggregateFunction.Sum);
this.summaryRow.Add(summaryItem);
The Summary with 96 rows is 96 * 880. Min or Max is 880.
What is wrong here?
In Q2 2010 there is no Method like EvaluateAggregate in SummaryItem. I need this method to implement SummaryAggregates like Sum / 4.0.
How can i implement this feature in Q2 ?
2:
Now i see ColumnIndexChanging is obsolete. I need column reordering only for columns with index > 3 for Example. How do i implement this now? --> Solved: Using Columns.CollectionChanging
Edit:
CollectionChanging/Changed solved not the problem. These events are fired 2 times for 1 column reordering (remove and add). in these events i dont see the new or the old index at the same time. Any solutions?
3:
How do i pin a SummaryItem?
4:
GridViewSummaryItem is not working anymore.
Example:
GridViewDataColumn column = new GridViewDecimalColumn("880", "880");
column.FormatString = "{0:N2}";
GridViewSummaryItem summaryItem = new GridViewSummaryItem(column.UniqueName, column.FormatString, GridAggregateFunction.Sum);
this.summaryRow.Add(summaryItem);
The Summary with 96 rows is 96 * 880. Min or Max is 880.
What is wrong here?