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
465
Header remove in Card View for the WinGrid
posted

Hi all,

 

I am using Card View style ( composed ) for my WinGrid. It is fine and cover my requirements but I do not know how to remove gray header which appears on Card View style. I am not talking about header for columns which I want to see.

It is any way to remove this header ?

 

Reagrs

Piotr

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    Hi Piotr,

    It sounds like you are talking about the card caption.You can turn it off like this:


            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {  
                e.Layout.Bands[0].CardView = true;
                e.Layout.Bands[0].CardSettings.ShowCaption = false;
            }

     

Children
No Data