是否可以使用组值显示行组摘要文本。 如上所示,我想将文本“total”设置为“Gwadar-Total”等等。
如何在运行时实现此功能,从行组获取文本并显示摘要文本?
我在单元模式中使用“summaryTpl”。
答案 0 :(得分:1)
您可以使用自定义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'));
});