是否可以使用组值显示行组摘要文本。如上所示,我想将文本“total”设置为“Gwadar-Total”等等。
如何在运行时实现这一点,从行组中获取文本并显示摘要文本?
我在单元格模式中使用“summaryTpl”。
是否可以使用组值显示行组摘要文本。如上所示,我想将文本“total”设置为“Gwadar-Total”等等。
如何在运行时实现这一点,从行组中获取文本并显示摘要文本?
我在单元格模式中使用“summaryTpl”。
尝试这个
$('#gridName tr[jqfootlevel="0"] td').each(function () {
$(this).html($(this).html().replace('Total','Main Group Level Total'));
});
从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},
...
],
...
});
问候,
阿拉玛达尼