Is it possible to right align column title?
I managed to do it with $col[“title”] = “<span style=”text:align:right”>Price</span>”;
but the problem is when you click title to sort column, the asc/desc arrows are displayed below title.
2 Answers
I have found a solution:
“<span style=’float:right;text-align:right;’>Price</span>
Title is right and asc/desc arrows are left.
Great, another option is to use this css on page:
.ui-jqgrid .ui-jqgrid-htable th div {
text-align: right;
padding-right: 20px;
}
Your Answer