Hi Jairo,
Thanks for contacting Syncfusion Support.
We have validated the provided code example. We can hide the grid column header row by using custom CSS only. Please find the code example.
To hide the grid header row
.e-grid .e-gridheader {
display: none;
}
|
We found that you have enabled grid grouping also. So we must be set the width of grouping indent cell. Please find the code example.
.e-grid .e-groupcaption,
.e-grid .e-indentcell,
.e-grid .e-recordplusexpand,
.e-grid .e-recordpluscollapse {
width: 17px
}
|
Note : if we hide the grid column header , we can able to group only programmatically (by using groupColumn() method of Grid).
Please find the sample and documentation for your reference.
screenshot:
without column header
without column header with grouping
This solution does not match your requirement, Could you please explain briefly about your requirement.
Regards,
J Mohammed Farook