The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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
ADAdministrator 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