jquery jqgrid 格式化数据显示,对columnmodel进行计算

最近我也在研究这个

{
                                name : 'stgpm',
                                index : 'stgpm',
                                sorttable : false,
                                formatter : function(val, opts, rowdata) {
                                    return (rowdata.gpm / rowdata.sale * 100)
                                            .toFixed(2)
                                            + '%';
                                },
                                unformat : function(val, opts, rowdata) {
                                    return rowdata.gpm / rowdata.sale;
                                }
                            },

列之间的计算大概就是这样 fromatter是格式化显示出来的数据,unformat是取值时得到的数据。

我还要做那啥算同比增长率的,要用到不同行之间数据的计算,我还没有啥头绪。

你可能感兴趣的:(jquery,jqGrid,格式化数据显示)