This question is locked. New answers and comments are not allowed.
Hi Guys,
I've noticed quite a few people on here asking how to hide the MVC Grid header only to realise there isn't any Telerik direct functionality (that I'm aware of).
A really easy fix to this is to create a very simple style as follows, and setting the Grid .Name attribute, then starting the style with that same name. This will remove the grid header nicely.
I've noticed quite a few people on here asking how to hide the MVC Grid header only to realise there isn't any Telerik direct functionality (that I'm aware of).
A really easy fix to this is to create a very simple style as follows, and setting the Grid .Name attribute, then starting the style with that same name. This will remove the grid header nicely.
<style> #GridName table thead { display: none; } </style>