I'm working with hierarchy grid kendo ui. I want to hide grid header. Currently, I use the code as below, however, only hide text of header.
// kendo ui grid
.TableHtmlAttributes(new { @class = "GridNoHeader" })
// css
.GridNoHeader thead.k-grid-header
{
height: 0;
border-bottom-width: 0;
visibility: hidden;
overflow: hidden;
}
Please share your experience if you can. Thanks