3

是否可以将格式号作为带有 jqGrid 的单元格中的链接?带有两个格式化程序编号和链接/showlink

colModel:[
{name:'Balance',index:'Balance',align:'right',formatter: 'showlink', sorttype:"float", summaryType:'sum', formatoptions:{thousandsSeparator:","}},...

我试图将 Balance 设置为链接,并且仍然能够通过分组进行总结

TIA

4

1 回答 1

3

是的你可以!

您可以定义自定义格式化程序并在自定义格式化程序中调用原始“数字”和“showlink”格式化程序。

例如演示使用

formatter: function (cellValue, options, rowObject, action) {
    return $.fn.fmatter.call(this, "showlink",
        $.fn.fmatter.call(this, "number", cellValue, options, rowObject, action),
        options,
        rowObject,
        action);
},
formatoptions: { decimalSeparator: ",", baseLinkUrl: "http://www.google.com/"}

您如何看到我使用options自定义格式化程序作为$.fn.fmatter. 因此,可以在formatoptions.

于 2013-07-14T15:13:39.163 回答