jqgrid汇总tpl与组名

时间:2013-09-05 14:24:15

标签: jqgrid subtotal group-summaries

是否可以使用组值显示行组摘要文本。 如上所示,我想将文本“total”设置为“Gwadar-Total”等等。

如何在运行时实现此功能,从行组获取文本并显示摘要文本?

我在单元模式中使用“summaryTpl”。

2 个答案:

答案 0 :(得分:1)

来自http://www.trirand.com/jqgridwiki/doku.php?id=wiki:grouping

您可以使用自定义summaryType

function mysum(val, name, record)
{
return parseFloat(val||0) + parseFloat((record[name]||0));
}

jQuery("#grid").jqGrid({ 
...
colModel : [
    {..},
    {name:'amount',index:'amount', width:80, align:"right", sorttype:'number',formatter:'number',summaryType:mysum},
       ...
 ],
 ...
});

问候,

aramadhani

答案 1 :(得分:1)

试试这个

$('#gridName tr[jqfootlevel="0"] td').each(function () {
  $(this).html($(this).html().replace('Total','Main Group Level Total'));
});