We are working on a website where we are using jqGrid to show the data. Now we have a requirement to change the grid header text alignment to left. We are using jqGrid in many places.
We already tried the below method to change the alignment and is working properly.
$("#tableName").jqGrid('setLabel', 'ColumnName', '', {'text-align':'left'});
But as I told this application is using jqGrid in many places. So to change the alignment we have to do updates in many places.
Since this change needs to be done in all places where we are using jqGrid, whether any common place is available to do this update, so that we can avoid updates in many places.
jqGrid Version - 4.5.4
Thanks in advance.