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

[Solved] aggregate not show vlaue after load setting

4 Answers 211 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
jerome
Top achievements
Rank 1
jerome asked on 03 Nov 2010, 10:00 AM
hi,
aggregate not show value after load setting.
use Save/LoadSettings save took group setting to cache.
that is a sum function aggregate is not show  ,after refresh silverlight page load group settign

but whether manual drag group that sum function is ok.


thanks

4 Answers, 1 is accepted

Sort by
0
Maya
Telerik team
answered on 03 Nov 2010, 10:20 AM
Hello jerome,

Following up the example on the Save & Load RadGridView Layout, you need to add a property inside the GroupSetting class keeping the information for the AggregateFunctions:

public class GroupSetting : PropertySetting
    {
        AggregateFunctionCollection aggregateFunctions;
        public AggregateFunctionCollection AggregateFunctions
        {
            get
            {
                return aggregateFunctions;
            }
            set
            {
                aggregateFunctions = value;
            }
        }
}

And then in the Save and Load methods follow the pattern for the other properties.
 

Greetings,
Maya
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
0
jerome
Top achievements
Rank 1
answered on 04 Nov 2010, 02:39 AM
hello,
thank your reply.
According to the above steps completed.
but this issue keep.

please see in the attached file,

0
jerome
Top achievements
Rank 1
answered on 04 Nov 2010, 04:49 AM
OH, sorry,
this GroupDescriptor not add member value,

thanks
0
Maya
Telerik team
answered on 04 Nov 2010, 08:29 AM
Hi jerome,

Should I consider that you have managed to solve the problem you encountered ?
 

Kind regards,
Maya
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
jerome
Top achievements
Rank 1
Answers by
Maya
Telerik team
jerome
Top achievements
Rank 1
Share this question
or