Is it possible to align grid column headers in jqgrid? eg align left right or center?
In the jqrid documents http://www.trirand.com/jqgridwiki/doku.php?id=wiki:colm
If the format of your jqGrid table is colModel: [{name: 'ColumnName', index: 'ColumnIndex',...}], then just add the parameter align: 'center' in order to align it centered.
jqGrid
colModel: [{name: 'ColumnName', index: 'ColumnIndex',...}]
align: 'center'
For more details, see other functionalities possible on jqGrid.