Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
820
igHierarchicalGrid and subtotals
posted

Hi

igHierarchicalGrid allow add subtotals, when datasource looks like this:

var data = [
{
ID: 1,
Test: "Test1",
Arr: [{ID: 1, data: "data1"}, {ID: 2, data: "data2"}, {ID: 3, data: "data3"}]
},
{
ID: 2,
Test: "Test2",

Arr: [{ID: 1, data: "data4"}, {ID: 2, data: "data5"}, {ID: 3, data: "data6"}]

}]

But igHierarchicalGrid allow us group by some property dynamically and i need add subtotals for this case. For example we have such datasource, then group by Test property. Now we have group which contains 2 records. How i can add subtotals for them?

var data = [

ID: 1, 
Test: "Test1",

},
{
ID: 2,
Test: "Test1",

}]

Regards