Align Header Column (Center, Left, Right)

Is possible Align the Header column Vertical and Horizontal?
Horizontal (Left, Right, Center)
Vertical (Botton,middle, etc)

Because I only know the “setColAlign”, but this align the data, except the headers. In my case I need align the columns headers vertical and horizontal.

When I aply a #rspan in 2 rows, my header is located at top, and I need put in the middle of the cell merged.

Thanks. :question:

You may try to use CSS.

For example:

<style> div.gridbox_dhx_skyblue table.hdr td { text-align: center; vertical-align: middle !important; } </style>

If bootstrap is used:
To set the header text to center

$(".hdrcell").addClass("text-center");