Using DWHMLX 7.0.3.
I want a grid without the header row. Version 5 provided the method setNoHeader but in 7.x not.
How can I build a grid without header?
An how can I remove all borders in a grid for a plain simple grid?
Many thanks for help.
please, try to use the following css:
<style>
.dhx_grid-cell {
border-top: 0px;
border-left: 0px
}
.dhx_header-wrapper {
display: none;
}
</style>
HI, I was looking for this solution too, but it seems a solution for every grid in the current project. What if I want some grids with header and some without?
Unfortunately, it is not available to detach the specific header rows from the grid dynamically.