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
20
Summary Footer ...
posted

Guys,

 Using Infragistics 5.1 and have a grid containing bands from a dataset.  The grid will display queried orders and also displays (2) additional rows after the last row of the dataset:  The first is an empty row titled "Grand Summaries".  The second row is actually valid and displays the total number of orders for that particular query.

 My question is how to remove the first "Grand Summary" row?  I found the property to remove the title, but I would also expect there to be a boolean property that handles whether that row gets displayed or not.  Anybody know this property???

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

     
            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                 e.Layout.Override.SummaryFooterCaptionVisible = false;            
            }

Children