在Extjs列表中,如何让一个字段显示为人民币金额

 

当做Grid控件的,使用下面红色的字体部分来将数字转成人民币格式输出:

 

            { dataIndex : 'price', width : 120, tooltip : '', filter : { type : 'numeric' }, renderer: function(v, params, record){ return Ext.util.Format.cnMoney(v); }, header : grid.fieldsDefinition.price.string }  

补充:需要将colume定义中的如下xtype去除掉:

 

xtype : 'defaultcolumn',

你可能感兴趣的:(在Extjs列表中,如何让一个字段显示为人民币金额)