I see how I can align all headers using div.gridbox table.hdr td in dhtmlxgrid.css but cannot figure out how to align the headers to the cell alignment below it.
You can set aling to the headers via 3rd parameter of setHeader method:
mygrid.setHeader(‘1,2,3,4,5’,’’,[‘text-align:center;’,‘text-align:left;’,‘text-align:right;’,’’,’’]);
Thanks that worked. Can you tell me where that is documented??