Hi Bill Naples,
Thanks for contacting Syncfusion support.
Based on your query, you are facing group footer export issue in your Grid application. So, we have checked your attached sample found that you have used one aggregate column definition for both GroupFooter and Footer rows. So, to export the group footer and footer rows properly we suggest you use separate aggregate column definitions for GroupFooter and Footer. For your convenience, we have attached the code example, please refer them for your reference.
Code Example:
App.vue
aggregates () {
return [
{
columns: [
{
field: 'name',
type: 'Count',
footerTemplate: 'NAME FOOTER'
},{
field: 'name',
type: 'Count',
groupFooterTemplate: 'NAME GROUP FOOTER', // use separate column definitions
}
,
{
field: 'items',
type: 'Sum'
},
{
field: 'price',
type: 'Sum'
}
]
}
]
}
}, |
Please get back to us if you need further assistance.
Regards,
Ajith G.