How to align only the column title?
For example, right align the column heading.
2 Answers
You can add this onpage css after include all css files.
<style>
.ui-jqgrid .ui-jqgrid-htable th.ui-th-column, .ui-th-column
{
text-align: right;
}
</style>
Your Answer