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
870
How to have group by row footer summaries but no summary at the end of the grid?
posted

I am trying to configure summaries such that they only exist for when the grid is grouped.  I do not want a summary row at the end of the grid.  I believe I have tried every combination of the SummaryDisplayArea property for a summary as well as on the displaylayout.override as well.  I either always get a summary at the end, get no summaries.

Any help would be appreciated.

Thanks,

Dana

Parents
No Data
Reply
  • 6120
    Offline posted

    Hi Dana, 

    You can use AfterSortChange event, inside it you can use IsGroupByColumn property of a column and check  if it’s a grouped column ,if it is then you can display summaries or hide them as per your requirement by setting the SummaryDisplayAreas to None. Attached is a sample that demonstrates this for you. If you have any questions feel free to contact me.

    Sincerely,

    Sahaja Kokkalagadda

    SummariesDisplaySampleApp.zip
Children