Category / Section
How to hide the grid header?
You can hide the Grid header by customizing the CSS for header element.
Solution
To hide the grid header set “display” CSS property as “none” for “.e-gridheader .e-table”.
<style>
.e-gridheader .e-table{
display: none;
}
</style>
The following screenshot displays the Grid control without header.

Figure: Grid without header