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

后端 未结 1 1234
既然无缘
既然无缘 2020-12-15 14:50

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.com/blog/jqgri

相关标签:
1条回答
  • 2020-12-15 15:31

    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 讨论(0)
提交回复
热议问题