Hi,
I only want to show a Total for a subset of columns in my grid, but when I enable the ‘footerrow’ = true all of the columns get a footer cell. Please refer to screenshot. Is there anyway to hide those and only show the ones with values? Thanks.
2 Answers
One way is to remove footer left-right borders. Add this css in style tag.
.ui-jqgrid tr.footrow-ltr td {border-right-width: 0px;}
Your Answer