This example demonstrates how to implement the ShowGroupFooter event which allows hiding group footer rows at a specific group level. To specify which rows should be hidden, set the e.Visible parameter to false. The e.FooterLevel parameter specifies the grouping level at which footer visibility should be processed.
Question Comments
Added By: Stécy at: 7/7/2014 8:00:40 AM
Great solution.
Is it possible to show the footer for a collapsed level?
Added By: Svetlana (DevExpress Support) at: 7/7/2014 11:36:15 PM Hi,I have extracted your inquiry to a separate ticket . Please refer to it. Added By: Panayiotis Anastasiou at: 1/6/2016 3:19:36 AM
Thanks for your sample Dimitros. Your sample seems to be working the way we would like the gridcontrol to work, but then again you have used your own myGridControl class and a batch of other classes in order to achieve this behaviour. Therefore, we are using a very large scale project and we cannot convert to a different gridcontrol (myGridControl1) and a "batch of other classes", like ShowGroupFooter, in order to accomplish this throughout our project. So, as i understood, the only way to accomplish this is through your sample classes, so in such case, we need to convert gridcontrols on every form to your one?
Added By: Gosha (DevExpress Support) at: 1/6/2016 4:07:42 AMHi Panayiotis,
Yes, it's necessary to use a custom GridControl to achieve this functionality. So, you need to replace default GridControls with custom ones. Since the Grid consists of the GridControl and its GridView, replace GridControl with MyGridControl and GridView with MyGridView. I suggest you use the Find All Visual Studio feature not to miss any GridControl.