最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is it possible to show totals (summary) row under the header row in jqGrid? - Stack Overflow

programmeradmin1浏览0评论

I would like to put the totals (summary) row under the header row in jqGrid? Is this possible?

Detailed explanation:

Go to: .html In the left nav menu go to : Grouping -> Remote Data (sorted with grandtotals)

See the last 'Totals' line at the bottom of the grid. I would like to put that line under the header row at the top. (I don't need grouping)

Thanks.

I would like to put the totals (summary) row under the header row in jqGrid? Is this possible?

Detailed explanation:

Go to: http://www.trirand./blog/jqgrid/jqgrid.html In the left nav menu go to : Grouping -> Remote Data (sorted with grandtotals)

See the last 'Totals' line at the bottom of the grid. I would like to put that line under the header row at the top. (I don't need grouping)

Thanks.

Share Improve this question edited Mar 23, 2011 at 12:48 Norbert Tamas asked Mar 23, 2011 at 1:02 Norbert TamasNorbert Tamas 4,7145 gold badges26 silver badges28 bronze badges 0
Add a ment  | 

1 Answer 1

Reset to default 5

If I understand you correct you want to change position of the footer row (which created if you use footerrow:true) on the top of the grid body direct under the grid columns. To do this you can do following

$("div.ui-jqgrid-sdiv").after($("div.ui-jqgrid-bdiv"));

or

var grid = $("#list"); // your grid
var gview = grid.closest("ui-jqgrid-view"); // get div#gview_list
$("div.ui-jqgrid-sdiv",gview[0]).after($("div.ui-jqgrid-bdiv",gview[0]));

if you want to do the movement of the footer only on one specifig grid on the page.

发布评论

评论列表(0)

  1. 暂无评论