Hi Harry,
Thank you for using Syncfusion products.
Yes we can change the height of the TreeGrid header by applying custom style to the header element. Please find the below code example for more
details
Code Snippet:
@(Html.EJ().TreeGrid("Tree")
//...
.EnableResize(true) .EnableCollapseAll(false) .EnableVirtualization(false) ) <script type="text/javascript"> $(document).ready(function () { var header = $("#Tree").find(".e-columnheader"); header.css({ height: '100px' }); }) </script> |
Also, we have prepared a sample based on your requirement, find it from below location.
Sample: http://www.syncfusion.com/downloads/support/forum/120742/ze/TreeGrid_Header-1489895312
Regards,
Dinesh kumar.N
Regards,
Harry
MVC version |
MVC 5 |
Visual studio version |
VS 2013 |
.Net framework |
4.5 |
Syncfusion version |
13.2.0.39 |
@(Html.EJ().TreeGrid("Tree") //... .EnableResize(true) .EnableCollapseAll(false) .EnableVirtualization(false) ) <script type="text/javascript"> $(document).ready(function () { //Change the ID “Tree” to Your ID of the sample. var header = $("#Tree").find(".e-columnheader"); header.css({ height: '100px' }); }) </script> |