我想动态计算总计而无需在calctotal.php中执行此操作。在本质上,这是一个计算列。我想过使用像 afterInsertRow 这样的事件,但即使没有事件,它也会将列数据移动一,因为XML文件只有3列而不是4列。所以我的 Total 列现在有来自 Notes 的数据我确实在php文件中添加了一个假列,但为什么我必须这样做呢?感谢
url:'./calctotal',
datatype: 'xml',
mtype: 'GET',
colNames:['Inv No', 'Amount','Tax','Total'm 'Notes'],
colModel :[
{name:'invid', index:'invid', width:55},
{name:'amount', editable: false, index:'amount', width:80, align:'right'},
{name:'tax', index:'tax', width:80, align:'right'},
**{name:'total', index:'total', width:80, align:'right'},**
{name:'notes', index:'notes', width:80, align:'left'}
],
答案 0 :(得分:6)
在jqGrid中实现“虚拟列”的麻烦方法是使用custom formatter。例如
{name:'amount',index:'amount',width:70, formatter:'currency', align:'right'},
{name:'tax',index:'tax',width:50, formatter:'currency', align:'right'},
{name:'total',index:'total',width:60, align:'right',
formatter:function(cellvalue, options, rowObject) {
var amount = parseInt(rowObject.amount,10),
tax = parseInt(rowObject.tax,10);
return $.fmatter.util.NumberFormat(amount+tax,$.jgrid.formatter.currency);
}}
使用自定义格式化程序的主要缺点是您在内部使用make完全格式化。调用方法$.fmatter.util.NumberFormat
可以帮助我们简化工作。
如果使用远程数据类型(datatype: 'xml'
或datatype: 'json'
),则服务器负责数据排序。因此,服务器应该能够不仅为“真实”数据字段而且对“虚拟”列对数据进行排序。我们使用上面的index:'total'
。因此,如果用户单击“总计”列的标题,将发送到服务器的sidx
参数将为total
。因此,服务器应该能够生成按total
排序的数据。
如果使用本地数据,可以使用sorttype
作为实现排序的功能:
{name:'amount',index:'amount',width:70, formatter:'currency', sorttype:'number',
align:'right'},
{name:'tax',index:'tax',width:50, formatter:'currency', sorttype:'number',
align:'right'},
{name:'total',index:'total',width:60, align:'right',
formatter:function(cellvalue, options, rowObject) {
var amount = parseInt(rowObject.amount,10),
tax = parseInt(rowObject.tax,10);
return $.fmatter.util.NumberFormat(amount+tax,$.jgrid.formatter.currency);
},
sorttype:function(cellvalue, rowObject) {// like for sorttype:'number',
var amount = parseInt(rowObject.amount,10),
tax = parseInt(rowObject.tax,10);
return amount+tax;
}}
请参阅演示here。