I have a working jqgrid table that has summary view on the header, just like this example that I implemented in this this plunkr here http://plnkr.co/edit/wjIlaVMsa9vusmfhgfL1?p=preview.
The summary view header works fine, and the data displayed comes from (sum) function in the jqgrid.
However, instead of letting the jqgrid calculate the summary by itself, I want to display my own data in the summary row (and still per column, I dont want a colspan summary header). Easiest example will be: suppose the data under my columns are all text. I still want to have grouping & summary view header & show data per column on the summary header, but I don't want jqgrid to calculate the summary for me (since it's a text). I want to display my own summary data, which comes also from my data json.
I dont think using
summaryTpl: '<b>{0}<b>'
will work for me since the data that I want to display comes from my json data.
Is this possible? Let me know if my explanation is not clear enough. Thank you!