在JQGrid中,是否可以在列格式化程序以外的分组摘要单元格中使用不同的格式化程序?

时间:2011-09-29 15:56:42

标签: jquery jqgrid

是否可以对数据行和摘要行使用不同的格式化程序?例如,我想将摘要信息(summaryType = count)添加到复选框格式化列,摘要值显示为选中复选框。任何想法?

种,Alper

您可以看到here的屏幕截图:

enter image description here

2 个答案:

答案 0 :(得分:15)

我发现你的问题非常有趣,因为我立刻不​​知道答案。现在我抽出时间重新阅读jqGrid的分组模块的源代码并创建一个你需要的例子。

首先,我准备了the demo,显示以下结果:

enter image description here

如何看待摘要行有许多以不同方式格式化的元素:

enter image description here

要在每个分组块的末尾都有摘要行,我们需要在jqGrid的groupSummary: [true]参数中定义groupingView属性。然后我们需要为colModel中的摘要行没有空单元格的所有列定义summaryType属性。

例如,在最简单的情况下,我为列'amount'定义了属性summaryType: 'sum'

对于'tax'列,我另外定义了summaryTpl

summaryTpl: '<i>{0}</i>', summaryType: 'sum'

结果是'tax'列的摘要包含斜体文字。

对于'total'列,我使用不同的颜色取决于显示的值。值为grater的结果以绿色显示。其他值以红色显示。该实现是摘要行的真正自定义格式化程序:

//formatter: 'number',
formatter: function (cellval, opts, rwdat, act) {
    if (opts.rowId === "") {
        if (cellval > 1000) {
            return '<span style="color:green">' +
                $.fn.fmatter('number', cellval, opts, rwdat, act) +
                '</span>';
        } else {
            return '<span style="color:red">' +
                $.fn.fmatter('number', cellval, opts, rwdat, act) +
                '</span>';
        }
    } else {
        return $.fn.fmatter('number', cellval, opts, rwdat, act);
    }
},
summaryType: 'sum'

而不是formatter: 'number'我使用自定义格式化程序。我不想再一次实现formatter: 'number',所以我调用了$.fn.fmatter('number', cellval, opts, rwdat, act)预定义的“数字”格式化程序。

上述代码中最重要的部分是行

if (opts.rowId === "") {

在格式化网格单元格期间,将调用自定义格式化程序,并将opts.rowId初始化为行ID。仅在格式化摘要行的情况下,opts.rowId将为空字符串("")。我使用这个事实来实现自定义格式。

'closed'栏中,我再展示一招。我使用summaryType定义为函数。可以使用它来将一些自定义汇总计算作为标准类型:“sum”,“min”,“max”,“count”和“avg”。在演示中,我显示所有复选框的“计数”和所选复选框的“计数”,并在摘要中显示结果。此外,摘要单元格还有一个复选框,如果选中该组中的至少一个复选框,则会选中该复选框。包含自定义格式化程序的相应代码如下:

formatter: function (cellval, opts, rwdat, act) {
    if (opts.rowId === "") {
        return '<span style="display:inline-block;top:-2px;position:relative;">' +
            cellval.checkedCount + ' of ' + cellval.totalCount + '</span>&nbsp;' +
            $.fn.fmatter('checkbox', cellval.max, opts, rwdat, act);
    } else {
        return $.fn.fmatter('checkbox', cellval, opts, rwdat, act);
    }
},
summaryType: function (val, name, record) {
    if (typeof (val) === "string") {
        val = {max: false, totalCount: 0, checkedCount: 0};
    }
    val.totalCount += 1;
    if (record[name]) {
        val.checkedCount += 1;
        val.max = true;
    }
    return val;
}

我们需要保存树计算的不同值:totalCountcheckedCountmax。上面的代码显示,可以将初始字符串val参数更改为包含我们需要的所有信息的对象。在格式化摘要行期间,将调用自定义格式化程序,并将cellval初始化为我们之前创建的val对象。我们可以保存任何自定义信息,然后显示它。

我希望通过演示,您可以创建所需的任何摘要分组行。

答案 1 :(得分:0)

你正在使用自定义格式化程序吗?你可以做的是使自定义格式化程序根据输入显示不同的东西。我不确定你输入的是真还是假是你的输入,但是这应该有用:

function checkboxFormatter(cellvalue,options,rowObject){
     if(typeof cellvalue == "number"){
          return cellvalue;
     }
     else if(cellvalue == "true"){
          return '<input type="checkbox" checked="checked" />';
     }
     else{
          return '<input type="checkbox" />';
     }
}

如果您有疑问,或者如果这与您的想法有所不同,请告诉我