We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Headers

Hi! I have a grid with 4 columns. In the last two columns I added buttons. Now I wanna know if it''s possible to show the last two columns without header, isn''t it? How can I do that? Cheers! Dan

1 Reply

AD Administrator Syncfusion Team April 27, 2004 03:24 PM UTC

Hi Dan, What do you want in the header cell area? to be left blank? You can try making the header cell to be static. Or you could try handling the DrawCell event and cancel the drawing for the particular header cells. private void gridControl1_DrawCell(object sender, Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs e) { if(e.RowIndex == 0 && e.ColIndex == 1) { e.Cancel = true; } } Regards, Jay N

Loader.
Live Chat Icon For mobile
Up arrow icon