如何合并jqgrid中的页脚行列

时间:2014-03-05 06:57:52

标签: jquery jqgrid

我有一个页脚列,我需要显示总信息。我已将页脚行添加为true并添加了页脚行。

enter image description here

与上图相似。

在页脚行中,我想合并单列中的总计客户端和日期列。

有没有人做过,请分享你的想法

1 个答案:

答案 0 :(得分:3)

您使用the answer中的旧演示。如果我理解正确,您需要删除页脚行中某些列之间的垂直线(单元格边框)。可以设置colspan(接近the answer的结果)。该方法的缺点是需要调整width内合并列的resizeStop。所以我建议你让不需要的垂直线透明。一般来说,它与我在the answer中描述的大致相同。在你的情况下,它会像

var $footRow = $("#list").closest(".ui-jqgrid-bdiv")
                         .next(".ui-jqgrid-sdiv")
                         .find(".footrow");

$footRow.find('>td[aria-describedby="list_name"]')
    .css("border-right-color", "transparent");

The demo演示了这种方法。我做了一些不正确的页脚行边框。所以结果如下图所示:

enter image description here